-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to make a Remote Control RC car using Arduino and HC-06 bluetooth module #39
Comments
#include <softwareserial.h> // Arduino UNO Rx, Tx //Motor A or MOTOR 1 void setup() { pinMode(PWMA, OUTPUT); // Set default at full stop void loop() { //Select function with cmd Serial.print("Command recieved:"); delay(100); // Function for the vehicle to move FORWARD // Function for the vehicle to move BACKWARD // Function for the vehicle to turn RIGHT // Function for the vehicle to turn LEFT // Function for the vehicle to STOP // Function for the crane to move UP // Function for the crane to move DOWN // Function for the crane to HALT |
No description provided.
The text was updated successfully, but these errors were encountered: