I’m trying to connect radio transmitter nRF905 to ESP Home running on ESP32-WROOM board via Home Assistant. My goal is to observe a signal from a RF remote. I’ve found this and few other configs which use custom component. However, I’d like to try first with remote_receiver as explained in the ESPHome docs.
Is it possible to connect it? Let’s assume I’ve connected the nRF905 as depicted in this diagram
nRF905 pin | ESP32 pin | ESP32 GPIO |
---|---|---|
Vcc | 3.3V | 3.3V |
Gnd | Gnd | Gnd |
AM | D32 | GPIO 32 |
CD | D33 | GPIO 33 |
CE | D27 | GPIO 27 |
DR | D35 | GPIO 35 |
PWR | D26 | GPIO 26 |
TX_EN | D25 | GPIO 25 |
MOSI | D13 | GPIO 13 |
MISO | D12 | GPIO 12 |
CLK or SCK | D14 | GPIO 14 |
CS or CSN | D15 | GPIO 15 |
My current ESPHome config is quite simple:
esphome:
name: node-office
platform: ESP32
board: esp32dev
# Enable logging
logger:
esp32_ble_tracker:
xiaomi_ble:
# Enable Home Assistant API
api:
ota:
password: "********"
wifi:
ssid: "********"
password: "********"
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Node-Office Fallback Hotspot"
password: "********"
captive_portal:
sensor:
# several sensors here