Quite a lot of code above is similar to the TouchDevelop example above, but there are some important actions that we have that you may not know about and are useful. #include #include #include #include • There are many import statements which allow the program to connect to the Engduino and access the accelerometer sensor. void setup(){ EngduinoAccelerometer.begin(); EngduinoButton.begin(); numberOfSteps = 0; } • There is a new action that you can see called “void setup”. We don’t have to worry about how to code this, but it is important to know as it will start the accelerometer sensor on the Engduino and set the number of steps to 0 at the beginning.