Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
ChronectIo.cs
Go to the documentation of this file.
2{
6 public interface IChronectIoBox : IDevice
7 {
13 bool ReadInput(int InputNo);
19 void SwitchRelay(int RelayNumber, bool state);
20 }
21}
Access to some functionality of Chronos builtin device drivers. These are added as required....
To be implemented by the "device driver" part of a Chronos plugin.
Provides access to the Chronect I/O box - a LAN accessible device that provides several digital input...
Definition ChronectIo.cs:7
void SwitchRelay(int RelayNumber, bool state)
Set the state of one of the relays.
bool ReadInput(int InputNo)
Get the state of an input signal.