2021-06-08 01:56:21 +02:00
|
|
|
esphome:
|
|
|
|
name: test5
|
|
|
|
build_path: build/test5
|
2021-06-09 03:04:00 +02:00
|
|
|
project:
|
|
|
|
name: esphome.test5_project
|
|
|
|
version: "1.0.0"
|
2021-06-08 01:56:21 +02:00
|
|
|
|
2021-09-20 11:47:51 +02:00
|
|
|
esp32:
|
|
|
|
board: nodemcu-32s
|
|
|
|
framework:
|
|
|
|
type: esp-idf
|
2021-09-30 18:08:15 +02:00
|
|
|
advanced:
|
|
|
|
ignore_efuse_mac_crc: true
|
2021-09-20 11:47:51 +02:00
|
|
|
|
2021-06-08 01:56:21 +02:00
|
|
|
wifi:
|
|
|
|
networks:
|
|
|
|
- ssid: 'MySSID'
|
|
|
|
password: 'password1'
|
|
|
|
|
|
|
|
api:
|
|
|
|
|
|
|
|
ota:
|
|
|
|
|
|
|
|
logger:
|
|
|
|
|
2021-07-22 05:31:28 +02:00
|
|
|
uart:
|
2021-07-29 11:24:36 +02:00
|
|
|
- id: uart1
|
|
|
|
tx_pin: 1
|
|
|
|
rx_pin: 3
|
|
|
|
baud_rate: 9600
|
|
|
|
- id: uart2
|
|
|
|
tx_pin: 17
|
|
|
|
rx_pin: 16
|
|
|
|
baud_rate: 19200
|
|
|
|
|
2021-09-13 16:55:01 +02:00
|
|
|
i2c:
|
|
|
|
|
2021-07-22 05:31:28 +02:00
|
|
|
|
|
|
|
modbus:
|
2021-07-29 11:24:36 +02:00
|
|
|
uart_id: uart1
|
2021-09-26 22:27:24 +02:00
|
|
|
flow_control_pin: 5
|
|
|
|
id: mod_bus1
|
|
|
|
|
|
|
|
modbus_controller:
|
|
|
|
- id: modbus_controller_test
|
|
|
|
address: 0x2
|
|
|
|
modbus_id: mod_bus1
|
|
|
|
|
2021-07-22 05:31:28 +02:00
|
|
|
|
2021-06-08 01:56:21 +02:00
|
|
|
binary_sensor:
|
|
|
|
- platform: gpio
|
|
|
|
pin: GPIO0
|
|
|
|
id: io0_button
|
2021-10-10 10:37:05 +02:00
|
|
|
icon: mdi:gesture-tap-button
|
2021-06-08 01:56:21 +02:00
|
|
|
|
2021-07-29 11:16:04 +02:00
|
|
|
tlc5947:
|
|
|
|
data_pin: GPIO12
|
|
|
|
clock_pin: GPIO14
|
|
|
|
lat_pin: GPIO15
|
|
|
|
|
2021-06-08 01:56:21 +02:00
|
|
|
output:
|
|
|
|
- platform: gpio
|
|
|
|
pin: GPIO2
|
|
|
|
id: built_in_led
|
|
|
|
|
2021-07-29 11:16:04 +02:00
|
|
|
- platform: tlc5947
|
|
|
|
id: output_red
|
|
|
|
channel: 0
|
|
|
|
max_power: 0.8
|
|
|
|
|
2021-07-29 11:50:55 +02:00
|
|
|
demo:
|
|
|
|
|
2021-06-08 01:56:21 +02:00
|
|
|
esp32_ble:
|
2021-06-11 22:31:15 +02:00
|
|
|
|
|
|
|
esp32_ble_server:
|
|
|
|
manufacturer: "ESPHome"
|
|
|
|
model: "Test5"
|
2021-06-08 01:56:21 +02:00
|
|
|
|
|
|
|
esp32_improv:
|
|
|
|
authorizer: io0_button
|
|
|
|
authorized_duration: 1min
|
|
|
|
status_indicator: built_in_led
|
2021-07-12 21:20:12 +02:00
|
|
|
|
|
|
|
number:
|
|
|
|
- platform: template
|
|
|
|
name: My template number
|
|
|
|
id: template_number_id
|
|
|
|
optimistic: true
|
|
|
|
on_value:
|
|
|
|
- logger.log:
|
|
|
|
format: "Number changed to %f"
|
|
|
|
args: ["x"]
|
|
|
|
set_action:
|
|
|
|
- logger.log:
|
|
|
|
format: "Template Number set to %f"
|
|
|
|
args: ["x"]
|
|
|
|
max_value: 100
|
|
|
|
min_value: 0
|
|
|
|
step: 5
|
2021-07-22 05:31:28 +02:00
|
|
|
|
2021-08-02 10:00:51 +02:00
|
|
|
select:
|
|
|
|
- platform: template
|
|
|
|
name: My template select
|
|
|
|
id: template_select_id
|
|
|
|
optimistic: true
|
|
|
|
initial_option: two
|
|
|
|
restore_value: true
|
|
|
|
on_value:
|
|
|
|
- logger.log:
|
|
|
|
format: "Select changed to %s"
|
|
|
|
args: ["x.c_str()"]
|
|
|
|
set_action:
|
|
|
|
- logger.log:
|
|
|
|
format: "Template Select set to %s"
|
|
|
|
args: ["x.c_str()"]
|
|
|
|
- select.set:
|
|
|
|
id: template_select_id
|
|
|
|
option: two
|
|
|
|
options:
|
|
|
|
- one
|
|
|
|
- two
|
|
|
|
- three
|
|
|
|
|
2021-07-22 05:31:28 +02:00
|
|
|
sensor:
|
|
|
|
- platform: selec_meter
|
|
|
|
total_active_energy:
|
|
|
|
name: "SelecEM2M Total Active Energy"
|
|
|
|
import_active_energy:
|
|
|
|
name: "SelecEM2M Import Active Energy"
|
|
|
|
export_active_energy:
|
|
|
|
name: "SelecEM2M Export Active Energy"
|
|
|
|
total_reactive_energy:
|
|
|
|
name: "SelecEM2M Total Reactive Energy"
|
|
|
|
import_reactive_energy:
|
|
|
|
name: "SelecEM2M Import Reactive Energy"
|
|
|
|
export_reactive_energy:
|
|
|
|
name: "SelecEM2M Export Reactive Energy"
|
|
|
|
apparent_energy:
|
|
|
|
name: "SelecEM2M Apparent Energy"
|
|
|
|
active_power:
|
|
|
|
name: "SelecEM2M Active Power"
|
|
|
|
reactive_power:
|
|
|
|
name: "SelecEM2M Reactive Power"
|
|
|
|
apparent_power:
|
|
|
|
name: "SelecEM2M Apparent Power"
|
|
|
|
voltage:
|
|
|
|
name: "SelecEM2M Voltage"
|
|
|
|
current:
|
|
|
|
name: "SelecEM2M Current"
|
|
|
|
power_factor:
|
|
|
|
name: "SelecEM2M Power Factor"
|
|
|
|
frequency:
|
|
|
|
name: "SelecEM2M Frequency"
|
|
|
|
maximum_demand_active_power:
|
|
|
|
name: "SelecEM2M Maximum Demand Active Power"
|
2021-08-10 03:45:31 +02:00
|
|
|
disabled_by_default: true
|
2021-07-22 05:31:28 +02:00
|
|
|
maximum_demand_reactive_power:
|
|
|
|
name: "SelecEM2M Maximum Demand Reactive Power"
|
2021-08-10 03:45:31 +02:00
|
|
|
disabled_by_default: true
|
2021-07-22 05:31:28 +02:00
|
|
|
maximum_demand_apparent_power:
|
|
|
|
name: "SelecEM2M Maximum Demand Apparent Power"
|
2021-08-10 03:45:31 +02:00
|
|
|
disabled_by_default: true
|
2021-07-29 11:50:55 +02:00
|
|
|
|
2021-09-26 22:27:24 +02:00
|
|
|
- id: battery_voltage
|
|
|
|
name: "Battery voltage2"
|
|
|
|
platform: modbus_controller
|
|
|
|
modbus_controller_id: modbus_controller_test
|
|
|
|
address: 0x331A
|
|
|
|
register_type: read
|
|
|
|
value_type: U_WORD
|
|
|
|
|
2021-07-29 11:24:36 +02:00
|
|
|
- platform: t6615
|
|
|
|
uart_id: uart2
|
|
|
|
co2:
|
|
|
|
name: CO2 Sensor
|