Skip to content

Commit

Permalink
Add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kbx81 committed Feb 20, 2024
1 parent 23da3a3 commit e80c5d1
Show file tree
Hide file tree
Showing 54 changed files with 582 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/components/pcf85063/test.esp32-c3-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf85063.read_time
- pcf85063.write_time

i2c:
- id: i2c_pcf85063
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf85063/test.esp32-c3.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf85063.read_time
- pcf85063.write_time

i2c:
- id: i2c_pcf85063
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf85063/test.esp32-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf85063.read_time
- pcf85063.write_time

i2c:
- id: i2c_pcf85063
scl: 16
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf85063/test.esp32.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf85063.read_time
- pcf85063.write_time

i2c:
- id: i2c_pcf85063
scl: 16
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf85063/test.esp8266.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf85063.read_time
- pcf85063.write_time

i2c:
- id: i2c_pcf85063
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf85063/test.rp2040.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf85063.read_time
- pcf85063.write_time

i2c:
- id: i2c_pcf85063
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf8563/test.esp32-c3-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf8563.read_time
- pcf8563.write_time

i2c:
- id: i2c_pcf8563
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf8563/test.esp32-c3.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf8563.read_time
- pcf8563.write_time

i2c:
- id: i2c_pcf8563
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf8563/test.esp32-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf8563.read_time
- pcf8563.write_time

i2c:
- id: i2c_pcf8563
scl: 16
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf8563/test.esp32.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf8563.read_time
- pcf8563.write_time

i2c:
- id: i2c_pcf8563
scl: 16
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf8563/test.esp8266.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf8563.read_time
- pcf8563.write_time

i2c:
- id: i2c_pcf8563
scl: 5
Expand Down
5 changes: 5 additions & 0 deletions tests/components/pcf8563/test.rp2040.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
esphome:
on_boot:
- pcf8563.read_time
- pcf8563.write_time

i2c:
- id: i2c_pcf8563
scl: 5
Expand Down
16 changes: 16 additions & 0 deletions tests/components/pid/test.esp32-c3-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
esphome:
on_boot:
then:
- climate.pid.autotune: pid_climate
- climate.pid.autotune:
id: pid_climate
noiseband: 0.25
positive_output: 25%
negative_output: -25%
- climate.pid.set_control_parameters:
id: pid_climate
kp: 0.0
ki: 0.0
kd: 0.0
- climate.pid.reset_integral_term: pid_climate

output:
- platform: slow_pwm
pin: 4
Expand Down
16 changes: 16 additions & 0 deletions tests/components/pid/test.esp32-c3.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
esphome:
on_boot:
then:
- climate.pid.autotune: pid_climate
- climate.pid.autotune:
id: pid_climate
noiseband: 0.25
positive_output: 25%
negative_output: -25%
- climate.pid.set_control_parameters:
id: pid_climate
kp: 0.0
ki: 0.0
kd: 0.0
- climate.pid.reset_integral_term: pid_climate

output:
- platform: slow_pwm
pin: 4
Expand Down
16 changes: 16 additions & 0 deletions tests/components/pid/test.esp32-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
esphome:
on_boot:
then:
- climate.pid.autotune: pid_climate
- climate.pid.autotune:
id: pid_climate
noiseband: 0.25
positive_output: 25%
negative_output: -25%
- climate.pid.set_control_parameters:
id: pid_climate
kp: 0.0
ki: 0.0
kd: 0.0
- climate.pid.reset_integral_term: pid_climate

output:
- platform: slow_pwm
pin: 4
Expand Down
16 changes: 16 additions & 0 deletions tests/components/pid/test.esp32.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
esphome:
on_boot:
then:
- climate.pid.autotune: pid_climate
- climate.pid.autotune:
id: pid_climate
noiseband: 0.25
positive_output: 25%
negative_output: -25%
- climate.pid.set_control_parameters:
id: pid_climate
kp: 0.0
ki: 0.0
kd: 0.0
- climate.pid.reset_integral_term: pid_climate

output:
- platform: slow_pwm
pin: 4
Expand Down
16 changes: 16 additions & 0 deletions tests/components/pid/test.esp8266.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
esphome:
on_boot:
then:
- climate.pid.autotune: pid_climate
- climate.pid.autotune:
id: pid_climate
noiseband: 0.25
positive_output: 25%
negative_output: -25%
- climate.pid.set_control_parameters:
id: pid_climate
kp: 0.0
ki: 0.0
kd: 0.0
- climate.pid.reset_integral_term: pid_climate

output:
- platform: slow_pwm
pin: 4
Expand Down
16 changes: 16 additions & 0 deletions tests/components/pid/test.rp2040.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
esphome:
on_boot:
then:
- climate.pid.autotune: pid_climate
- climate.pid.autotune:
id: pid_climate
noiseband: 0.25
positive_output: 25%
negative_output: -25%
- climate.pid.set_control_parameters:
id: pid_climate
kp: 0.0
ki: 0.0
kd: 0.0
- climate.pid.reset_integral_term: pid_climate

output:
- platform: slow_pwm
pin: 4
Expand Down
7 changes: 7 additions & 0 deletions tests/components/pipsolar/test.esp32-c3-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
esphome:
on_boot:
then:
- output.pipsolar.set_level:
id: inverter0_battery_recharge_voltage_out
value: 48.0

uart:
- id: uart_pipsolar
tx_pin: 4
Expand Down
7 changes: 7 additions & 0 deletions tests/components/pipsolar/test.esp32-c3.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
esphome:
on_boot:
then:
- output.pipsolar.set_level:
id: inverter0_battery_recharge_voltage_out
value: 48.0

uart:
- id: uart_pipsolar
tx_pin: 4
Expand Down
7 changes: 7 additions & 0 deletions tests/components/pipsolar/test.esp32-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
esphome:
on_boot:
then:
- output.pipsolar.set_level:
id: inverter0_battery_recharge_voltage_out
value: 48.0

uart:
- id: uart_pipsolar
tx_pin: 17
Expand Down
7 changes: 7 additions & 0 deletions tests/components/pipsolar/test.esp32.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
esphome:
on_boot:
then:
- output.pipsolar.set_level:
id: inverter0_battery_recharge_voltage_out
value: 48.0

uart:
- id: uart_pipsolar
tx_pin: 17
Expand Down
7 changes: 7 additions & 0 deletions tests/components/pipsolar/test.esp8266.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
esphome:
on_boot:
then:
- output.pipsolar.set_level:
id: inverter0_battery_recharge_voltage_out
value: 48.0

uart:
- id: uart_pipsolar
tx_pin: 4
Expand Down
7 changes: 7 additions & 0 deletions tests/components/pipsolar/test.rp2040.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
esphome:
on_boot:
then:
- output.pipsolar.set_level:
id: inverter0_battery_recharge_voltage_out
value: 48.0

uart:
- id: uart_pipsolar
tx_pin: 4
Expand Down
18 changes: 18 additions & 0 deletions tests/components/pn7150_i2c/test.esp32-c3-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
esphome:
on_boot:
then:
- tag.set_clean_mode: nfcc_pn7150
- tag.set_format_mode: nfcc_pn7150
- tag.set_read_mode: nfcc_pn7150
- tag.set_write_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.set_write_mode: nfcc_pn7150
- tag.set_emulation_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.emulation_off: nfcc_pn7150
- tag.emulation_on: nfcc_pn7150
- tag.polling_off: nfcc_pn7150
- tag.polling_on: nfcc_pn7150

i2c:
- id: i2c_pn7150
scl: 5
Expand Down
18 changes: 18 additions & 0 deletions tests/components/pn7150_i2c/test.esp32-c3.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
esphome:
on_boot:
then:
- tag.set_clean_mode: nfcc_pn7150
- tag.set_format_mode: nfcc_pn7150
- tag.set_read_mode: nfcc_pn7150
- tag.set_write_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.set_write_mode: nfcc_pn7150
- tag.set_emulation_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.emulation_off: nfcc_pn7150
- tag.emulation_on: nfcc_pn7150
- tag.polling_off: nfcc_pn7150
- tag.polling_on: nfcc_pn7150

i2c:
- id: i2c_pn7150
scl: 5
Expand Down
18 changes: 18 additions & 0 deletions tests/components/pn7150_i2c/test.esp32-idf.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
esphome:
on_boot:
then:
- tag.set_clean_mode: nfcc_pn7150
- tag.set_format_mode: nfcc_pn7150
- tag.set_read_mode: nfcc_pn7150
- tag.set_write_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.set_write_mode: nfcc_pn7150
- tag.set_emulation_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.emulation_off: nfcc_pn7150
- tag.emulation_on: nfcc_pn7150
- tag.polling_off: nfcc_pn7150
- tag.polling_on: nfcc_pn7150

i2c:
- id: i2c_pn7150
scl: 16
Expand Down
18 changes: 18 additions & 0 deletions tests/components/pn7150_i2c/test.esp32.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
esphome:
on_boot:
then:
- tag.set_clean_mode: nfcc_pn7150
- tag.set_format_mode: nfcc_pn7150
- tag.set_read_mode: nfcc_pn7150
- tag.set_write_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.set_write_mode: nfcc_pn7150
- tag.set_emulation_message:
message: https://www.home-assistant.io/tag/pulse
include_android_app_record: false
- tag.emulation_off: nfcc_pn7150
- tag.emulation_on: nfcc_pn7150
- tag.polling_off: nfcc_pn7150
- tag.polling_on: nfcc_pn7150

i2c:
- id: i2c_pn7150
scl: 16
Expand Down

0 comments on commit e80c5d1

Please sign in to comment.