An ESP32 library for controlling Arylic devices.
|
4 months ago | |
---|---|---|
examples | 4 months ago | |
src | 4 months ago | |
LICENSE | 4 months ago | |
README.md | 4 months ago | |
library.properties | 4 months ago |
A simple ESP32 library for interfacing with Arylic audio devices.
Download the repository, and extract the ZIP to ~/Documents/Arduino/libraries/
Include the libary in your project using
#include "ArylicHTTP.h"
Once the device has been connected to WiFi, usage of the library is quite simple.
ArylicHTTP* api = new ArylicHTTP();
// Get device status
Serial.println("1.2.3.4", api->getStatus());
// Set device volume
api->setVolume("1.2.3.4", 65);