-
Notifications
You must be signed in to change notification settings - Fork 118
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
Rfid and timer #167
Rfid and timer #167
Commits on Feb 11, 2021
-
Added RFID support and pause timer
Oliver Norin committedFeb 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 6124a1f - Browse repository at this point
Copy the full SHA 6124a1fView commit details
Commits on Feb 12, 2021
-
settings for RFID and sleep timer in gui
Oliver Norin committedFeb 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 829353d - Browse repository at this point
Copy the full SHA 829353dView commit details
Commits on Feb 15, 2021
-
Moved PN532 library to platform.ini
Oliver Norin committedFeb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 0585bac - Browse repository at this point
Copy the full SHA 0585bacView commit details -
Don't allow voltage to be set <= 0.0 via MQTT
Voltage is used by divert mode, as well as sent along to the OpenEVSE module for power calculations. Setting this to zero could result in a lot of issues. The divert code would see divide by zero happen, and the energy montoring code on the OpenEVSE module would result in the recorded energy usage being incorrect. While this shouldn't happen reguarly, I found myself in this situation by sending a null/zero-length message to the relevant topic that the ESP32 was listening on. Because there is no error checking in the float parsing code, a null value parsed to zero, which resulted in the voltage value being set to zero. An alternative here would be to reset the voltage to `DEFAULT_VOLTAGE` if a zero or invalid value was received. As written, this will simply do nothing and ignore the invalid/zero value.
Configuration menu - View commit details
-
Copy full SHA for 4dc4278 - Browse repository at this point
Copy the full SHA 4dc4278View commit details -
Restrict voltage via MQTT to a known sane range
A value between 60 and 300 volts, while being a generous range, should prevent issues where the value read from MQTT is read as a `0` or erroneously specified in millivolts.
Configuration menu - View commit details
-
Copy full SHA for c334b5c - Browse repository at this point
Copy the full SHA c334b5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2547b50 - Browse repository at this point
Copy the full SHA 2547b50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 334553b - Browse repository at this point
Copy the full SHA 334553bView commit details -
Added RFID support and pause timer
Oliver Norin committedFeb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for b9edf7f - Browse repository at this point
Copy the full SHA b9edf7fView commit details -
Moved PN532 library to platform.ini
Oliver Norin committedFeb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 68f4e6c - Browse repository at this point
Copy the full SHA 68f4e6cView commit details
Commits on Feb 16, 2021
-
Oliver Norin committed
Feb 16, 2021 Configuration menu - View commit details
-
Copy full SHA for b06d727 - Browse repository at this point
Copy the full SHA b06d727View commit details -
Merge branch 'rfid_and_timer' of github.com:notima/ESP32_WiFi_V3.x in…
…to rfid_and_timer
Oliver Norin committedFeb 16, 2021 Configuration menu - View commit details
-
Copy full SHA for fd54b0c - Browse repository at this point
Copy the full SHA fd54b0cView commit details -
Oliver Norin committed
Feb 16, 2021 Configuration menu - View commit details
-
Copy full SHA for 9be12bc - Browse repository at this point
Copy the full SHA 9be12bcView commit details
Commits on Feb 17, 2021
-
wake up PN532 every 30 seconds
Oliver Norin committedFeb 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 1b278ab - Browse repository at this point
Copy the full SHA 1b278abView commit details -
server endpoints for adding rfid tags
Oliver Norin committedFeb 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 61cb664 - Browse repository at this point
Copy the full SHA 61cb664View commit details -
Oliver Norin committed
Feb 17, 2021 Configuration menu - View commit details
-
Copy full SHA for a0b669c - Browse repository at this point
Copy the full SHA a0b669cView commit details
Commits on Feb 18, 2021
-
Wire library initiated in main
Oliver Norin committedFeb 18, 2021 Configuration menu - View commit details
-
Copy full SHA for c8db15d - Browse repository at this point
Copy the full SHA c8db15dView commit details -
Merge pull request #2 from OpenEVSE/jeremypoulter/issue5
Jeremypoulter/issue5
Configuration menu - View commit details
-
Copy full SHA for 35ccdb0 - Browse repository at this point
Copy the full SHA 35ccdb0View commit details -
Merge branch 'jeremypoulter/issue5' into rfid_and_timer
Oliver Norin committedFeb 18, 2021 Configuration menu - View commit details
-
Copy full SHA for a97215c - Browse repository at this point
Copy the full SHA a97215cView commit details -
Oliver Norin committed
Feb 18, 2021 Configuration menu - View commit details
-
Copy full SHA for cd3ed56 - Browse repository at this point
Copy the full SHA cd3ed56View commit details -
Oliver Norin committed
Feb 18, 2021 Configuration menu - View commit details
-
Copy full SHA for e03e9f6 - Browse repository at this point
Copy the full SHA e03e9f6View commit details -
Using OpenEVSE api instead of rapiSender
Oliver Norin committedFeb 18, 2021 Configuration menu - View commit details
-
Copy full SHA for 597e9a0 - Browse repository at this point
Copy the full SHA 597e9a0View commit details
Commits on Mar 8, 2021
-
Don't allow voltage to be set <= 0.0 via MQTT
Voltage is used by divert mode, as well as sent along to the OpenEVSE module for power calculations. Setting this to zero could result in a lot of issues. The divert code would see divide by zero happen, and the energy montoring code on the OpenEVSE module would result in the recorded energy usage being incorrect. While this shouldn't happen reguarly, I found myself in this situation by sending a null/zero-length message to the relevant topic that the ESP32 was listening on. Because there is no error checking in the float parsing code, a null value parsed to zero, which resulted in the voltage value being set to zero. An alternative here would be to reset the voltage to `DEFAULT_VOLTAGE` if a zero or invalid value was received. As written, this will simply do nothing and ignore the invalid/zero value.
Configuration menu - View commit details
-
Copy full SHA for 4fd6112 - Browse repository at this point
Copy the full SHA 4fd6112View commit details -
Restrict voltage via MQTT to a known sane range
A value between 60 and 300 volts, while being a generous range, should prevent issues where the value read from MQTT is read as a `0` or erroneously specified in millivolts.
Configuration menu - View commit details
-
Copy full SHA for d5963f9 - Browse repository at this point
Copy the full SHA d5963f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e529d1 - Browse repository at this point
Copy the full SHA 2e529d1View commit details -
Added RFID support and pause timer
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 991c5ce - Browse repository at this point
Copy the full SHA 991c5ceView commit details -
Moved PN532 library to platform.ini
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for cb83f99 - Browse repository at this point
Copy the full SHA cb83f99View commit details -
Oliver Norin committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for d5bf8c9 - Browse repository at this point
Copy the full SHA d5bf8c9View commit details -
Added RFID support and pause timer
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for d92e04d - Browse repository at this point
Copy the full SHA d92e04dView commit details -
Moved PN532 library to platform.ini
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 3465f59 - Browse repository at this point
Copy the full SHA 3465f59View commit details -
Oliver Norin committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 24bdd82 - Browse repository at this point
Copy the full SHA 24bdd82View commit details -
wake up PN532 every 30 seconds
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for fcd0893 - Browse repository at this point
Copy the full SHA fcd0893View commit details -
server endpoints for adding rfid tags
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for d9993b2 - Browse repository at this point
Copy the full SHA d9993b2View commit details -
Oliver Norin committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 10ba912 - Browse repository at this point
Copy the full SHA 10ba912View commit details -
Wire library initiated in main
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for e3278cd - Browse repository at this point
Copy the full SHA e3278cdView commit details -
Oliver Norin committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for fec1fbc - Browse repository at this point
Copy the full SHA fec1fbcView commit details -
Oliver Norin committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 45b4043 - Browse repository at this point
Copy the full SHA 45b4043View commit details -
Using OpenEVSE api instead of rapiSender
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for a4c65da - Browse repository at this point
Copy the full SHA a4c65daView commit details -
Merge branch 'rfid_and_timer' of github.com:notima/ESP32_WiFi_V3.x in…
…to rfid_and_timer
Oliver Norin committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 91ce0ef - Browse repository at this point
Copy the full SHA 91ce0efView commit details
Commits on Mar 12, 2021
-
Better authentication mechanism
Presenting a tag will enter an authenticated state that can be cancelled by presenting the same tag again
Oliver Norin committedMar 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 082820a - Browse repository at this point
Copy the full SHA 082820aView commit details -
The currently authenticated tag is sent over mqtt
Oliver Norin committedMar 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 10cec03 - Browse repository at this point
Copy the full SHA 10cec03View commit details