makkhan
Newbie level 3
- Joined
- Aug 30, 2013
- Messages
- 3
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 17
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Code C - [expand] 1 2 3 4 5 6 7 class Motor { public: // Constructor, destructor, etc... Run(int8 speed); // You may decide that >0 is forwards and <0 is backwards, 0 is stop. protected: private: }
Code C - [expand] 1 2 3 4 5 6 7 8 9 #define SPEED 20 Motor M; main() { M.Run(SPEED); // Breakpoint here M.Run(0); // Breakpoint here M.Run(-SPEED); }