Read/Write raw message #20
lordratner
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
|
I actually have a branch where I started working on something like this with the idea of a "toast" notification. It would only take as much space as needed, and be relatively short lived. My thought with the toast notification was that you could also update the board with a new full message, but if there was a current toast notification, it would update only the relevant portion behind the toast notification and then after the toast expired, update to remove the notification and display the other full message. |
Beta Was this translation helpful? Give feedback.
2 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.
-
Simple idea, the integration will read the vestaboard (already done to generate the SVG image) and return a variable with the bit-encoded message. It could be like the array that is posted to the local API, or it could be one long string of {1-71} characters. Point being, that message could then be fed back into the integration to send to the board. (The array could also be manipulated by another script or automation if you wanted to change only one line of the board without affecting the other lines.) All the integration needs to do is return the board message in a variable, and use that same variable to send back to the board.
Use case: You want to post a temporary message, then return to the previous layout. The automation would read the board and save the message, post the new message, delay for a set time, then resend the original message to the board.
This makes the Vastaboard more of a notification engine where the notifications don't linger until the next intentional posting. But the integration itself is still kept simple with reading and posting messages only.
Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions