-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LCD Widget #4
Comments
Hey tzapu, do you have a response for us here. I am still using a combination of websockets nodes that dont have connection issues and non-webockets nodes just for LCD support. It is annoying that the LCD node disconnects regularly. Is there a way to use websockets nodes to talk to the LCD virtual pins or do we need a LCD specific node. node-red is not exactly my thing and I am a bit stuck. |
hi, i need to implement the lcd node but my time is fairly limited currently. i am not sure, but you may be able to use the current nodes to force something on the lcd, i ll try and check it for you |
I seem to be able to clear the display using your websocket write node sending "clr" in the payload to the virtual pin for the LCD. Is there some documentation as to how you might pack an LCD message in the payload to print text to an x, y position?? From the Arduino library I can see how they pack a message to the LCD "p40Hello", for x=0 and y=4, but it does not work. Any clues??. "p" seems to be the command. |
hi, well, i could just write, in simple mode to each of the lines using the virtual pins assigned. hope it helps |
cracked it.. 'p' + '\0' + x + '\0' + y + '\0' + "string" seems to work with your write node. |
Hi,
I noticed there was an LCD Print node in the non-websockets version. How can I print to the LCD with this?
Thanks
The text was updated successfully, but these errors were encountered: