UNPKG
raw-modem
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A library to send raw command to a modem and received the response
raw-modem
/
lib
/
ModemOptions.js
18 lines
(17 loc)
•
336 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use strict"
;
/** * Hold information to modem opening configuration */
class
ModemOptions
{
constructor
(
) {
/** * Automically opened flag */
this
.
autoOpen
=
false
;
/** * Command timeout */
this
.
commandTimeout
=
5000
; } }
exports
.
ModemOptions
=
ModemOptions
;