MegunoLink’s message channels let you send data to different visualizers in your project. For example, you might have two graphs: one for temperature, and one for battery voltage. You can [...]
The Message class provides methods to send data and commands to message monitor and message logger visualizers. Message monitors write data to a text window while message loggers write data to a [...]
The Message Monitor extracts specially tagged text from the serial stream. It lets you pull out logs, specific data or messages from all the other serial data. Using Channels, you can setup [...]
MegunoLink’s Monitor Visualizer is similar to the Arduino’s Serial Montor window. It shows you all the serial data received from the serial connection and lets you send commands to [...]
Getting stuck out in the rain without keys was the motivation for this project. It uses an Arduino EtherTen to let you trigger a garage door opener. The Arduino hosts a website which you can [...]
Text shown or spoken by the message monitor and text written to a file by the message logger visualizer is taken from specially formatted commands in serial streams. Each command must be [...]
You can create multiple plots in your MegunoLink and send different data to each from your Arduino sketch using channels. This is useful if, for example, you’d like to plot temperature on [...]
MegunoLink gets values for the property table visualizer from specially formatted messages in serial streams. Each command must be surrounded by braces (‘{‘ and ‘}‘). Any [...]
CircularBuffer is a circular buffer template for Arduino. The template takes two parameters: the type of data to store the maximum number of items to store in the buffer The buffer starts empty. [...]