This repository was archived by the owner on Jun 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Minimum code to post a temperature value of 32 degrees F every 10 minutes:
1010#include < Arduino.h>
1111#include < server.h>
1212
13- CubeServer server () ;
13+ CubeServer server;
1414
1515void setup () {
1616 server.connect();
@@ -23,12 +23,18 @@ void loop() {
2323
2424```
2525
26+ ## Supported devices
27+ This library currently supports only ESP8266 devices, with support coming soon for esp32.
28+ This library has only yet been tested on the following devices:
29+ * Adafruit Feather Huzzah ESP8266
30+
31+
2632## Installation/Usage:
27331 . Configure Arduino IDE for the board you are using
2834 - Go to File > Preferences
2935 - By "Additional boards manager URLs," paste in the following:
3036 ```
31- https://dl.espressif .com/dl /package_esp32_index.json, http://arduino.esp8266.com/stable/package_esp8266com_index.json
37+ https://raw.githubusercontent .com/espressif/arduino-esp32/gh-pages /package_esp32_index.json, http://arduino.esp8266.com/stable/package_esp8266com_index.json
3238 ```
3339 - Click "ok"
3440 - Go to Tools > Board > Boards Manager
@@ -54,7 +60,7 @@ void loop() {
5460 ``` C++
5561 #include <Arduino.h>
5662 #include <server.h>
57- CubeServer server() ;
63+ CubeServer server;
5864 ```
5965
6066----------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments