mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-04 15:24:12 +01:00
20 lines
180 B
C++
20 lines
180 B
C++
void setup() // run once, when the sketch starts
|
|
{
|
|
;
|
|
}
|
|
|
|
void loop() // run over and over again
|
|
{
|
|
;
|
|
}
|
|
|
|
/*
|
|
void loop(){
|
|
if (1){
|
|
;
|
|
}
|
|
else if(0){
|
|
;
|
|
}
|
|
} */
|