SX127x Packet Transport Platform

The Packet Transport Component platform allows ESPHome nodes to directly communicate with each over a communication channel. The SX127x Component implementation of the platform uses FSK, OOK or LoRa as a communication medium. See the Packet Transport Component and SX127x Component for more information.

Example Configuration

# Example configuration entry
sx127x:
  dio0_pin: GPIO26
  cs_pin: GPIO18
  rst_pin: GPIO23
  pa_pin: BOOST
  pa_power: 8
  bandwidth: 125_0kHz
  crc_enable: true
  frequency: 433920000
  modulation: LORA
  rx_start: true
  sync_value: 0x33
  spreading_factor: 7
  coding_rate: CR_4_5

packet_transport:
  platform: sx127x
  sensors:
    - dht_temp

sensor:
  - platform: dht
      id: dht
      pin: GPIOXX
      temperature:
        name: "Temperature"
        id: dht_temp

See Also