LED matrix module #98
YashRajeev
started this conversation in
General
Replies: 1 comment
|
Hello o/ You can find the protocol documentation (the file is missing some codes I think, but it is a good start) here. The protocol is really simple. You need to open the COM port of your module. On Linux it is "/dev/ttyACM0" or "/dev/ttyACM1", I don't know for Windows. After opening the COM port you just need to write to it as if you would write to a file using the protocol documentation linked above. For example to display a zigzag pattern on the display you need to send 4 bytes like so:
Your module will wake up and display a zig zag, until you send another command. It will go to sleep after about 60 seconds. I'm working on implementing this protocol in CPP (and later C) if you are more familiar with this language than Rust. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello I am extremely new to coding. I saw the codes that you have listed for the module. How do I input the codes?
All reactions