Shutdown MCP9808 device. Stops temperature sampling and reduces power consumption of MCP9808 device to ~0.1 microampere.
shutdown
@/shutdown
Shutdown MCP9808 device. Stops temperature sampling and reduces power consumption of MCP9808 device to ~0.1 microampere.
DEV@/mcp9808-device
A MCP9808 device.
UPDpulse
Update. Trigger shutdown.
DONEpulse
Pulse on shutdown.
To use the node in your project you should have the wayland/mcp9808-thermometer library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.
C++ implementation
struct State {
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
// The node responds only if there is an input pulse
if (!isInputDirty<input_UPD>(ctx))
return;
// Get a pointer to the `Adafruit_MCP9808` class instance
auto sensor = getValue<input_DEV>(ctx);
sensor -> shutdown();
emitValue<output_DONE>(ctx, 1);
}