Skip to content
This repository was archived by the owner on Jun 16, 2023. It is now read-only.

Commit b2b5d71

Browse files
committed
2 parents 00ed3ab + f3350b8 commit b2b5d71

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1515
void 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:
2733
1. 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
----------------------------------------------------------------

0 commit comments

Comments
 (0)