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).

Logs
  • 14:29, 19 November 2025 Palo talk contribs created page Melódie - streda 2526 (Created page with "<syntaxhighlight lang="C++"> void setup() { Serial.begin(9600); pinMode(4, OUTPUT); } char *tony = "CDEF"; int frek[] = {523, 587, 659, 698}; int pocet_tonov = 4; void zahraj(char nota, int dlzka) { for (int i = 0; i < pocet_tonov; i++) { if (tony[i] == nota) tone(4, frek[i], 350*dlzka); } delay(350 * dlzka); } void loop() { char kohutik[] = "CDEFFFFEDEEEEDCDDDDEDCCC"; int dlzky[] = {1,1,2,2,1,1,1,1,2,2,1,1,1,1,2,2,1,1,1,1,2,2,1,1}; int n = 24;...")