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:
10
10
#include < Arduino.h>
11
11
#include < server.h>
12
12
13
- CubeServer server () ;
13
+ CubeServer server;
14
14
15
15
void setup () {
16
16
server.connect();
@@ -23,12 +23,18 @@ void loop() {
23
23
24
24
```
25
25
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
+
26
32
## Installation/Usage:
27
33
1 . Configure Arduino IDE for the board you are using
28
34
- Go to File > Preferences
29
35
- By "Additional boards manager URLs," paste in the following:
30
36
```
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
32
38
```
33
39
- Click "ok"
34
40
- Go to Tools > Board > Boards Manager
@@ -54,7 +60,7 @@ void loop() {
54
60
``` C++
55
61
#include <Arduino.h>
56
62
#include <server.h>
57
- CubeServer server() ;
63
+ CubeServer server;
58
64
```
59
65
60
66
----------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments