Dezibot 4
Loading...
Searching...
No Matches
wuerfeln.ino
Go to the documentation of this file.
1#include <Dezibot.h>
2Dezibot dezibot = Dezibot();
3void setup() {
4 dezibot.begin();
5}
6void loop() {
7 if(dezibot.motion.detection.isShaken()){
8 dezibot.display.clear();
9 dezibot.display.print(random(1,7));
10 delay(1000);
11 }
12
13}
14