Hello everyone,
I am totally new beginner with ESP and MQTT. I have been running with Home Assistant for a couple of years now and thought I would try to make something new smart …
I have purchased the following components that I would use to be able to display a sensor status on from Home Assistant.
- UNO R3 + WiFi ATmega328P + ESP8266 32Mb Memory USB-TTL CH340G Compatible For Arduino Uno NodeMCU ESP8266
- 2.8 ″ TFT Touch LCD Shield
I have installed ESPHome in Home Assistant and uploaded firmware but from here I can not figure out what to do.
I have tried as a test to paste the following to my .yaml file but getting the message “Platform not found: 'display.ili9341”
esphome:
name: test_2
platform: ESP8266
board: d1_mini
wifi:
ssid: "WIFI"
password: "PASS"
mqtt:
broker: 'IP'
username: 'user'
password: 'password'
captive_portal:
# Enable logging
logger:
# Enable Home Assistant API
api:
password: password"
ota:
password: "password"
spi:
clk_pin: 20
mosi_pin: 18
miso_pin: 19
display:
- platform: ili9341
model: TFT 2.4
cs_pin: 2
dc_pin: 3
reset_pin: 1
rotation: 0
lambda: | -
it.print ("Hello World!");
Hope some of you can guide me the right way, thought I have searched the internet for help.