Added circuit data to pool status message Sanitized byte signedness Added helper to get pool/spa on/off state from pool status Added simple color class Removed debug output Added basic status output to test program
16 lines
358 B
C#
16 lines
358 B
C#
namespace ScreenLogicConnect
|
|
{
|
|
public class CircuitUpdateDataStructure
|
|
{
|
|
public byte colorPos;
|
|
public byte colorSet;
|
|
public byte colorStagger;
|
|
public byte delay;
|
|
public int id;
|
|
public int state;
|
|
|
|
public const int SPA_CIRCUIT_ID = 500;
|
|
public const int POOL_CIRCUIT_ID = 505;
|
|
}
|
|
}
|