
kpetrinak
Members-
Content Count
8 -
Joined
-
Last visited
Everything posted by kpetrinak
-
LCD Screen via UART on a Stellaris Launchpad TM4C123G?
kpetrinak replied to kpetrinak's topic in Energia - TivaC/CC3XXX
Ermahgerd... Thank you for your patience and willingness to help a total noob. I've spent a lot of hours trying to get an LCD to work with a TI board, when in fact it was so simple. Thank you very much for helping, Rei Vilo and FMilburn. For the other noobs in my position, instead of using Serial.write (which writes to serial monitor) use Serial1.write to write to TX(1) pin or Serial2.write to write to TX(2) pin, etc... -
LCD Screen via UART on a Stellaris Launchpad TM4C123G?
kpetrinak replied to kpetrinak's topic in Energia - TivaC/CC3XXX
Thank you for replying Rei Vilo! How can I configure communication on a hardware serial port in energia? -
Is there a way to use the SoftwareSerial library on the Stellaris Launchpad TM4C123GXL board? I am trying to connect a Sparkfun serial enabled LCD screen to the board but the SoftwareSerial library is only compatible with 20, 16, and 8 MHz processors, and the TM4C123GXL is an 80 MHz chip. How can I use this LCD screen with the Stellaris Launchpad over a UART connection? Do I need to use SoftwareSerial or can I do without it? I am programming in Energia 0101E0017 on Windows 7 64 bit. Any help is greatly appreciated, thanks!
-
I have a Spikenzie Labs LCD screen with an interface (screen utilizes the HD44780 chipset). I have it connected to an MSP-EXP432P401R (Rev 1.0). I have finally got code working that allows me to write to the LCD screen through the serial monitor, however I can only write to the screen for a short but varying amount of time. Sometimes I can print to the screen for 5 seconds, sometimes only for 1 second before communication cuts out. Here is the code I am using: #include <Wire.h> #include <LiquidCrystal.h> #define addr 0x40 >> 1 void setup() { Wire.begin(); Serial.beg
-
I'm aware of this inconsistency, most other resources I have seen state that 0x20 is used for 16x2 screens. 0x20 is also the only address that will give me any output at all
-
Update: I took the advice of level shifting the SDA and SCL data lines. I constructed the MOSFET circuit that was recommended by Rei Vilo's link above, the output to my LCD screen remained the same. I've double and triple checked my mosfet circuit and it seems correct. Still stuck. Unfortunately this is a time sensitive issue, and any help is greatly appreciated. Thanks
-
Also having trouble making an MSP432 communicate with an LCD screen, have tried many things to no avail. Here's some info: Launchpad MSP432P401R Rev 1.0 Using Energia 0101E0017 on Windows 7 64-bit LCD Screen is a SpikenzieLabs w/ interface (LCD, INTERFACE) (uses the common HD44780 chipset) I'm trying to implement simple code to reduce the complexity of troubleshooting, here's the code I'm using: #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x20,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display void setup() { lcd.init(