Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Krúžok Robotiky CENADA. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:22, 26 November 2025 Palo talk contribs created page Ultrazvuk - streda 2526 (Created page with "<syntaxhighlight lang="C++"> #define TRIG 3 #define ECHO 4 void setup() { Serial.begin(9600); pinMode(TRIG, OUTPUT); pinMode(ECHO, INPUT); } int meraj() { // 1. vysli 10 usec pulz na pin TRIG digitalWrite(TRIG, 1); delayMicroseconds(10); digitalWrite(TRIG, 0); // 2. cakaj kym sa na ECHO neobjavi hodnota 1 (kym je tam 0, cakaj) while (digitalRead(ECHO) == 0) {} // 3. zisti aky je prave cas (funkcia micros()) a zapamataj si ho unsigned long cas1...")