Devices

TODO: Generic Device Description

LTE CAT-M1 Module

TODO: LTEm description

To get an LTEmModule, you can use the same method for the Module: ConductorAccount.get_module().

my_lte = account.get_module("$303$0-0-000XXXX-XXXXXXXXX")

The LTE CAT-M1 Module module inherits all of its functionality from the Module, but also has additional fields.

The LTEm Devices can be…

  • Activated: LTEmModule.activate()

  • Deactivated LTEmModule.deactivate()

  • Suspeneded LTEmModule.suspend()

  • Restroed LTEmModule.restore()

This affects the avalibility and billing of the LTEm devices. You can also view the provisoning status of the LTEm with

my_lte.provisioned_status
> 'activated'

To register a brand new LTEmModule, the ConductorAccount.register_lte_module() method should be used.

my_lte = account.register_lte_module(IMEI, ICCID, ZIP_CODE, my_app_token)
my_lte.activate()

To view the Cellular Usage of the device

my_lte.cell_data_usage
> int

You can also reference the LTE CAT-M1 Module module’s ICCID and IMEI at anytime from the Conductor Address of the device via the following properties

my_lte.iccid
> int

my_lte.imei
> long

To view the ID of the last cell tower communicated through, as well as the Tracking Area Code

my_lte.last_cell_id
> int

my_lte.last_cell_tac
> int

Then, to view the firmware versions of the device, the following values should be noted

my_lte.version
> conductor.util.Version

my_lte.sqn_versions
> (int, int)

my_lte.mdn
> int

my_lte.min
> int

my_msisdn
> int

Gateway

TODO