UNPKG

sim800

Version:

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

15 lines (13 loc) 307 B
import { Sim800Command } from './sim800-command'; export class InputCommand extends Sim800Command { constructor(data: string) { super({ command: data, isInput: true, completeWhen: 'OK', errorWhen: 'ERROR', expectedData: ['+CMGS:'], timeoutMs: 60000, }); } }