The DashIO Arduino libraries are now available through the Arduino Library Manager. This repository is no longer maintained.
So, what is DashIO? It is a quick effortless way to connect your IoT device to your phone, tablet or iPad using the free Dash app. It allows easy setup of controls such as Dials, Text Boxes, Charts, Graphs, Notifications..., from your IoT device. You can define the look and layout of the controls on your phone from your IoT device. There are three methods to connect to your phone; Bluetooth Low Energy (BLE), TCP or MQTT.
What is dash then? dash is an IoT platform based on an MQTT server with extra bits added in to allow you to store data, manage your devices, send notifications, share your devices, and save your Dash app setup.
For the big picture on DashIO, take a look at our website: dashio.io
For all documentation and software guides: dashio.io/documents
For the DashIO Python library documentation: dashio.io/guide-python
The Dash app is free and available for both Apple and Android devices. Use it to create beautiful and powerful user interfaces to you IoT devices.
- ESP32 can now accept multiple BLE connections.
- DashioWiFi.setOnConnectCallback(void (*connectCallback)(void)) function deprecated. Please directly set the DashioDevice function pointer *statusCallback(StatusCode statusCode) instead.
- Improve behaviour of onStatusCallback for ESP devices.
- Improvements to DashioSerial in preparation for release of the Dash Comms Module hardware.
- Fix issues when Espressif modified their library for new hardware variants. For ESP32, now need to include WiFi.h and change how macAddress is obtained.
- StatusCode enum & onStatusCallback() added to provide information on connection status changes (only used in ESP32 at this stage).
- Bug fixes (removed spurious incomingBufferSize & improve function addTimeGraphLineFloats)
- Fixed bug in MQTT input buffer.
- Added features for future Dash app release (TextBox caption, Dash server Store & Forward for intermittently connected IoT devices).
- Improved String handling for TimeGraph control graph lines.
- Other minor improvements and fixes.
- String handling has been improved, particularly where long strings are created from array of data. For example, the method getTimeGraphLineFloats has been raplaced with addTimeGraphLineFloats which appends the graph line text to an existing string.
- Other minor improvements.