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:
|
2021-11-30 20:11:38 +01:00
|
|
|
ignore_efuse_mac_crc: true
|
2021-09-20 11:47:51 +02:00
|
|
|
|
2021-06-08 01:56:21 +02:00
|
|
|
wifi:
|
|
|
|
networks:
|
2022-01-24 20:44:20 +01:00
|
|
|
- ssid: "MySSID"
|
|
|
|
password: "password1"
|
2021-12-01 20:55:27 +01:00
|
|
|
manual_ip:
|
|
|
|
static_ip: 192.168.1.23
|
|
|
|
gateway: 192.168.1.1
|
|
|
|
subnet: 255.255.255.0
|
2021-06-08 01:56:21 +02:00
|
|
|
|
|
|
|
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
|
2022-04-04 01:07:20 +02:00
|
|
|
|
|
|
|
mqtt:
|
|
|
|
broker: test.mosquitto.org
|
|
|
|
port: 1883
|
|
|
|
discovery: true
|
|
|
|
discovery_prefix: homeassistant
|
|
|
|
idf_send_async: false
|
|
|
|
on_message:
|
|
|
|
topic: testing/sensor/testing_sensor/state
|
|
|
|
qos: 0
|
|
|
|
then:
|
|
|
|
- lambda: |-
|
|
|
|
ESP_LOGD("Mqtt Test","testing/sensor/testing_sensor/state=[%s]",x.c_str());
|
2021-09-26 22:27:24 +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
|
|
|
|
2022-01-24 20:44:20 +01:00
|
|
|
- platform: modbus_controller
|
|
|
|
modbus_controller_id: modbus_controller_test
|
|
|
|
id: modbus_binsensortest
|
|
|
|
register_type: read
|
|
|
|
address: 0x3200
|
|
|
|
bitmask: 0x80 #(bit 8)
|
|
|
|
lambda: !lambda "{ return x ;}"
|
|
|
|
|
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
|
|
|
|
|
2022-01-08 09:35:55 +01:00
|
|
|
- platform: mcp47a1
|
|
|
|
id: output_mcp47a1
|
|
|
|
|
2022-01-24 20:44:20 +01:00
|
|
|
- platform: modbus_controller
|
|
|
|
modbus_controller_id: modbus_controller_test
|
|
|
|
id: modbus_output_test
|
|
|
|
lambda: |-
|
|
|
|
return x * 1.0 ;
|
|
|
|
address: 0x9001
|
|
|
|
value_type: U_WORD
|
|
|
|
|
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
|
2022-05-10 06:58:56 +02:00
|
|
|
max_value: 100
|
|
|
|
min_value: 0
|
|
|
|
step: 5
|
|
|
|
unit_of_measurement: "%"
|
|
|
|
mode: slider
|
2021-07-12 21:20:12 +02:00
|
|
|
on_value:
|
|
|
|
- logger.log:
|
|
|
|
format: "Number changed to %f"
|
|
|
|
args: ["x"]
|
|
|
|
set_action:
|
|
|
|
- logger.log:
|
|
|
|
format: "Template Number set to %f"
|
|
|
|
args: ["x"]
|
2022-05-10 06:58:56 +02:00
|
|
|
- number.set:
|
|
|
|
id: template_number_id
|
|
|
|
value: 50
|
|
|
|
- number.to_min: template_number_id
|
|
|
|
- number.to_min:
|
|
|
|
id: template_number_id
|
|
|
|
- number.to_max: template_number_id
|
|
|
|
- number.to_max:
|
|
|
|
id: template_number_id
|
|
|
|
- number.increment: template_number_id
|
|
|
|
- number.increment:
|
|
|
|
id: template_number_id
|
|
|
|
cycle: false
|
|
|
|
- number.decrement: template_number_id
|
|
|
|
- number.decrement:
|
|
|
|
id: template_number_id
|
|
|
|
cycle: false
|
|
|
|
- number.operation:
|
|
|
|
id: template_number_id
|
|
|
|
operation: Increment
|
|
|
|
cycle: false
|
|
|
|
- number.operation:
|
|
|
|
id: template_number_id
|
|
|
|
operation: !lambda "return NUMBER_OP_INCREMENT;"
|
|
|
|
cycle: !lambda "return false;"
|
2021-07-22 05:31:28 +02:00
|
|
|
|
2022-01-24 20:44:20 +01:00
|
|
|
- id: modbus_numbertest
|
|
|
|
platform: modbus_controller
|
|
|
|
modbus_controller_id: modbus_controller_test
|
|
|
|
name: "ModbusNumber"
|
|
|
|
address: 0x9002
|
|
|
|
value_type: U_WORD
|
|
|
|
lambda: "return x * 1.0; "
|
|
|
|
write_lambda: |-
|
|
|
|
return x * 1.0 ;
|
|
|
|
multiply: 1.0
|
|
|
|
|
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:
|
2022-05-10 06:41:16 +02:00
|
|
|
format: "Select changed to %s (index %d)"
|
|
|
|
args: ["x.c_str()", "i"]
|
2021-08-02 10:00:51 +02:00
|
|
|
set_action:
|
|
|
|
- logger.log:
|
|
|
|
format: "Template Select set to %s"
|
|
|
|
args: ["x.c_str()"]
|
|
|
|
- select.set:
|
|
|
|
id: template_select_id
|
|
|
|
option: two
|
2022-05-10 06:41:16 +02:00
|
|
|
- select.first: template_select_id
|
|
|
|
- select.last:
|
|
|
|
id: template_select_id
|
|
|
|
- select.previous: template_select_id
|
|
|
|
- select.next:
|
|
|
|
id: template_select_id
|
|
|
|
cycle: false
|
|
|
|
- select.operation:
|
|
|
|
id: template_select_id
|
|
|
|
operation: Previous
|
|
|
|
cycle: false
|
|
|
|
- select.operation:
|
|
|
|
id: template_select_id
|
|
|
|
operation: !lambda "return SELECT_OP_PREVIOUS;"
|
|
|
|
cycle: !lambda "return true;"
|
|
|
|
- select.set_index:
|
|
|
|
id: template_select_id
|
|
|
|
index: 1
|
|
|
|
- select.set_index:
|
|
|
|
id: template_select_id
|
|
|
|
index: !lambda "return 1 + 1;"
|
2021-08-02 10:00:51 +02:00
|
|
|
options:
|
|
|
|
- one
|
|
|
|
- two
|
|
|
|
- three
|
|
|
|
|
2022-05-10 06:41:16 +02:00
|
|
|
- platform: modbus_controller
|
|
|
|
name: "Modbus Select Register 1000"
|
|
|
|
address: 1000
|
|
|
|
value_type: U_WORD
|
|
|
|
optionsmap:
|
|
|
|
"Zero": 0
|
|
|
|
"One": 1
|
|
|
|
"Two": 2
|
|
|
|
"Three": 3
|
|
|
|
|
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
|
|
|
|
2022-01-24 20:44:20 +01:00
|
|
|
- id: modbus_sensortest
|
2021-09-26 22:27:24 +02:00
|
|
|
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
|
2021-11-10 19:30:07 +01:00
|
|
|
|
2022-01-06 03:01:50 +01:00
|
|
|
- platform: bmp3xx
|
|
|
|
temperature:
|
|
|
|
name: "BMP Temperature"
|
|
|
|
oversampling: 16x
|
|
|
|
pressure:
|
|
|
|
name: "BMP Pressure"
|
|
|
|
address: 0x77
|
|
|
|
iir_filter: 2X
|
|
|
|
|
2022-05-10 10:15:02 +02:00
|
|
|
- platform: sen5x
|
|
|
|
id: sen54
|
|
|
|
temperature:
|
|
|
|
name: "Temperature"
|
|
|
|
accuracy_decimals: 1
|
|
|
|
humidity:
|
|
|
|
name: "Humidity"
|
|
|
|
accuracy_decimals: 0
|
|
|
|
pm_1_0:
|
|
|
|
name: " PM <1µm Weight concentration"
|
|
|
|
id: pm_1_0
|
|
|
|
accuracy_decimals: 1
|
|
|
|
pm_2_5:
|
|
|
|
name: " PM <2.5µm Weight concentration"
|
|
|
|
id: pm_2_5
|
|
|
|
accuracy_decimals: 1
|
|
|
|
pm_4_0:
|
|
|
|
name: " PM <4µm Weight concentration"
|
|
|
|
id: pm_4_0
|
|
|
|
accuracy_decimals: 1
|
|
|
|
pm_10_0:
|
|
|
|
name: " PM <10µm Weight concentration"
|
|
|
|
id: pm_10_0
|
|
|
|
accuracy_decimals: 1
|
|
|
|
nox:
|
|
|
|
name: "NOx"
|
|
|
|
voc:
|
|
|
|
name: "VOC"
|
|
|
|
algorithm_tuning:
|
|
|
|
index_offset: 100
|
|
|
|
learning_time_offset_hours: 12
|
|
|
|
learning_time_gain_hours: 12
|
|
|
|
gating_max_duration_minutes: 180
|
|
|
|
std_initial: 50
|
|
|
|
gain_factor: 230
|
|
|
|
temperature_compensation:
|
|
|
|
offset: 0
|
|
|
|
normalized_offset_slope: 0
|
|
|
|
time_constant: 0
|
|
|
|
acceleration_mode: low
|
|
|
|
store_baseline: true
|
|
|
|
address: 0x69
|
|
|
|
|
2021-11-10 19:30:07 +01:00
|
|
|
script:
|
|
|
|
- id: automation_test
|
|
|
|
then:
|
|
|
|
- repeat:
|
|
|
|
count: 5
|
|
|
|
then:
|
|
|
|
- logger.log: "looping!"
|
2022-01-21 03:45:49 +01:00
|
|
|
|
2022-01-24 20:44:20 +01:00
|
|
|
switch:
|
|
|
|
- platform: modbus_controller
|
|
|
|
modbus_controller_id: modbus_controller_test
|
|
|
|
id: modbus_switch_test
|
|
|
|
register_type: coil
|
|
|
|
address: 2
|
|
|
|
bitmask: 1
|