You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a Driver class for the Iridium hardware radio for all interfacing operations between the Pi the Iridium radio.
Specifications
This class should extend MainControlLoop.lib.devices.device class and implement all relevant functions.
The new driver should be placed in MainControlLoop/lib/drivers/Iridium.py, the class name should be Iridium
The specifications are kind of vague but there are two required functions: read(), write(msg)
The read function should read from the Iridium radio and return a single byte
The write function should take a string and send it through the Iridium radio, there should not be any formatting of the message in this method
As always, ensure you are following the Iridium documentation exactly. The documentation can either be found online through Google or on the TJREVERB Google Drive account
The text was updated successfully, but these errors were encountered:
Description
Write a Driver class for the Iridium hardware radio for all interfacing operations between the Pi the Iridium radio.
Specifications
This class should extend
MainControlLoop.lib.devices.device
class and implement all relevant functions.The new driver should be placed in
MainControlLoop/lib/drivers/Iridium.py
, the class name should beIridium
The specifications are kind of vague but there are two required functions:
read()
,write(msg)
The read function should read from the Iridium radio and return a single byte
The write function should take a string and send it through the Iridium radio,
there should not be any formatting of the message in this method
As always, ensure you are following the Iridium documentation exactly. The documentation can either be found online through Google or on the TJREVERB Google Drive account
The text was updated successfully, but these errors were encountered: