Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
331 B

  1. #pragma once
  2. #include "Hardware.h"
  3. namespace network {
  4. inline void powerOn() { hardware::sim808::networkPowerOn(); }
  5. inline void powerOff() { hardware::sim808::networkPowerOff(); }
  6. SIM808RegistrationStatus waitForRegistered(uint16_t timeout);
  7. bool isAvailable(SIM808_NETWORK_REGISTRATION_STATE state);
  8. bool enableGprs();
  9. }