You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 rivejä
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. }