Other Parts Discussed in Thread: HDC2010EVM, ENERGIA, UNIFLASH
I am trying to get the MSP430 launchpad to read from my HDC2010EVM sensor. I have found the resources online with the example code, but I am having difficulty on writing to the pins on the LCD screen.
I downloaded the example Arduino code to load onto the board. However, I do not see anything showing up on my board at all. I have made sure to set MSP430FR133 as the board in Energia. Is the humidity output supposed to show on the LCD screen or do I need to program it differently? Also, I am concerned that I may have fried the MSP430 chip- is there a way to check if that device is still working?
Upon reading the MSP430 datasheet, I found that pins 4, 5, 25-64 relate to the LCD pins. However, when looking in the Code Composer code, I see the following lines:
#define pos1 4 /* Digit A1 - L4 */
#define pos2 6 /* Digit A2 - L6 */
#define pos3 8 /* Digit A3 - L8 */
#define pos4 10 /* Digit A4 - L10 */
#define pos5 2 /* Digit A5 - L2 */
#define pos6 18 /* Digit A6 - L18 */
May you help clarify how I may program the LCD display in the Arduino?