11-28-2023, 10:44 AM
Hi,
Can you advise me how to configure sim800l for use with esphome firmware?
Currently yaml is like this:
but no sensors work in homeassistant....
I have a TTGO T-Call V1.4 board with the same sim 800l module.
everything works fine
The only thing is that there are additional module settings in yaml:
thanks!
Can you advise me how to configure sim800l for use with esphome firmware?
Currently yaml is like this:
Code:
uart:
baud_rate: 9600
tx_pin: 15
rx_pin: 13
sensor:
- platform: sim800l
rssi:
name: "Sim800L RSSI"
id: rssi
binary_sensor:
- platform: sim800l
registered:
name: "Sim800L Registered"
I have a TTGO T-Call V1.4 board with the same sim 800l module.
everything works fine
The only thing is that there are additional module settings in yaml:
Code:
switch:
- platform: gpio #SIM800_PWKEY
pin: 4
restore_mode: ALWAYS_OFF
id: SIM800_PWKEY
- platform: gpio #SIM800_RST
pin: 5
restore_mode: ALWAYS_ON
id: SIM800_RST
- platform: gpio #SIM800_PWR
pin: 23
restore_mode: ALWAYS_ON
id: SIM800_PWR
thanks!