Library for controlling Robot via I2C.

Brickup_fliprobot.ino 552B

12345678910111213141516171819202122232425262728293031
  1. #include <I2CRobot.h>
  2. int I2C_ID = 8;
  3. I2CRobot fliprobot(I2C_ID);
  4. void setup() {
  5. fliprobot.init();
  6. }
  7. void loop() {
  8. byte robot_control = '1';
  9. if (robot_control != -1) {
  10. switch(robot_control) {
  11. case '1':
  12. fliprobot.hello();
  13. break;
  14. case '2':
  15. fliprobot.order();
  16. break;
  17. case '3':
  18. fliprobot.check();
  19. break;
  20. case '4':
  21. fliprobot.custom(4);
  22. break;
  23. default:
  24. break;
  25. }
  26. }
  27. }