Browse Source

Indentation make-up

fastled
Xose Pérez 8 years ago
parent
commit
ecae80b0fc
1 changed files with 46 additions and 46 deletions
  1. +46
    -46
      code/src/rf.ino

+ 46
- 46
code/src/rf.ino View File

@ -20,74 +20,74 @@ unsigned long rfCodeOFF = 0;
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
void rfLoop() { void rfLoop() {
return; return;
if (rfCode == 0) return; if (rfCode == 0) return;
DEBUG_MSG("[RF] Received code: %lu\n", rfCode); DEBUG_MSG("[RF] Received code: %lu\n", rfCode);
if (rfCode == rfCodeON) switchRelayOn(); if (rfCode == rfCodeON) switchRelayOn();
if (rfCode == rfCodeOFF) switchRelayOff(); if (rfCode == rfCodeOFF) switchRelayOff();
rfCode = 0; rfCode = 0;
} }
void rfBuildCodes() { void rfBuildCodes() {
unsigned long code = 0; unsigned long code = 0;
// channel // channel
unsigned int channel = getSetting("rfChannel", String(RF_CHANNEL)).toInt(); unsigned int channel = getSetting("rfChannel", String(RF_CHANNEL)).toInt();
for (byte i = 0; i < 5; i++) { for (byte i = 0; i < 5; i++) {
code *= 3; code *= 3;
if (channel & 1) code += 1; if (channel & 1) code += 1;
channel >>= 1; channel >>= 1;
} }
// device // device
unsigned int device = getSetting("rfDevice", String(RF_DEVICE)).toInt(); unsigned int device = getSetting("rfDevice", String(RF_DEVICE)).toInt();
for (byte i = 0; i < 5; i++) { for (byte i = 0; i < 5; i++) {
code *= 3; code *= 3;
if (device != i) code += 2; if (device != i) code += 2;
} }
// status // status
code *= 9; code *= 9;
rfCodeOFF = code + 2; rfCodeOFF = code + 2;
rfCodeON = code + 6; rfCodeON = code + 6;
DEBUG_MSG("[RF] Code ON : %lu\n", rfCodeON); DEBUG_MSG("[RF] Code ON : %lu\n", rfCodeON);
DEBUG_MSG("[RF] Code OFF: %lu\n", rfCodeOFF); DEBUG_MSG("[RF] Code OFF: %lu\n", rfCodeOFF);
} }
void rfCallback(unsigned long code, unsigned int period) { void rfCallback(unsigned long code, unsigned int period) {
rfCode = code; rfCode = code;
} }
void rfSetup() { void rfSetup() {
pinMode(RF_PIN, INPUT_PULLUP); pinMode(RF_PIN, INPUT_PULLUP);
rfBuildCodes(); rfBuildCodes();
RemoteReceiver::init(RF_PIN, 3, rfCallback); RemoteReceiver::init(RF_PIN, 3, rfCallback);
RemoteReceiver::disable();
DEBUG_MSG("[RF] Disabled\n");
static WiFiEventHandler e1 = WiFi.onStationModeDisconnected([](const WiFiEventStationModeDisconnected& event) {
RemoteReceiver::disable(); RemoteReceiver::disable();
DEBUG_MSG("[RF] Disabled\n"); DEBUG_MSG("[RF] Disabled\n");
});
static WiFiEventHandler e2 = WiFi.onSoftAPModeStationDisconnected([](const WiFiEventSoftAPModeStationDisconnected& event) { static WiFiEventHandler e1 = WiFi.onStationModeDisconnected([](const WiFiEventStationModeDisconnected& event) {
RemoteReceiver::disable(); RemoteReceiver::disable();
DEBUG_MSG("[RF] Disabled\n"); DEBUG_MSG("[RF] Disabled\n");
}); });
static WiFiEventHandler e3 = WiFi.onStationModeConnected([](const WiFiEventStationModeConnected& event) { static WiFiEventHandler e2 = WiFi.onSoftAPModeStationDisconnected([](const WiFiEventSoftAPModeStationDisconnected& event) {
RemoteReceiver::enable(); RemoteReceiver::disable();
DEBUG_MSG("[RF] Enabled\n"); DEBUG_MSG("[RF] Disabled\n");
}); });
static WiFiEventHandler e3 = WiFi.onStationModeConnected([](const WiFiEventStationModeConnected& event) {
RemoteReceiver::enable();
DEBUG_MSG("[RF] Enabled\n");
});
static WiFiEventHandler e4 = WiFi.onSoftAPModeStationConnected([](const WiFiEventSoftAPModeStationConnected& event) { static WiFiEventHandler e4 = WiFi.onSoftAPModeStationConnected([](const WiFiEventSoftAPModeStationConnected& event) {
RemoteReceiver::enable(); RemoteReceiver::enable();
DEBUG_MSG("[RF] Enabled\n"); DEBUG_MSG("[RF] Enabled\n");
}); });
} }


|||||||
x
 
000:0
Loading…
Cancel
Save