Skip to content

Commit

Permalink
- use power level of -18
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepmistry committed Sep 6, 2015
1 parent f448376 commit a26d83e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Eddystone/EddystoneUID/EddystoneUID.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BLEUuid uid = BLEUuid("01020304050607080910-AABBCCDDEEFF");
void setup() {
Serial.begin(9600);

eddystoneBeacon.begin(0x20, uid); // power, UID
eddystoneBeacon.begin(-18, uid); // power, UID

Serial.println(F("Eddystone UID Beacon"));
}
Expand Down
2 changes: 1 addition & 1 deletion examples/Eddystone/EddystoneURL/EddystoneURL.ino
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void setup() {

delay(1000);

eddystoneBeacon.begin(0x20, "http://www.example.com"); // power, URI
eddystoneBeacon.begin(-18, "http://www.example.com"); // power, URI

Serial.println(F("Eddystone URL Beacon"));
}
Expand Down

0 comments on commit a26d83e

Please sign in to comment.