Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

15 righe
307 B

  1. #pragma once
  2. #include "Hardware.h"
  3. namespace network {
  4. void powerOn();
  5. void powerOff();
  6. SIM808RegistrationStatus waitForRegistered(uint32_t timeout, bool relativeToPowerOnTime = true);
  7. bool isAvailable(SIM808_NETWORK_REGISTRATION_STATE state);
  8. bool enableGprs();
  9. bool sendSms(const char * msg);
  10. }