Commit 2e577f57b0477ad500775538629f6cd4e0f59c67

Authored by Adhidarma Hadiwinoto
1 parent 4cb2459b12
Exists in master

modem-info.js

Showing 1 changed file with 18 additions and 0 deletions Inline Diff

File was created 1 const config = require('komodo-sdk/config');
2
3 const modemInfo = {
4 device: config.modem.device,
5 manufacturer: null,
6 model: null,
7 imei: null,
8 imsi: null,
9 msisdn: null,
10 cops: null,
11 networkId: null,
12 networkName: null,
13 signalStrength: null,
14 signalStrengthTs: null,
15 signalStrengthTsReadable: null,
16 };
17
18 module.exports = modemInfo;
19