Advertisement
safwan092

Untitled

Jan 7th, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. int SendSMS_Now = 0;
  2.  
  3. void setup() {
  4. // put your setup code here, to run once:
  5.  
  6. }
  7.  
  8. void loop() {
  9. if (SendSMS_Now == 1) {
  10. sendMsg1();
  11. delay(2000);
  12. sendMsg2();
  13. delay(2000);
  14. sendMsg3();
  15. delay(2000);
  16. SendSMS_Now = 0;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement