X2 Standard
Version 1.24
|
The PowerControlDriverInterface allows an X2 implementor to a write X2 power control driver. More...
#include <powercontroldriverinterface.h>
Public Member Functions | |
DriverRootInterface Implementation | |
See DriverRootInterface. | |
virtual DeviceType | deviceType (void) |
virtual int | queryAbstraction (const char *pszName, void **ppVal)=0 |
LinkInterface Implementation | |
See LinkInterface. | |
virtual int | establishLink (void)=0 |
virtual int | terminateLink (void)=0 |
virtual bool | isLinked (void) const =0 |
virtual bool | isEstablishLinkAbortable (void) const |
DriverInfoInterface Implementation | |
See DriverInfoInterface. | |
virtual void | driverInfoDetailedInfo (BasicStringInterface &str) const =0 |
virtual double | driverInfoVersion (void) const =0 |
HardwareInfoInterface Implementation | |
virtual void | deviceInfoNameShort (BasicStringInterface &str) const =0 |
virtual void | deviceInfoNameLong (BasicStringInterface &str) const =0 |
virtual void | deviceInfoDetailedDescription (BasicStringInterface &str) const =0 |
virtual void | deviceInfoFirmwareVersion (BasicStringInterface &str)=0 |
virtual void | deviceInfoModel (BasicStringInterface &str)=0 |
virtual int | numberOfCircuits (int &nNumber) |
virtual int | circuitState (const int &nZeroBasedIndex, bool &bZeroForOffOneForOn) |
virtual int | setCircuitState (const int &nZeroBasedIndex, const bool &bZeroForOffOneForOn) |
Public Member Functions inherited from LinkInterface | |
virtual bool | isEstablishLinkAbortable (void) |
Additional Inherited Members | |
Public Types inherited from DriverRootInterface | |
enum | DeviceType { DT_UNKNOWN = 0, DT_MOUNT = 1, DT_FOCUSER = 2, DT_CAMERA = 3, DT_FILTERWHEEL = 4, DT_DOME = 5, DT_ROTATOR = 6, DT_WEATHER = 7, DT_GPSTFP = 8, DT_VIDEO = 9, DT_OTA =10, DT_AO =11, DT_POWERCONTROL =12, DT_PRIVATE_A =13 } |
The PowerControlDriverInterface allows an X2 implementor to a write X2 power control driver.
See the X2PowerControl for an example.
Power control capabilities were added to TheSky build 12391 and later, released roughly in October 2019. Use the TheSkyXFacadeForDriversInterface::build() method to react by either requiring a certain minimum build or gracefully degrading functionality.
|
inlinevirtual |
Called by TheSky to determine (read) the current state of a circuit.
nZeroBasedIndex | (in) the index of the circuit, starting at zero to 1-number of circuits. |
bZeroForOffOneForOn | (out) the current state of a circuit. Set bZeroForOffOneForOn to zero (0) to indcate the circuit is off and one (1) to indcate the circuit is on. |
Reimplemented in X2PowerControl.
|
pure virtual |
Return a detailed device description.
Implements HardwareInfoInterface.
Implemented in X2PowerControl.
|
pure virtual |
Return the firmware version, if available.
Implements HardwareInfoInterface.
Implemented in X2PowerControl.
|
pure virtual |
|
pure virtual |
|
pure virtual |
|
inlinevirtual |
Returns the type of device.
Implements DriverRootInterface.
|
pure virtual |
Return detailed information about the driver.
Implements DriverInfoInterface.
Implemented in X2PowerControl.
|
pure virtual |
|
pure virtual |
|
pure virtual |
Return true if there is a connection, otherwise return false.
Implements LinkInterface.
Implemented in X2PowerControl.
|
inlinevirtual |
Return the number of circuits (outlets) that can be controlled by this power control device.
nNumber | (out) the number of circuits controlled by this power control device. This method will be called once after a successfull establishLink(). |
Reimplemented in X2PowerControl.
|
pure virtual |
Return a pointer to well defined interface.
Implements DriverRootInterface.
Implemented in X2PowerControl.
|
inlinevirtual |
Called by TheSky to set the state of a circuit.
nZeroBasedIndex | (in) the index of the circuit, starting at zero to 1-number of circuits. |
bZeroForOffOneForOn | (in) the desired state of a circuit. bZeroForOffOneForOn will be zero (0) to set the circuit off and one (1) to set the circuit on. |
Reimplemented in X2PowerControl.
|
pure virtual |