Skip to content

Commit 4ecc253

Browse files
committed
Review README
1 parent 6eb9144 commit 4ecc253

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ If you are new to SlicingDice, check our [quickstart guide](http://panel.slicing
1010

1111
Please refer to the [SlicingDice official documentation](http://panel.slicingdice.com/docs/) for more information on [analytics databases](http://panel.slicingdice.com/docs/#analytics-concepts), [data modeling](http://panel.slicingdice.com/docs/#data-modeling), [indexing](http://panel.slicingdice.com/docs/#data-indexing), [querying](http://panel.slicingdice.com/docs/#data-querying), [limitations](http://panel.slicingdice.com/docs/#current-slicingdice-limitations) and [API details](http://panel.slicingdice.com/docs/#api-details).
1212

13+
### Note
14+
15+
SlicingDice's Arduino client currently supports only indexing commands. Let us
16+
know if you application requires Arduino to query data from SlicingDice
17+
and we'll make sure to add this feature to our backlog.
18+
1319
## Installing
1420

1521
[Click here]() to download our Arduino client as a `zip` file. After downloading it, you only need to import the zipped contents into your project path.
@@ -35,7 +41,7 @@ void setup() {
3541
// Arduino network settings, should match your internet connection properties
3642
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
3743
byte ip[] = { 192, 168, 0, 10 };
38-
byte gateway[] = { 192, 168, 0, 1 };
44+
byte gateway[] = { 192, 168, 0, 1 };
3945
byte subnet[] = { 255, 255, 255, 0 };
4046
byte dns[] = { 8, 8, 8, 8 };
4147
Ethernet.begin(mac, ip, dns, gateway, subnet);
@@ -105,7 +111,7 @@ void setup() {
105111
// Arduino network settings, should match your internet connection properties
106112
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
107113
byte ip[] = { 192, 168, 0, 10 };
108-
byte gateway[] = { 192, 168, 0, 1 };
114+
byte gateway[] = { 192, 168, 0, 1 };
109115
byte subnet[] = { 255, 255, 255, 0 };
110116
byte dns[] = { 8, 8, 8, 8 };
111117
Ethernet.begin(mac, ip, dns, gateway, subnet);

0 commit comments

Comments
 (0)