2018-06-03 11:16:39 +02:00
|
|
|
Using With Sonoff Basic
|
|
|
|
=======================
|
|
|
|
|
2018-11-14 22:12:27 +01:00
|
|
|
.. seo::
|
2019-02-16 23:25:23 +01:00
|
|
|
:description: Instructions for putting Sonoff basic devices into flash mode and installing ESPHome on them.
|
2018-11-14 22:12:27 +01:00
|
|
|
:image: sonoff_basic.jpg
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
ESPHome can be used with Sonoff Basic. These devices are basically just
|
2018-06-03 11:16:39 +02:00
|
|
|
an ESP8266 chip with a relay to control the connection, a small button on the
|
2019-01-18 15:40:02 +01:00
|
|
|
front and a green LED light.
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2018-08-22 22:05:28 +02:00
|
|
|
.. figure:: images/sonoff_basic-full.jpg
|
2018-06-03 11:16:39 +02:00
|
|
|
:align: center
|
|
|
|
:width: 75.0%
|
|
|
|
|
|
|
|
Sonoff Basic
|
|
|
|
|
|
|
|
This guide will not guide you through setting up your Sonoff Basic step-by-step. It just provide
|
|
|
|
a sample configuration. For detailed instructions, see :doc:`sonoff_s20`, as those devices are
|
|
|
|
pretty similar.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
If you've previously installed Sonoff-Tasmota or ESPurna on your Sonoff Basic, you're in luck 😀
|
2019-02-16 23:25:23 +01:00
|
|
|
ESPHome can generate a firmware binary which you can then upload via the
|
2018-06-03 11:16:39 +02:00
|
|
|
web interface.
|
|
|
|
|
|
|
|
Sample configuration
|
2018-08-24 22:44:01 +02:00
|
|
|
--------------------
|
2018-06-03 11:16:39 +02:00
|
|
|
|
|
|
|
The Sonoff Basic is based on the ``ESP8266`` platform and is a subtype of the ``esp01_1m`` board.
|
2019-02-16 23:25:23 +01:00
|
|
|
With this information, you can also step through the ESPHome wizard (``esphome sonoff_basic.yaml wizard``)
|
2018-06-03 11:16:39 +02:00
|
|
|
if you don't want to use the sample configuration file from below.
|
|
|
|
|
|
|
|
Below you will find a table of all usable GPIO pins of the Sonoff Basic and a configuration file that
|
|
|
|
exposes all of the basic functions.
|
|
|
|
|
2019-02-14 16:19:07 +01:00
|
|
|
================================================== ==================================================
|
|
|
|
``GPIO0`` Button (inverted)
|
|
|
|
-------------------------------------------------- --------------------------------------------------
|
2019-06-01 11:22:55 +02:00
|
|
|
``GPIO1`` ``TX`` pin (C1 Pin 2)
|
2019-02-14 16:19:07 +01:00
|
|
|
-------------------------------------------------- --------------------------------------------------
|
2019-06-01 11:22:55 +02:00
|
|
|
``GPIO3`` ``RX`` pin (C1 Pin 3)
|
2019-02-14 16:19:07 +01:00
|
|
|
-------------------------------------------------- --------------------------------------------------
|
|
|
|
``GPIO12`` Relay
|
|
|
|
-------------------------------------------------- --------------------------------------------------
|
|
|
|
``GPIO13`` Green LED (inverted)
|
|
|
|
-------------------------------------------------- --------------------------------------------------
|
|
|
|
``GPIO14`` Optional Sensor (C1 Pin 5)
|
|
|
|
================================================== ==================================================
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
.. code-block:: yaml
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
esphome:
|
2018-06-03 11:16:39 +02:00
|
|
|
name: <NAME_OF_NODE>
|
|
|
|
platform: ESP8266
|
2021-05-25 11:54:00 +02:00
|
|
|
board: esp8285
|
|
|
|
arduino_version: 2.4.2
|
2018-06-03 11:16:39 +02:00
|
|
|
|
|
|
|
wifi:
|
|
|
|
ssid: <YOUR_SSID>
|
|
|
|
password: <YOUR_PASSWORD>
|
|
|
|
|
2019-02-17 12:28:17 +01:00
|
|
|
api:
|
2018-06-03 11:16:39 +02:00
|
|
|
|
|
|
|
logger:
|
|
|
|
|
|
|
|
ota:
|
|
|
|
|
|
|
|
binary_sensor:
|
|
|
|
- platform: gpio
|
|
|
|
pin:
|
|
|
|
number: GPIO0
|
|
|
|
mode: INPUT_PULLUP
|
2021-07-28 23:56:11 +02:00
|
|
|
inverted: true
|
2018-06-03 11:16:39 +02:00
|
|
|
name: "Sonoff Basic Button"
|
2019-01-09 14:43:18 +01:00
|
|
|
on_press:
|
|
|
|
- switch.toggle: relay
|
2018-06-03 11:16:39 +02:00
|
|
|
|
|
|
|
switch:
|
|
|
|
- platform: gpio
|
|
|
|
name: "Sonoff Basic Relay"
|
|
|
|
pin: GPIO12
|
2019-01-09 14:43:18 +01:00
|
|
|
id: relay
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2019-02-07 18:23:40 +01:00
|
|
|
status_led:
|
|
|
|
pin:
|
|
|
|
number: GPIO13
|
|
|
|
inverted: yes
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
Now run ``esphome sonoff_basic.yaml compile`` to validate the configuration and
|
2018-06-03 11:16:39 +02:00
|
|
|
pre-compile the firmware.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
After this step, you will be able to find the compiled binary under
|
|
|
|
``<NAME_OF_NODE>/.pioenvs/<NAME_OF_NODE>/firmware.bin``. If you're having trouble with
|
|
|
|
uploading, you can also try uploading this file directly with other tools.
|
|
|
|
|
|
|
|
Or run the upload command if your device is connected to the serial interface:
|
|
|
|
|
2018-11-19 18:32:16 +01:00
|
|
|
.. code-block:: bash
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
esphome sonoff_basic.yaml run
|
2018-06-03 11:16:39 +02:00
|
|
|
|
2019-01-18 15:40:02 +01:00
|
|
|
More detailed breakdown
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
1. Programming
|
|
|
|
**************
|
|
|
|
|
|
|
|
Ensure you have soldered on the additional header pins to the PCB and connect your USB FTDI programmer.
|
|
|
|
See https://randomnerdtutorials.com/how-to-flash-a-custom-firmware-to-sonoff/ for more details on the pinout and FTDI.
|
|
|
|
|
|
|
|
1.1. Put Sonoff into programming mode.
|
|
|
|
**************************************
|
|
|
|
|
|
|
|
* Press and hold the toggle pin (long black pin next to LED and custom soldered pins).
|
|
|
|
* Supply USB power to Sonoff via FTDI (e.g. plug in USB to the FTDI, or use a power switch as explained in link above).
|
2019-02-27 18:32:47 +01:00
|
|
|
* Keep holding the toggle pin for approx 3-5 seconds now you should be ready to program.
|
|
|
|
If you get a message unable to communicate when trying flash, check your TX/RX pin or retry entering boot mode again.
|
2019-01-18 15:40:02 +01:00
|
|
|
|
|
|
|
Quick notes:
|
|
|
|
|
|
|
|
* 3.3V setting on FTDI, 5V will cause damage.
|
|
|
|
* Ensure the connections on the PCB starts at the closed to the toggle pin, it uses 4 pins, but 5 pins are soldered on.
|
|
|
|
* TX and RX should be swapped - RX on Sonoff goes to TX on FTDI.
|
|
|
|
|
|
|
|
|
|
|
|
1.2. Upload the firmware
|
|
|
|
************************
|
|
|
|
|
|
|
|
Run this command from the same directory where your <my-awesome>.yaml file is located
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
esphome <my-awesome>.yaml run
|
2019-01-18 15:40:02 +01:00
|
|
|
|
|
|
|
Or if you're using the dashboard, just click the "UPLOAD" button.
|
|
|
|
|
|
|
|
You should get an output starting like this
|
|
|
|
|
|
|
|
.. code-block:: text
|
|
|
|
|
2019-02-27 18:32:47 +01:00
|
|
|
INFO Reading configuration...
|
|
|
|
INFO Detected timezone 'SAST' with UTC offset 2
|
|
|
|
INFO Generating C++ source...
|
|
|
|
INFO Compiling app...
|
|
|
|
INFO Running: platformio run -d fishpond
|
|
|
|
********************************************************************************************************
|
|
|
|
Obsolete PIO Core v3.6.3 is used (previous was 3.6.4b1)
|
|
|
|
Please remove multiple PIO Cores from a system:
|
|
|
|
https://docs.platformio.org/page/faq.html#multiple-pio-cores-in-a-system
|
|
|
|
...
|
|
|
|
lots of compile stuff
|
|
|
|
...
|
|
|
|
Memory Usage -> http://bit.ly/pio-memory-usage
|
|
|
|
DATA: [====== ] 55.6% (used 45512 bytes from 81920 bytes)
|
|
|
|
PROGRAM: [==== ] 38.1% (used 390576 bytes from 1023984 bytes)
|
|
|
|
===================================== [SUCCESS] Took 4.70 seconds =====================================
|
|
|
|
INFO Successfully compiled program.
|
|
|
|
Found multiple options, please choose one:
|
2019-01-18 15:40:02 +01:00
|
|
|
[1] /dev/ttyUSB0 (FT232R USB UART)
|
|
|
|
[2] Over The Air (fishpond.device)
|
2019-02-27 18:32:47 +01:00
|
|
|
(number): 1
|
|
|
|
...
|
|
|
|
esptool.py v2.6
|
|
|
|
Serial port /dev/ttyUSB0
|
|
|
|
Connecting....
|
|
|
|
Chip is ESP8266EX
|
|
|
|
Features: WiFi
|
|
|
|
MAC: xx:xx:xx:xx:xx:xx
|
|
|
|
Uploading stub...
|
|
|
|
Running stub...
|
|
|
|
Stub running...
|
|
|
|
Configuring flash size...
|
|
|
|
Auto-detected Flash size: 1MB
|
|
|
|
Compressed 394720 bytes to 267991...
|
|
|
|
Wrote 394720 bytes (267991 compressed) at 0x00000000 in 23.8 seconds (effective 132.7 kbit/s)...
|
|
|
|
Hash of data verified.
|
|
|
|
|
|
|
|
Leaving...
|
|
|
|
Hard resetting via RTS pin...
|
|
|
|
INFO Successfully uploaded program.
|
|
|
|
INFO Starting log output from /dev/ttyUSB0 with baud rate 115200
|
2019-01-18 15:40:02 +01:00
|
|
|
|
|
|
|
1.3. And then nothing will happen
|
|
|
|
*********************************
|
|
|
|
|
2019-02-27 18:32:47 +01:00
|
|
|
Once you have flashed the device, nothing will happen. You need to power cycle the device.
|
|
|
|
You will notice the LED will start to flash and then becomes solid once connected to the WiFi network.
|
2019-01-18 15:40:02 +01:00
|
|
|
|
|
|
|
You can follow the logs produced by the running module by running the command
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2019-02-27 18:32:47 +01:00
|
|
|
esphome <my-awesome>.yaml logs
|
2019-01-18 15:40:02 +01:00
|
|
|
|
|
|
|
Your output will possibly look like this
|
|
|
|
|
|
|
|
.. code-block:: text
|
|
|
|
|
|
|
|
INFO Reading configuration...
|
|
|
|
INFO Detected timezone 'SAST' with UTC offset 2
|
2019-02-16 23:25:23 +01:00
|
|
|
INFO Starting log output from fishpond.device using ESPHome API
|
2019-01-18 15:40:02 +01:00
|
|
|
INFO Connecting to fishpond.device:6053 (192.168.13.15)
|
|
|
|
INFO Successfully connected to fishpond.device
|
|
|
|
[11:13:27][D][time.homeassistant:029]: Synchronized time: Wed Jan 16 11:13:27 2019
|
2019-02-16 23:25:23 +01:00
|
|
|
[11:13:27][I][application:097]: You're running ESPHome v1.10.1 compiled on Jan 16 2019, 08:12:59
|
2019-01-18 15:40:02 +01:00
|
|
|
[11:13:27][C][status_led:023]: Status LED:
|
|
|
|
[11:13:27][C][status_led:024]: Pin: GPIO13 (Mode: OUTPUT)
|
|
|
|
[11:13:27][C][wifi:341]: WiFi:
|
|
|
|
[11:13:27][C][wifi:240]: SSID: 'some-ssid'
|
|
|
|
[11:13:27][C][wifi:241]: IP Address: 192.168.13.15
|
|
|
|
[11:13:27][C][wifi:243]: BSSID: xx:xx:xx:xx:xx:xx
|
|
|
|
[11:13:27][C][wifi:245]: Hostname: 'fishpond'
|
|
|
|
[11:13:27][C][wifi:250]: Signal strength: -91 dB ▂▄▆█
|
|
|
|
[11:13:27][C][wifi:251]: Channel: 1
|
|
|
|
[11:13:27][C][wifi:252]: Subnet: 255.255.255.0
|
|
|
|
[11:13:27][C][wifi:253]: Gateway: 192.168.13.1
|
|
|
|
[11:13:27][C][wifi:254]: DNS1: 192.168.13.1
|
|
|
|
[11:13:27][C][wifi:255]: DNS2: 0.0.0.0
|
|
|
|
[11:13:27][C][binary_sensor.status:046]: Status Binary Sensor 'esp_fishpond_system_status'
|
|
|
|
[11:13:27][C][binary_sensor.status:046]: Device Class: 'connectivity'
|
|
|
|
[11:13:28][C][switch.gpio:049]: GPIO Switch 'esp_fishpond_gpio12'
|
|
|
|
[11:13:28][C][switch.gpio:050]: Pin: GPIO12 (Mode: OUTPUT)
|
|
|
|
[11:13:28][C][switch.gpio:066]: Restore Mode: Restore (Default to OFF)
|
|
|
|
[11:13:28][C][binary_sensor.gpio:023]: GPIO Binary Sensor 'esp_fishpond_gpio0'
|
|
|
|
[11:13:28][C][binary_sensor.gpio:024]: Pin: GPIO0 (Mode: INPUT, INVERTED)
|
|
|
|
[11:13:28][C][binary_sensor.gpio:023]: GPIO Binary Sensor 'esp_fishpond_gpio14'
|
|
|
|
[11:13:28][C][binary_sensor.gpio:024]: Pin: GPIO14 (Mode: INPUT_PULLUP)
|
|
|
|
[11:13:28][C][output.esp8266_pwm:028]: ESP8266 PWM:
|
|
|
|
[11:13:28][C][output.esp8266_pwm:029]: Pin: GPIO13 (Mode: OUTPUT)
|
|
|
|
[11:13:28][C][output.esp8266_pwm:030]: Frequency: 1000.0 Hz
|
|
|
|
[11:13:28][C][logger:099]: Logger:
|
|
|
|
[11:13:28][C][logger:100]: Level: DEBUG
|
|
|
|
[11:13:28][C][logger:101]: Log Baud Rate: 115200
|
|
|
|
[11:13:28][C][light.state:266]: Light 'esp_fishpond_gpio13'
|
|
|
|
[11:13:28][C][light.state:268]: Default Transition Length: 1000 ms
|
|
|
|
[11:13:28][C][light.state:269]: Gamma Correct: 2.80
|
|
|
|
[11:13:28][C][switch.restart:034]: Restart Switch 'esp_fishpond_system_restart'
|
|
|
|
[11:13:28][C][switch.restart:034]: Icon: 'mdi:restart'
|
|
|
|
[11:13:28][C][time.homeassistant:032]: Home Assistant Time:
|
|
|
|
[11:13:28][C][time.homeassistant:033]: Timezone: 'SAST-2'
|
|
|
|
[11:13:28][C][sensor.wifi_signal:042]: WiFi Signal 'esp_fishpond_system_wifi_signal'
|
|
|
|
[11:13:28][C][sensor.wifi_signal:042]: Unit of Measurement: 'dB'
|
|
|
|
[11:13:28](Message skipped because it was too big to fit in TCP buffer - This is only cosmetic)
|
|
|
|
[11:13:28](Message skipped because it was too big to fit in TCP buffer - This is only cosmetic)
|
|
|
|
[11:13:28][C][api:072]: API Server:
|
|
|
|
[11:13:28][C][api:073]: Address: 192.168.13.15:6053
|
|
|
|
[11:13:28][C][ota:129]: Over-The-Air Updates:
|
|
|
|
[11:13:28][C][ota:130]: Address: 192.168.13.15:8266
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.4. Test now with OTA flashing
|
|
|
|
*******************************
|
|
|
|
|
|
|
|
Before installing the Sonoff, do a final OTA test, and this time selecting the OTA option and NOT the USB option when reflashing.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2019-02-16 23:25:23 +01:00
|
|
|
esphome <my-awesome>.yaml run
|
2019-01-18 15:40:02 +01:00
|
|
|
|
|
|
|
Once these actions succeeded you are pretty much in the clear and can be sure your device is ready.
|
|
|
|
|
2018-06-03 11:16:39 +02:00
|
|
|
See Also
|
2018-10-12 16:33:22 +02:00
|
|
|
--------
|
2018-06-03 11:16:39 +02:00
|
|
|
|
|
|
|
- :doc:`sonoff`
|
|
|
|
- :doc:`sonoff_4ch`
|
|
|
|
- :doc:`sonoff_s20`
|
2018-11-27 23:44:41 +01:00
|
|
|
- `GPIO locations <https://github.com/arendst/Sonoff-Tasmota/wiki/GPIO-Locations>`__
|
2020-10-04 00:49:39 +02:00
|
|
|
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/devices/sonoff_basic.rst>`__
|