Advertisement
mikroavr

signalQuality

Mar 25th, 2021
922
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "Sim800l.h"
  2. Sim800l Sim800l;
  3.  
  4. void setup() {
  5.   // put your setup code here, to run once:
  6.   Serial.begin(115200);
  7.   Sim800l.begin();
  8.   delay(5000);
  9.   delay(5000);
  10.   delay(5000);
  11. }
  12.  
  13. void loop() {
  14.   // put your main code here, to run repeatedly:
  15.   Sim800l.signalQuality();
  16.   delay(2000);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement