Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LCD Energy Savings (backlight off) #8

Open
chris1howell opened this issue Dec 15, 2018 · 14 comments
Open

LCD Energy Savings (backlight off) #8

chris1howell opened this issue Dec 15, 2018 · 14 comments
Assignees
Labels
enhancement New feature or request
Projects

Comments

@chris1howell
Copy link
Member

Add basic energy savings.

Add ability to turn of LCD back light after x minutes of inactivity with the RAPI command $FB 0.

back light will turn back on automatically with any state change.

@fiveangle
Copy link

fiveangle commented Dec 16, 2018

If you're in there tinkering with storing energy cost anyway, it would be really great to report accumulated cost for the current period, total cost for last period, and day of the month the period starts.

TOU electrical rates that everyone in California is on make this slightly more complicated, which is why I haven't tackled this myself.

@jeremypoulter jeremypoulter transferred this issue from OpenEVSE/ESP8266_WiFi_v2.x Aug 16, 2019
@jeremypoulter jeremypoulter added this to To do in v3.0 Aug 16, 2019
@jeremypoulter jeremypoulter added this to the v3.0.0 milestone Aug 16, 2019
@jeremypoulter jeremypoulter removed this from To do in v3.0 Nov 30, 2019
@jeremypoulter jeremypoulter added this to To do in v4.2 Nov 30, 2019
@jeremypoulter jeremypoulter removed this from the v3.0.0 milestone Dec 17, 2019
@glynhudson glynhudson changed the title Add Energy Savings LCD Energy Savings (backlight off) Feb 18, 2020
@glynhudson glynhudson removed this from To do in v4.2 Jun 10, 2020
@glynhudson glynhudson added this to To do in v4.1 via automation Jun 10, 2020
@glynhudson glynhudson added the enhancement New feature or request label Jun 18, 2020
@brettski74
Copy link

While I doubt the energy savings will be much - probably not more than a few cents a month. The bigger issue is a brightly lit screen drawing attention to an outdoor installation at night.

@temperodave
Copy link

I agree the LED off while not actively charging would be nice to reduce light pollution and drawing attention to the installation.

@jeremypoulter jeremypoulter removed this from To do in v4.1 Dec 30, 2020
@jeremypoulter jeremypoulter added this to To do in v4 via automation Dec 30, 2020
@jeremypoulter jeremypoulter moved this from To do to In progress in v4 Dec 31, 2020
@jeremypoulter jeremypoulter moved this from In progress to To do in v4 Feb 28, 2021
@jeremypoulter jeremypoulter removed this from To do in v4 Jul 23, 2021
@jeremypoulter jeremypoulter added this to To do in v4.2 via automation Jul 23, 2021
@Tifaifai
Copy link

I also agree the LED off. On the other hand, as for the smoke detectors, two LCD or LED flashing per minute will allow to know the status of the openevse when the LCD is off. (No button to activate the openevse)

@zorkerz
Copy link

zorkerz commented Jul 25, 2022

Very much want this feature as well. Currently I unplug my openevse and stop charging to watch stars at night.

@alandpearson
Copy link

Hi @jeremypoulter

I've wanted this feature for quite a while, but see it has been open for 4 years.
Is this complex to add ? You've already added the dimming feature, and I was thinking if dim could go to zero (backlight off) that would be a good enough for now and the automatic backlight-on-status-change is a nice to have.

Thank you
Alan

@jeremypoulter
Copy link
Collaborator

The dimming is for the LEDs, but we can however set the backlight off. The problem is more when to turn it back on, especially for units with no button.

That being said this is probably going to be the next issue to work on.

@alandpearson
Copy link

alandpearson commented Mar 27, 2023 via email

@alandpearson
Copy link

alandpearson commented Mar 27, 2023 via email

@alandpearson
Copy link

Hi Jermey,

I've create a pull request OpenEVSE/open_evse#16 for you to have a look at.
I think it should work, and implement a timeout for the backlight.
I'm not able to test it though (I only have a production EVSE) and it does need some work.

It would probably make sense to be able to disable this, by say setting the timeout to 0.

From my simplistic analysing of the code, some things are obvious

  1. The backlight setting / colour appears to be refreshed every time the LCD is, necessitating remembering the last time its state was changed (not refreshed)
  2. J1772 would appear to set the backlight state every time there is a state change, which would appear to do what we want ?

Let me know what you think.

@jeremypoulter
Copy link
Collaborator

I will take a look, but probably it would be better for the LCD backlight to be controlled by the WiFi firmware, that is where the majority of the logic is now. One thing to bear in mind is that the backlight should remain on in error conditions.

@alandpearson
Copy link

I think there is a lot of confusion between the LED and LCD. Looks like J1772 seems to control it for the most part, which would seem sensible to me (it knows what condition its in and backlight reflects that)>
I think it will stay on in error conditions as the update logic essentially seems to stop doing other updates in an error. Needs tested.

@jeremypoulter
Copy link
Collaborator

Definitely a lot of confusion between the LCD and LED, but not in this case ;-) (although the LED probably does need to do the same) the vast majority of the LCD control at this point comes from the WiFi module via RAPI commands and probably will move the LCD to be directly connected to the WiFi module at some point. It also is a lot harder to update the EVSE firmware we try not to implement new features on the EVSE board.

@alandpearson
Copy link

That's a good point on the difficulty of updating it. It would be great if ESP32 could flash the AVR (like esplink) but the amount of code and complexity to make that so would be daunting, and likely not even have the room to do so.

I had in an other thread mooted the idea of moving the LCD control to the wifi board (to free up the i2c port), but looking at the code, it is a seriously heavy lift. I'm not sure if the EVSE can work without the wifi board, so having the LCD on openevse may need to stay if that is the case. I've no skin in the game, I just want the damn backlight off :)

FYI... because I haven't quite learnt the etiquette of branching quite yet, this pull request also includes the code to allow relays to work independently... you'll see in the other thread you're tagged in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
v4.2
  
To do
Development

No branches or pull requests

9 participants