您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
405 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. inline bool sendSms(const char * phoneNumber, const char * msg) {
  10. return hardware::sim808::device.sendSms(phoneNumber, msg);
  11. }
  12. }