25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
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. }