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

Commit 4a8f37e

Browse files
authored
Fixed incorrect example code
1 parent df78680 commit 4a8f37e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 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();
@@ -54,7 +54,7 @@ void loop() {
5454
``` C++
5555
#include <Arduino.h>
5656
#include <server.h>
57-
CubeServer server();
57+
CubeServer server;
5858
```
5959
6060
----------------------------------------------------------------

0 commit comments

Comments
 (0)