added example sketches

This commit is contained in:
Hans Haupt
2024-06-14 08:27:34 +02:00
parent dbec7278f3
commit a0e6661b16
18 changed files with 186 additions and 65 deletions

14
example/start/start.ino Normal file
View File

@ -0,0 +1,14 @@
#include "Dezibot.h"
Dezibot dezibot = Dezibot();
void setup(){
dezibot.begin();
//comment in to use WIFI-Communication
//dezibot.communication.begin();
// put your setup code here, to run once:
}
void loop(){
// put your main code here, to run repeatedly:
}