Instrument Neutral Distributed Interface INDI  2.0.2
raindetector.h

The rain detector emits a signal each time it detects raid. This signal is snooped by the dome driver.

/*
INDI Developers Manual
Tutorial #5 - Snooping
Rain Detector
Refer to README, which contains instruction on how to build this driver, and use it
with an INDI-compatible client.
*/
#pragma once
#include <defaultdevice.h>
{
public:
RainDetector() = default;
protected:
// General device functions
bool Connect() override;
bool Disconnect() override;
const char *getDefaultName() override;
bool initProperties() override;
bool updateProperties() override;
private:
INDI::PropertyLight mRainLight {1};
INDI::PropertySwitch mRainSwitch {2};
};
Class to provide extended functionality for devices in addition to the functionality provided by INDI...
bool Disconnect() override
Disconnect from device.
bool initProperties() override
Initilize properties initial state and value. The child class must implement this function.
bool updateProperties() override
updateProperties is called whenever there is a change in the CONNECTION status of the driver....
const char * getDefaultName() override
bool Connect() override
Connect to the device. INDI::DefaultDevice implementation connects to appropriate connection interfac...
RainDetector()=default