Had a very quick check, and at the very least the pins CS and RS are swapped - RD/WR/data look fine!
It may be that you can just swap the following lines of code in lcd_fscmc.c and it will work:
[#define](https://forum.espruino.com/search/?q=%23define) LCD_CS PCout(8) [#define](https://forum.espruino.com/search/?q=%23define) LCD_RS PCout(9)
to
[#define](https://forum.espruino.com/search/?q=%23define) LCD_CS PCout(9) [#define](https://forum.espruino.com/search/?q=%23define) LCD_RS PCout(8)
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Had a very quick check, and at the very least the pins CS and RS are swapped - RD/WR/data look fine!
It may be that you can just swap the following lines of code in lcd_fscmc.c and it will work:
to