Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
359 B

  1. /*
  2. THINGSPEAK MODULE
  3. Copyright (C) 2019 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #pragma once
  6. #include "espurna.h"
  7. constexpr size_t tspkDataBufferSize { 256ul };
  8. bool tspkEnqueueRelay(size_t index, bool status);
  9. bool tspkEnqueueMeasurement(unsigned char index, const char * payload);
  10. void tspkFlush();
  11. bool tspkEnabled();
  12. void tspkSetup();