Quantcast
Channel: ESPHome - Home Assistant Community
Viewing all 1486 articles
Browse latest View live

Dfplayer connected to esp32-cam

$
0
0

Hope someone can help me. I have an esp32-cam connected to home assistant. I want to connect a dfplayer mini to the esp32-cam module. My question is - which pins can I use for the uart tx connection? I can’t get my yaml file below to work, so can only think I have used the wrong pin to send commands to the dfplayer. I know it plays the mp3 file by manually triggering it. My yaml code is

api:
  reboot_timeout: 0s
ota:

esp32_camera:
  external_clock:
    pin: GPIO0
    frequency: 20MHz
  i2c_pins:
    sda: GPIO26
    scl: GPIO27
  data_pins: [GPIO15, GPIO18, GPIO19, GPIO21, GPIO36, GPIO39, GPIO34, GPIO35 ]
  vsync_pin: GPIO25
  href_pin: GPIO23
  pixel_clock_pin: GPIO22
  power_down_pin: GPIO32
  resolution: 640X480
  name: camera.doorbell
# DFplayer configs
uart:
  tx_pin: GPIO15
  baud_rate: 9600
  
  on_press:
    then:
      - dfplayer.set_volume: 25
      - delay: 150ms
      - dfplayer.play: 1
      - switch.turn_on: led1

7 posts - 2 participants

Read full topic


ESPHome multiple adc sensors on ESP8266 dont work

$
0
0

Hello. I would like to measure voltage on A0 pin and also VCC battery voltage. If I program it in C++, it works. But following configuration only sends one mqtt sensor - I suspect that one definition overrides the other. Is there any other way how to define both sensors?

sensor:
  - platform: adc
    id: pracka2_vcc
    pin: VCC
    name: "Pracka2 VCC"
    retain: true
    update_interval: 30s
    accuracy_decimals: 2

  - platform: adc
    id: pracka2_pr
    pin: A0
    name: "Pracka2 Photo Resistor"
    retain: true
    update_interval: 30s
    accuracy_decimals: 3

2 posts - 2 participants

Read full topic

EspHome with nextion display

$
0
0

Hi
I am trying to make a project with a nextion display and esphome.I would like my d1 mini to change pages created on my nextion display, managed to make it change two pages with this code:

globals:
 - id: nextion_page_id            
   type: int
   restore_value: no
   initial_value: '0'
display:
  - platform: nextion
    id: display_nextion
    update_interval: 5s
    lambda: |-
      if (id(nextion_page_id) == 0) {  
      it.goto_page("main");
       auto time = id(sntp_time).now();
          it.set_component_text_printf("hour","%02d",time.hour);
          it.set_component_text_printf("minute","%02d",time.minute);
          it.set_component_text_printf("date","%02d",time.day_of_month);
          it.set_component_text_printf("month","%02d",time.month);
          it.set_component_text_printf("year","%02d",time.year);
else 
       it.goto_page("page1");
}
id(nextion_page_id) = !id(nextion_page_id);

Can somebody help me-being a total newbie –on how to change more than two pages?
I tried something like this but did not work.

display:
  - platform: nextion
    id: display_nextion
    update_interval: 5s
    lambda: |-
      if (id(nextion_page_id) == 0) {  
      it.goto_page("main");
       auto time = id(sntp_time).now();
          it.set_component_text_printf("hour","%02d",time.hour);
          it.set_component_text_printf("minute","%02d",time.minute);
          it.set_component_text_printf("date","%02d",time.day_of_month);
          it.set_component_text_printf("month","%02d",time.month);
          it.set_component_text_printf("year","%02d",time.year);
      }
      
      
  - platform: nextion
    id: display_nextion1
    update_interval: 5s
    lambda: |-
      if (id(nextion_page_id) == 1) {  
      it.goto_page("page1");     }
      
      
  - platform: nextion
    id: display_nextion2
    update_interval: 5s
    lambda: |-
      if (id(nextion_page_id) == 2) {  
      it.goto_page("page2");     }
       else 
       it.goto_page("page3"); 
      
  
      id(nextion_page_id) = !id(nextion_page_id);

1 post - 1 participant

Read full topic

Can load cells share the same SCK?

$
0
0

I’m planing on modernizing my meat curing chamber and have a wemos d1 mini that will control the fan based on humidity but I also wanted to add a bunch of loadcells to monitor the weightloss!

Question is, can a bunch of hx711 boards share the same sck? I’ve tried Googling and the responses are varying so I thought I’d ask here.
This is the plan right now:

1 post - 1 participant

Read full topic

Flashing a LilyGo T-ETH-POE

$
0
0

Has anyone successfully flashed one of the lilygo ethernet POE boards? Using their programmer board, and have tried various ESP flashing tools on several different machines.

I’ve successfully flashed other boards and the data light is flashing on the programmer board so I don’t think it’s a com port issue.
It feels like the board isn’t going into flash boot mode, despite me trying every combination of the boot and reset buttons.

1 post - 1 participant

Read full topic

ESPHome dropping off network every 30 seconds

$
0
0

Hey guys,

Ive migrated some devices from Tasmota to ESPhome after reading that its better integrated, better supported ect. And its just awful, keeps dropping off the network every 20s or so. These is the same for all three devices that are a mixture of different types (one magic home and two kogan filament bulbs)

Have I made a mistake here? should I switch back? Or is it a wrong setting?

esphome:
  name: right_bedside_lamp
  platform: ESP8266
  board: esp01_1m

wifi:
  ssid: "secret"
  password: "secret"

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Right Bedside Lamp"
    password: "secret"

captive_portal:

# Enable logging
logger:

# Enable Home Assistant API
api:

ota:

light:
  - platform: monochromatic
    name: "Right Bedside Lamp"
    output: output_component1


output:
  - platform: esp8266_pwm
    id: output_component1
    pin: GPIO14

3 posts - 2 participants

Read full topic

Esphome ct clamp 30A/1V

$
0
0

Hey everyone,
I am currently trying to get a CT Clamp (SCT013-030) with a Wemos D1 Mini to work. I have set up the following circuit on a breadboard to get some test results:


Unfortunately i am always getting 1,643V on A0. It doesn’t matter how much current is drawn from my test lamp.
Can anyone tell me where my thinking error is?

1 post - 1 participant

Read full topic

Add support Yeelight ESPHome

$
0
0

I’ve opened a topic under “Hardware” here at the forum where I am trying to open up the LAN control function that Yeelight suddenly has shut down on demand from Xiaomi. I do not have much coding experience but have been able to pull the FW from my bslamp2. Is it possible to add ESPHome support for this device?

1 post - 1 participant

Read full topic


Custom Light Component for multi led color temperatur mixing

$
0
0

Hello guys and girls,

i want to make a lamp that incorporates 4 leds for mixing a desired colortemperature.

  • 6500k
  • 1800k
  • amber (580nm)
  • red (660nm)
    this would make it possible to get the whole range of color temperatures (1000k->6500k) with high CRI.
    But i don’t know how to program that.
    I did already generate a lookup table that includes the needed power levels for each led for a given color temperature.
    I think i need a custom light component that reads the table and sets the outputs accordingly.
    However i don’t know how to use the provided software pwm (esp8266) with a custom light component.

Does anyone have a idea how to realize my idea?
I could also use 4x monochromatic lights+dummy light and make a automation in HA that reads the dummy light and sets the 4 monochromatic lights to a desired value, but this seems like a bad solution.

thanks

1 post - 1 participant

Read full topic

Cannot Get IR Transmitter to Work Properly

$
0
0

Hey Guys -

I’m trying to set up a NodeMCU which includes an IR Transmitter & Receiver, but having some difficulty. I got the receiver working just fine as hitting a button on my fan IR remote yielded the below log:

[13:46:57][D][remote.jvc:048]: Received JVC: data=0x0CF3
[13:46:57][D][remote.lg:053]: Received LG: data=0x0CF331CE, nbits=32
[13:46:57][D][remote.nec:068]: Received NEC: address=0x0CF3, command=0x31CE
[13:46:57][D][remote.pioneer:144]: Received Pioneer: rc_code_X=0x0C8C

When putting the below info into the yaml, uploading it, and triggering it via dashboard button; nothing happens, though.

remote_transmitter:
  pin: D0
  # Infrared remotes use a 50% carrier signal
  carrier_duty_percent: 50%

switch:
  - platform: template
name: Tower Fan - Power
turn_on_action:
  - remote_transmitter.transmit_nec:
  address: 0x0CF3
  command: 0x31CE
  - platform: template
name: Tower Fan - Power2
turn_on_action:
  - remote_transmitter.transmit_jvc:
  data: 0x0CF3

As you can see, I tried both the NEC & JVC codes assigned to different templates for testing, but neither worked.

I also tried facing the IR transmitter & Receiver to each other, then triggering. Logging yielded the below in the log when I actually expected to see what was logged with the initial capture from the remote…

[13:51:39][D][remote_transmitter:066]: Sending remote code...
[13:51:39][D][remote.raw:041]: Received Raw: 229

Shouldn’t the above match the output the receiver displays when original remote is read?

Hardware wise, I have a 100ohm resistor between the IR LED’s anode and of course ground going to ground of the NodeMCU. Although I I couldn’t see the IR LED with my phone camera (even briefly) when triggered, I can see it when I connect the resistor to 5V. To ensure that something was coming across D0, I replaced the IR LED with a standard blue one which did briefly light when triggered. Aside from this, I’ve tried a couple different resistors, powering the NodeMCU via 5V battery instead of USB, + verified its not a range issue.

The IR LEDs are rated 1-1.5V and are linked here.

I’m at a loss. Any suggestions? Thanks!

1 post - 1 participant

Read full topic

ESPHome Custom Truth-Sentry II Window Opener

$
0
0

Hi There,

I have four windows that have Truth’s Sentry II Window Opener. I’m trying to integrate them into Home Assistant with ESP-Home and use a NodeMCU.

This is the manual/PDF for Sentry II

Page #17 shows wiring diagram for Open/Close using HPI contact closures.

I’m not a pro, but my understanding is maybe I can use relays controlled by a ESPHOME to open/close? 12V Relay

What I’m struggling with is the Open/Close status. It says the status is reported as a relay and uses 120V 0.5 A On Page #23

Status output function:
• The status output functions as a relay. When the output is
closed (relay contacts closed), the window is fully closed. When
the output is open (relay contacts open), the window is not fully
closed.
• Feedback output (contact closure) maximum ratings:
Rated Load: 0.50 A at 125VAC, 1 A at 24VDC
Minimum Load: 1mA, 5VDC
Max. operating voltage: 125 VAC, 60 VDC
Max. operating current: 1A
Max. switching capacity: 62.50 VA, 30W

How can I use ESPHome/NodeMCU to detect this. Would 120V not fry the device?

TL:DR Looking for confirmation on the Open/Close using 12V relay, as well looking for solutions to monitor open/close status

Thanks

2 posts - 2 participants

Read full topic

ESPhome - Fast LED (ws2812b) Percentage effect

$
0
0

Hellow friends
Thanks for hearing my problem, please give me the solution for the LED Effect

First: I´m very new to HA, and I have no experience in programming. But I like to think I´m slowly improving. Anyways, please keep any answers as simple as possible.

I want LED indication for my water level in the tank. my wifi is not really good with HA, she wants to check the water level. so I want to WS2812b led to show the water level.

WS2812b LED is connected with D1 mini (through ESPhome )

Here is the program in D1 Mini
ESPHome

esphome:
  name: hall_led_notification
  platform: ESP8266
  board: d1_mini

wifi:
  ssid: "xxxxx"
  password: "xxxxx"
  manual_ip:
    static_ip: 192.168.1.9
    gateway: 192.168.1.1
    subnet: 255.255.255.0
    dns1: 192.168.1.1
    dns2: 192.168.1.1

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Hall Led Notifications "
    password: "b122PIdkhceR"

captive_portal:

# Enable logging
logger:

# Enable Home Assistant API
api:
  password: "xxxxx"

ota:
  password: "xxxxx"

sensor:
  - platform: wifi_signal
    name: "WiFi Signal Hall LED Notification"
    update_interval: 60s
    id: esp32s_buzzer_wifi
    
light:
  - platform: fastled_clockless
    chipset: WS2812b
    pin: D4
    num_leds: 115
    rgb_order: GRB
    name: "Hall LED Notification"
    effects:
      # Use default parameters:
      - addressable_rainbow:
      - addressable_scan:
      - addressable_twinkle:
      - addressable_random_twinkle:

Here is how I converted my ultrasonic Sensor value to a percentage using Template

HA Template

Sensor:
  - platform: template
    sensors:
      percentage:
        friendly_name: "water_level_in_percentage"
        unit_of_measurement: '%'
        value_template: >
          {{"{:.1f}".format((0 - states('sensor.sensor.ultrasonic_sensor')|float) / -1.5) }} 

I want WS2812b led to show the water level by this value “water_level_in_percentage”

1 post - 1 participant

Read full topic

How do I test warm / cold white settings?

$
0
0

I’ve converted my Zemismart moonlamp to esphome, and it works very nicely.
But I’ve just been told that I’ve accidently swapped cold and warn GPIO on it.
How do I test if it’s correct, or I have swapped it?
I have three LED’s, cold, warm and rgb, they are setup like these outputs:

    warm_white: output_warm_white
    cold_white: output_cold_white
    warm_white_color_temperature: 2700 K
    cold_white_color_temperature: 6000 K

So it’s easy for me to fix it, but how do I test if the cold and warm are the right GPIO’s?

2 posts - 1 participant

Read full topic

Inaccurate ADC readings due to fluctuating mains voltage

$
0
0

Hey!

I work on an indoor Hemp grow and have been having issues with my water tank level sensor getting inaccurate readings. After debugging the issue for a while I finally found the issue but I don’t know how to fix it yet. I am hoping someone here will be able to help me out.

The tank level sensor I am using is the AquaPlumb from Vegetronix. This device gets calibrated for the “no water” and “full water” levels and outputs a voltage from 0v (empty) to 3v (full). I already found the ADC on the esp8266 to be rather inaccurate so I order the ADS1115 to try and fix this issue and it actually did make things far more stable. The problem is that we are pulling hundreds of amps with our grow lights and when they turn on/off it causes my voltage readings to fluctuate quite a ridiculous amount (the tank will read empty because it is and the lights will all turn off causing the voltage to spike on the mains which then makes the sensor read “full tank” and vice versa when the power goes off).

So how can I combat this? It seems my transformer output moves with the input voltage (which totally makes sense) but I need a stable 5v reference for my ADC. I thought that possibly using a 120vac to 12vdc transformer then using a buck-converter or linear voltage regulator to take that 12v down to 5v but I am just curious if this will actually work. I did try moving the sensor to an independent power supply and tied the grounds together for reference and still had issues.

Esphome code:

i2c:
  sda: D2
  scl: D1
  scan: True
  id: bus_a

sensor:
  - platform: ads1115
    multiplexer: 'A0_GND'
    gain: 6.144 
    name: "Water Tank One Voltage"
    id: water_tank_one_voltage
    update_interval: 1s
    accuracy_decimals: 5
    filters:
      - sliding_window_moving_average:
          window_size: 60
          send_every: 60
  - platform: template
    name: "Water Tank One Level"
    lambda: !lambda return id(water_tank_one_voltage).state;
    update_interval: 60s
    accuracy_decimals: 0
    unit_of_measurement: "gallon"
    filters:
      - calibrate_linear:
          - 0.0 -> 0.0
          - 3.0 -> 2600.0
  - platform: template
    name: "Water Tank One Percent"
    lambda: !lambda return id(water_tank_one_voltage).state;
    update_interval: 60s
    accuracy_decimals: 2
    unit_of_measurement: "%"
    filters:
      - calibrate_linear:
          - 0.0 -> 0.0
          - 3.0 -> 100.0
  - platform: adc
    pin: VCC
    name: "Water Tank One VCC Voltage"

Any help is greatly appreciated :slight_smile:

5 posts - 2 participants

Read full topic

Esphome and momentary switch that have to run only once

$
0
0

Hi all,
i ask your help.
I have a momentary switch and a button for call it

binary_sensor:
 #Pulsante 
  - platform: gpio
    name: "${device} IN2"
    id: "IN2"
    pin:
      number: GPIO39
      inverted: True
    internal: True
    on_press:
      - switch.turn_on: PortaBlindata

switch:
  #Tiro
  - platform: gpio
    name: "${device} OU6"
    id: "OU6"
    pin: GPIO14
    internal: True
  #Momentary Switch per Tiro porta blindata
  - platform: template
    id: "PortaBlindata"
    name: "PortaBlindata"
    internal: True
    turn_on_action:
    - switch.turn_on: OU6
    - delay: 1500ms
    - switch.turn_off: OU6

how can I make sure that there are no 2 overlapping activations of the switch.turn_on: PortaBlindata call?

I wish it was not possible to activate the momentary switch twice until it has finished all its execution

1 post - 1 participant

Read full topic


How to use a neopixel led as notification

$
0
0

hi all,

i have one neopixel led mounted in my extractor hood in the kitchen,
i want it to be, red, green, blinking red, etc etc AND able to call up these state’s when various thing happen in the house (other nodes)
I came up with this workaround to get the state’s, but unable to give them an ID.
I thought giving the different state’s an ID then I would be able to make some services.
ans also I think it should be much easier to get a desired state, now I tweaked the “strobe” function…

‘’’
light:

  • platform: neopixelbus
    type: GRB
    pin: GPIO3
    num_leds: 1
    name: “NeoPixel Light_afzuiger”
    effects:

    • strobe:
      name: “Red”
      colors:
      - state: True
      brightness: 100%
      red: 100%
      green: 0%
      blue: 0%
      duration: 9000ms
      - state: false
      duration: 0ms
    • strobe:
      name: “Red Strobe”
      colors:
      - state: True
      brightness: 100%
      red: 100%
      green: 0%
      blue: 0%
      duration: 200ms
      - state: false
      duration: 400ms
    • strobe:
      name: Yellow Strobe
      colors:
      - state: True
      brightness: 100%
      red: 100%
      green: 50%
      blue: 0%
      duration: 200ms
      - state: False
      duration: 400ms
    • strobe:
      name: Yellow
      colors:
      - state: True
      brightness: 100%
      red: 100%
      green: 50%
      blue: 0%
      duration: 9000ms
      - state: False
      duration: 0ms
    • strobe:
      name: Green Strobe
      colors:
      - state: True
      brightness: 100%
      red: 0%
      green: 100%
      blue: 0%
      duration: 200ms
      - state: False
      duration: 400ms
    • strobe:
      name: Green
      colors:
      - state: True
      brightness: 100%
      red: 0%
      green: 100%
      blue: 0%
      duration: 9000ms
      - state: False
      duration: 0ms
    • addressable_color_wipe:
      name: Green Pulse
      colors:
      - red: 0%
      green: 100%
      blue: 0%
      num_leds: 1
      - red: 0%
      green: 0%
      blue: 0%
      num_leds: 1
      add_led_interval: 1000ms
      reverse: False
  • platform: monochromatic
    name: “Kooklicht”
    id: kooklicht
    output: output_component1

output:

  • platform: esp8266_pwm
    id: output_component1
    pin: D5

‘’’

1 post - 1 participant

Read full topic

How to create a switch disconnected from the relay and stil report the status to HA

$
0
0

So I want to use a smart switch to control some smart lights which means that I don’t actually want to have the relay turn on of off based on the clicking of the switch.

I managed to find a configuration for my switch here:

and I actually managed to get it working by removing the ‘- switch.turn_off: relay’ line from the template platform but I would like to try to simplify the config file so I’m wondering whether there’s an easier way to do what I’m looking for.

Basically, I just need the button press to report the status of the switch (on or off) to home assistant. I guess I need to use the LED on the switch to determine whether it’s on or off or does it make more sense to just toggle the state in HA with each press of the button.

I’m looking at the basic switch integration but it looks like I have to specify the “platform” and I can’t have it be just a toggle reporting it’s state to HA.

I would also love to setup a fall back on the switch whereby it operates as a normal relay toggle if the switch can’t connect to HA (either because it’s offline or because the wifi is down). Is that even possible?

1 post - 1 participant

Read full topic

Arduino Mega + Nodemcu to home assistant?

$
0
0

Hi everyone. I am new to this forum and to using microcontrollers. I have home assistant running on virtualbox and also have an arduino mega with a couple of sensors connected to it. I was able to get readings from all the sensors on serial monitor in arduino ide. Now I would like to get the readings on arduino to home assistant.
Right now I only have the arduino mega and a nodemcu, is there any way I could use the nodemcu to send readings from serial monitor to home assistant? I looked at some tutorials on connecting arduino with nodemcu via serial communication but none of them were showing how to send the data to home assistant. Is there any way of doing this with what I have? If it is too complicated I would prefer buying something to make it easier :slight_smile :slight_smile:

Thanks

2 posts - 2 participants

Read full topic

Esphome on esp8266-07s

$
0
0

Hey everyone,

i currently trying to flash a custom fw on a growatt Wifi stick (Link) to get rid of the growatt cloud and have up to date information’s in HA.
The construction of the stick is rather simple:
An ESP8266 07s connected to a I2C real time clock, a USB Serial converter, some led’s and a voltage regulator from 5V to 3.3V.

Real time clock: NXP 8563T
USB Serial converter: xr21v1410

After removing two 0Ohm resistors between the ESP TX/RX Lines and the USB Serial converter I was able to dump the original FW and could Upload a small test FW from esphome:

esphome:
  name: "test"
  platform: ESP8266
  board: esp07

logger:
  level: DEBUG
  baud_rate: 9600

wifi:
  ssid: MY-WIFI-SSID
  password:  MY-WIFI-PASSWORD

ota:
  password: "test1234"

The upload and hash verifying went thru successfully. But after a reset of the ESP nothing happened.
On the serial console on baud rate 38400 I saw the following message:

ets Jan 8 2013,rst cause:2, boot mode:(3,0)

load 0x4010f000, len 3584, room 16
tail 0
chksum 0xb0
csum 0xb0
v2843a5ac
~ld
sy
ets Jan 8 2013,rst cause:2, boot mode:(3,6)

load 0x4010f000, len 3584, room 16
tail 0
chksum 0xb0
csum 0xb0
v2843a5ac
~ld
sy
ets Jan 8 2013,rst cause:2, boot mode:(3,6)

load 0x4010f000, len 3584, room 16
tail 0
chksum 0xb0
csum 0xb0
v2843a5ac
~ld
sy

mpfff… It seems that the bootloader can not find the start address so I flashed back the original FW and saw the following on boot:

ets Jan 8 2013,rst cause:2, boot mode:(3,0)

load 0x40100000, len 2408, room 16
tail 8
chksum 0xe5
load 0x3ffe8000, len 776, room 0
tail 8
chksum 0x84
load 0x3ffe8310, len 632, room 0
tail 8
chksum 0xd8
csum 0xd8

2nd boot version : 1.6
SPI Speed : 40MHz
SPI Mode : QIO
SPI Flash Size & Map: 32Mbit(512KB+512KB)
jump to run user1 @ 1000

OS SDK ver: 2.0.0(e271380) compiled @ Mar 30 2018 18:54:06

So here everything is fine. The first thing that what caught my eye is the SPI Mode and Flash Size.
I tried to override these setting with the following configurations (As described in the documentation: here and here):

esphome:
  name: "test"
  platform: ESP8266
  board: esp07
  platformio_options:
    board_build.flash_mode: qio
    board_build.f_flash: 40000000L

logger:
  level: DEBUG
  baud_rate: 9600

wifi:
  ssid: MY-WIFI-SSID
  password:  MY-WIFI-PASSWORD

ota:
  password: "test1234"

after compiling and flashing it I got the error message

system param error, use last saved param!

on boot.

After some googleing around I have found this (now closed) Issue: https://github.com/esphome/issues/issues/1638
In this issue it is stated that the ESP8266 07 has 1MB of flash and the ESP8266 07S 4MB of flash and i am using the 07 in my configuration. So something is odd there.

After listing all boards with the prefix “esp07” in the ~/.platformio/platforms/espressif8266@2.6.2/boards/ directory I have only found the 4MB version:

6171003 4 -rw-r–r-- 1 tom tom 781 Feb 3 22:00 /home/tom/.platformio/platforms/espressif8266@2.6.2/boards/esp07.json

Ok then. It seems that i am not running the bleeding edge version of PlatformIO. Fine for me. Everything seems to match. Even “esptool.py flash_id” reports back:

Manufacturer: 20
Device: 4016
Detected flash size: 4MB

But why can’t I get the esp to boot and why does the status message of the original FW say

SPI Flash Size & Map: 32Mbit(512KB+512KB)

??

The Datasheet of the flash claims that it as a size of 64MB (Link).

Do anybody has an idea was going on here?

1 post - 1 participant

Read full topic

History chart or graph for hardware display in ESPHome

$
0
0

I love using ESPHome and I’ve used it with hardware displays (like the ssd1306). It works very well for multiple pages and using fonts/text. I really want to make a chart of temperature history (like history graph in Home Assistant but on a hardware display), to show like last 12 hours or something. I’ve looked though the docs and it doesn’t seem to be supported. Does anyone know how to go about doing that with ESPHome?

1 post - 1 participant

Read full topic

Viewing all 1486 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>