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.

24 lines
463 B

  1. /*
  2. RF BRIDGE MODULE
  3. Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #if RF_SUPPORT
  6. #if RFB_DIRECT
  7. #include <RCSwitch.h>
  8. #endif
  9. void rfbStatus(unsigned char id, bool status);
  10. void rfbLearn(unsigned char id, bool status);
  11. String rfbRetrieve(unsigned char id, bool status);
  12. void rfbStore(unsigned char id, bool status, const char * code);
  13. void rfbForget(unsigned char id, bool status);
  14. void rfbSetup();
  15. #endif // RF_SUPPORT == 1