Sparki has two wheels to move, Left and Right. Sparki can move forward and backward using two wheels together in the same direction with same speed

File Download and Detail:

  • Lab Instruction
  • Quiz
  • Sample Code
    • ZigZagMove
#include <Sparki.h>

void setup()
{
  
}

void loop()
{
  sparki.moveForward(5);
  sparki.moveRight(90);
  sparki.moveForward(5);
  sparki.moveLeft(90); 
}