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 +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 33
44An arduino-C implementation of the API wrapper for CubeServer
55
6- _ This currently only supports ESP8266 (It's in development!)_
7-
86Minimum code to post a temperature value of 32 degrees F every 10 minutes:
97``` C++
108#include < Arduino.h>
@@ -24,9 +22,11 @@ void loop() {
2422```
2523
2624## 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:
25+ This library is intended to support ESP8266 and ESP32 microcontrollers.
26+
27+ This library has only yet been tested on the following boards:
2928* Adafruit Feather Huzzah ESP8266
29+ * Unexpected Maker Feather S2 (ESP32)
3030
3131
3232## Installation/Usage:
@@ -53,7 +53,7 @@ This library has only yet been tested on the following devices:
5353 #include <server.h>
5454 #include "client_config.h"
5555
56- CubeServer server(TEAM_NAME, TEAM_SECRET, SERVER_FINGERPRINT);
56+ CubeServer server(TEAM_NAME, TEAM_SECRET, SERVER_FINGERPRINT); // Use SERVER_FINGERPRINT_SHA256 on ESP32
5757 ```
5858 instead of:
5959
@@ -74,7 +74,7 @@ Advanced features demonstrated:
7474#include <server.h>
7575#include "client_config.h"
7676
77- CubeServer server(TEAM_NAME, TEAM_SECRET, SERVER_FINGERPRINT);
77+ CubeServer server(TEAM_NAME, TEAM_SECRET, SERVER_FINGERPRINT); // Use SERVER_FINGERPRINT_SHA256 on ESP32
7878
7979int code;
8080GameStatus stats;
You can’t perform that action at this time.
0 commit comments