Bike Automation using Arduino UNO and Android App
Bike Automation using Arduino UNO and Android App Bike Automation The aim of this project is to control a bike using a mobile host (Smartphone). Components required Hardware Arduino UNO HC – 05 Bluetooth Module 5 V Relay two channel Jumper/Connecting Wires Smart phone 7805 Voltage Regulator Software Arduino IDE Android App Circuit and Working The bike automation circuit is built using Arduino Uno, Bluetooth Module and a 4-channel relay or as per the requirements. Using a 4-channel relay we can control four equipments. The step-wise working is as follows: Step1: Upload the sketch in Arduino Uno. A Sample sketch is shown below: int relay1 = 8; int relay2 = 9; int relay3 = 10; int relay4 = 11; String readString; void setup() { Serial.begin(9600); pinMode(relay1, OUTPUT); pinMode(relay2, OU...