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

Commit f6d3bdc

Browse files
authored
Update README.md
1 parent b2b5d71 commit f6d3bdc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
An arduino-C implementation of the API wrapper for CubeServer
55

6-
_This currently only supports ESP8266 (It's in development!)_
7-
86
Minimum 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
7979
int code;
8080
GameStatus stats;

0 commit comments

Comments
 (0)