diff --git a/example/advanced/FindAFriend/FindAFriend.ino b/example/advanced/FindAFriend/FindAFriend.ino new file mode 100644 index 0000000..4d4bcb4 --- /dev/null +++ b/example/advanced/FindAFriend/FindAFriend.ino @@ -0,0 +1,17 @@ +#include "Dezibot.h" + +Dezibot dezibot = Dezibot(); +const int centeredThreshold = 50 ; + +void setup() { + // put your setup code here, to run once: + dezibot.begin(); + //Serial.begin(115200); + dezibot.infraredLight.bottom.turnOn(); + dezibot.infraredLight.front.turnOn(); +} + +void loop() { + + //delay(100); +} diff --git a/example/example.ino b/example/example.ino deleted file mode 100644 index ff3b7ec..0000000 --- a/example/example.ino +++ /dev/null @@ -1,12 +0,0 @@ -#include - - - -Dezibot dezibot = Dezibot(); - -void setup() { - dezibot.begin(); -} - -void loop() { -}