Hi all,
this is the scenario:
" I try to use LCD with VirtualWire Library but without success. I didn't have back issues from the compiler but the LCD stop to work when I add VirtualWire part. "
What I've try to is:
- Change inside VirtualWire the Default Tx,RX, PPT Pin --> But Without success
// Set the digital IO pin to be for transmit data
vw_set_tx_pin(uint8_t pin);
vw_set_rx_pin(uint8_t pin);
vw_set_ptt_pin(uint8_t pin);
The Display is configured like into the example below reported:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis()/1000);
}
Can I try to change PIN for LCD ? or are particular Pin ?
Have you already encountered this kind of issues ?
Thanks in advance for the help,
gnux