Current Lua downloadable firmware will be posted here

User avatar
By Error404
#36237 Hi all!

I have a 1602A V2.0 and have searched all part to integrate with NODEMCU. The problem is I can not find anything useful. Even I'm thinking it's impossible to make the connection and display a message even.

I would appreciate any information or contribution. ;)

Thank you very much for your time.

---------------------------------------------------------------------


¡Hola todos!

Tengo un V2.0 1602A y he buscado por todas parte para integrarse con NODEMCU. El problema es que no puedo encontrar nada útil. Incluso estoy pensando que es imposible hacer la conexión y mostrará un mensaje aún.

Le agradecería cualquier información o contribución. ;)

Muchas gracias por su tiempo.
User avatar
By mcfly777
#39324 Hello
I have a very similar LCD but its the 20x4 version. I used the code for the lcd1602.lua done by Vladimir.

I am able to print Hello World using this:
Code: Select alli2c.setup(0, 4, 3, i2c.SLOW)
lcd = dofile("lcd1602mod.lua")()
lcd.light(0)
lcd.locate(0,1)
lcd.put("Hello World!")


However, I can't move the cursor, the next "put" command it adds to the end of the previous output. So, lot's still to figure out.

Leo