First commit

This commit is contained in:
2023-02-14 21:16:47 +00:00
commit bdcfde4821
26 changed files with 1455 additions and 0 deletions

View File

@ -0,0 +1,15 @@
int peter = 11 ; //ouagadougou
void setup() {
// put your setup code here, to run once:
pinMode(peter,OUTPUT);
digitalWrite(peter,LOW);
}
void loop() {
//you are a snail
digitalWrite(peter,LOW);
delay(3000);
digitalWrite(peter,HIGH);
delay(150);
}