lincomatic / open_evse

Firmware for Open EVSE
GNU General Public License v3.0
114 stars 163 forks source link

Is it possible to run OpenEVSE without an LCD display? #98

Closed DeltaVetal26 closed 5 years ago

DeltaVetal26 commented 5 years ago

Hi, lincomatic!

I want to use OpenEVSE firmware without using an LCD screen. As far as I understand, if you simply disconnect the screen from the controller, charging will not start at all. Is there any way around this? All data on the state of charge I get through Wifi (ESP8266). I tried to disable I2CLCD and other screen settings in open_evse.h, but this leads to errors.

lincomatic commented 5 years ago

Sorry, there have been tons of changes in the code over the years, and I can't possibly maintain every possible configuration. I just fixed the compile error in the development branch when RGBLCD is undefined. see if that works for you. also, look for "obsolete LED pin" in open_evse.h .. if you properly hook up green & red status LED's and properly set the defines, they can be used for visual status of the EVSE. Also, a BLUE led used to be connected to the charging pin in older revs of the hardware

DeltaVetal26 commented 5 years ago

@lincomatic

That helped! Thank you very much!

lincomatic commented 5 years ago

You're welcome!

glynhudson commented 5 years ago

I can confirm that open_evse can be made to run without an LCD. I've been running one for a while now using an RGB LED as status.

On Fri, 1 Feb 2019 at 03:44, lincomatic notifications@github.com wrote:

You're welcome!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lincomatic/open_evse/issues/98#issuecomment-459595351, or mute the thread https://github.com/notifications/unsubscribe-auth/AAuUPH0-cR_jhAPCbHN7yt1meuL_Gzqvks5vI7gOgaJpZM4aYg3M .

-- Glyn Hudson

https://openenergymonitor.org http://zerocarbonadventures.co.uk

martiinezz commented 5 years ago

Glyn - did you do any changes to the code? How did you connect RGB diode?

lincomatic commented 5 years ago

There are 2 ways to use RGB diodes. The OpenEVSE store carries RGB diodes that have an I2C interface and are drop in compatible. Another way is to find some free pins, and set GREEN_LED_REG and RED_LED_REG in open_evse.h. The blue channel goes to the charging pin.

martiinezz commented 5 years ago

Do you mean CHARGING_IDX as the charging pin?

lincomatic commented 5 years ago

Do you mean CHARGING_IDX as the charging pin?

Yes, the blue LED is driven by the charging pin

martiinezz commented 5 years ago

Thanks - will try that soon :)