system
1
An Arduino DMX Shield with uSD Card Holder now available from:
http://www.skpang.co.uk/catalog/product_info.php?products_id=663
Features
- 3-pin XLR connector on board- TX on Digital Pin 3, can change via solder bridge to TXD (pin 1)- Reset button
- Push button- Power and two LED indicators
- 3-pin molex connector for serial LCD- Micro SD card holder
The serialLCD is connected to A0, do you just use #define txPin 14? will that work?
To use the serial LCD, use the NewSoftSerial.h library like this :
#include <NewSoftSerial.h>
NewSoftSerial sLCD = NewSoftSerial(3, 14); /* Serial LCD is connected on pin 14 (Analog input 0) *
void setup() {
sLCD.begin(9600); /* Setup serial LCD and clear the screen */
sLCD.print(COMMAND,BYTE);
sLCD.print(CLEAR,BYTE);
sLCD.print(“LCD demo”);
}
/