2#ifdef RAWDATASENSOR_EXPORTS
3#define SENSLAMP __declspec(dllexport)
5#define SENSLAMP __declspec(dllimport)
34 SensorLamps(LEDCOLOR pLed1, LEDCOLOR pLed2, LEDCOLOR pLed3, LEDCOLOR pLed4);
47 void SetLed1(LEDCOLOR pColor);
59 void SetLed2(LEDCOLOR pColor);
71 void SetLed3(LEDCOLOR pColor);
83 void SetLed4(LEDCOLOR pColor);
86 LEDCOLOR _led1 = BLACK;
87 LEDCOLOR _led2 = BLACK;
88 LEDCOLOR _led3 = BLACK;
89 LEDCOLOR _led4 = BLACK;
Helper to encapsulate the sensor lamps state.
Definition SensorLamps.h:20