Created
February 6, 2017 23:01
-
-
Save dmiddlecamp/81578b3ac369abb4c2a7c7d1f1ac1291 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
Serial.begin(9600); | |
} | |
void loop() { | |
CellularSignal sig = Cellular.RSSI(); | |
String line = String::format("Cellular signal strength: %d (-dBm), link quality: %d (dB)", | |
sig.rssi, sig.qual | |
); | |
Serial.println(line); | |
delay(500); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment