/*Write a program to interface LCD and Bluetooth module,
to exhibit the values received from mobile handset
via Bluetooth on LCD
*/
#include<LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2 );
void setup() {
lcd.begin(16,2 );
lcd.print("hello");
// put your setup code here, to run once:
}
void loop() {
lcd.setCursor(0,1 );
lcd.print(millis()/1000 );
}