UNPKG

sim800

Version:

A modern and opiniated module for SIM800 GSM modems ( SIM800 / SIM800L ).

15 lines (13 loc) 374 B
import { Sim800CommandType } from '../interfaces/sim800-command-type.enum'; import { Sim800Command } from './sim800-command'; export class CregStatusCommand extends Sim800Command { constructor() { super({ command: Sim800CommandType.CREG, completeWhen: (data) => { return data.startsWith('+CREG:'); }, errorWhen: 'ERROR', }); } }