This commit is contained in:
Torsten Ruger
2021-06-20 12:57:47 +03:00
parent cd015c8149
commit af0f794756
7 changed files with 123 additions and 0 deletions

12
fan_control/src/main.cpp Normal file
View File

@ -0,0 +1,12 @@
#include <Arduino.h>
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println("Hello world!");
delay(1000);
}