Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Startup the Arduino IDE
  • Open sonoff.ino
  • Update parameters in user_config.h. 
    • Set the SWITCH_MODE to FOLLOW 

    • Update the wifi settings: STA_SSID1, STA_PASS1, STA_SSID2, STA_PASS2


      Code Block
      #define STA_SSID1              "mywifissid"              // [Ssid1] Wifi SSID
      #define STA_PASS1              "mywifipwd"               // [Password1] Wifi password
      #define STA_SSID2              "mywifissid2"             // [Ssid2] Optional alternate AP Wifi SSID
      #define STA_PASS2              "mywifisspwd2"            // [Password2] Optional alternate AP Wifi password
      
      #define SWITCH_MODE            FOLLOW 
      


  • Set Board Info

    Image Added

Entering Programming Mode

...