I bumped into a problem:
Having a slider for the input number, is not very convenient in tablets or even worse, mobile phones.
So I have this slider (stepping at 0.1) but to fine tune the numbers I added two buttons to add or subtract points ( I am using automations for that). But it looks like it doesnt work as expected.
Thereās a version where you can change it into a up down number box that you can type into. Think the property is mode: box and you configure it on the input_number itself.
@CaptTom@petro and @argykaraz Great project and well worth tracking all this information.
As I am doing something not unlike this (manual entry of metrics) and your discussion has raised some very interesting issues that had me thinking of some possibilities I would like to askā¦is it possible to either have a spreadsheet automatically update to the new value of
ORā¦would it be possible to have the input_number update in responce to the change in value of the spreadsheet?
Either way would be useful for both this project and mine to be honest?
Wowā¦Imagineā¦Automated heating control using a log loader on the fireplace!
Itās doable I reckon!
UPDATE: @argykaraz do you monitor the water temperature close to the fire?
I think that would be very useful to track?
Cheers and Iāll be keeping up with this discussion for sure!
Yes, I tried box mode too.
Ok, here is the real problemā¦ Itās the wifeā¦ Sorry to say that but it is true.
Having box mode, she will have to click on the textbox, wait for the keypad to pop, type the exact number (she has to use the comma too!) and then click the back button for the keypad to hide, and then press the script button where it will add the number.
But having a slider mode, she has to drag the slider and just press + or - to adjust acordingly.
I dont mind using box mode for me, but for her that would be soooo user unfriendly.
Help me out here Petro! Please
I am now having another problem. I am exporting a csv with all the values that I want.
The thing is, that I will be writing values 2 times per day. Once when I start the fire and once I stop (probably at night), so I want to export the starting temperatures (at start) and total firewood weight (at the end).
When I am exporting, I noticed that the line is changing every time. Is it possible to add values on the same line of the csv? The cells I am adding are empty on the second export.
@wellsy The pump I am using to transfer the water from the tank to the radiators, has a thermometer in the tank. I was thinking to replace that thermometer with my own DIY and integrate it into HA. Not nowā¦ But sometime
But I dont see any reason to track the temperature inside the fireplace. Is there any particular reason to do that? Would it help?
The increments shouldnāt be automations, they should be scripts. And if youāre using a entity_button in lovelace, you donāt even need a script. Just use a single service call.
If you check the screenshot, you can see the number in the slider being 15.29999999999999 when it should be 15.3.
When I add one more point, it becomes 15.39999999999998
The same thing happens when I use the entity_button to call the service
Oh thatās just epsilon error. Only way to remove that on the card level. If you want, you can make a template sensor that fixes the issue but it wonāt be displayed in the UI the way you want it when using the built in cards. You should probably write up an issue to against lovelace.
According to this, I cant merge the two lines created. I have to do it manually.
Nevermind, I will get over it
Now, I want to have a trend sensor sampling the kitchen thermometer. I want to detect if the fireplace is warming the house or not. The purpose of this is to automatically turn off the āfireplace booleanā, so HA will know that the fireplace is off.
To elaborate, we usually feed some firewood before we go to bed, so the fireplace will stay on for a couple of hours. That means that the fireplace will turn off at sometime at night, so I cant really press a button in HA to change the state of the fireplace. It has to be automatically done.
So, I thought a trend sensor would do the job.
The problem is that the kitchen thermometer is having ups and downs:
How would I correctly configure the trend sensor? Or is maybe another way to know if the fireplace is on, or off? At this point, I would like to mention, that wiring the fireplace with temp sensors, is a no-go for now. Maybe in the future.
Sorry somehow missed your other question. I would spool all the data together until I get one line, then output with comma separated values.
As for trend, youād want to build the sensor just like the bottom example. You need to choose a gradient that you want to use. So, how many degrees is this going to drop over an hour? Take that number divide it by 3600 (number of seconds in an hour) and use that as the gradient. Then set your samples to the number of hours you want to use *3600.
I am using this project for over a month now and it looks like it works fine. I am not sure if it is completed yet, but time will tel.
I have a tablet near the fireplace, where I enter the weight of the firewood, and I have this button to add to the total firewood used for the day.
The problem is that sometimes this button is pressed twice accidentally and adds more firewood than it was supposed to add. Is there any solution to that? Maybe an undo button, or something like to make sure it wont add more than once per time?
For now, I have to enter the states and edit the value manually.