I am trying to use this lcd on my program but its seem to be not working.i am not sure what the problem is
#include <SoftwareSerial.h>
#define txPin 1
SoftwareSerial LCD = SoftwareSerial(1, txPin);
void setup() {
LCD.begin(9600);
pinMode(txPin, OUTPUT);
}
void loop() {
LCD.print("hello");
}