Devices & Components
Arduino Uno Rev3
Alphanumeric LCD, 16 x 2
HC-05 Bluetooth Module
Rotary potentiometer (generic)
Project description
Code
pushpa
c_cpp
1 2#include <LiquidCrystal.h> 3LiquidCrystal lcd(2,3,4,5,6,7); 4void setup() { 5 // put your setup code here, to run once: 6 lcd.begin(16,2); 7} 8 9void loop() 10 // put your main code here, to run repeatedly: 11 { 12 if(Serial.available()>0) 13 { 14char data=Serial.read(); 15lcd.print(data); 16}}
Downloadable files
arduino_website_fCn2u4ViNw.png
arduino_website_fCn2u4ViNw.png

arduino_website_fCn2u4ViNw.png
arduino_website_fCn2u4ViNw.png

Documentation
pushpa_DqbzD7vSXD.ino
pushpa_DqbzD7vSXD.ino
pushpa_DqbzD7vSXD.ino
pushpa_DqbzD7vSXD.ino
Comments
Only logged in users can leave comments