void setup() {
Serial.begin(115200); // set up comm speed
}
boolean totuus = true;
void loop() {
Serial.println(totuus); // Print value of totuus
Serial.println(); // Print newline
delay(1000);
}
void setup() {
Serial.begin(115200); // set up comm speed
}
boolean totuus = true;
void loop() {
Serial.println(totuus); // Print value of totuus
Serial.println(); // Print newline
delay(1000);
}