Skip to content

Commit fc34e11

Browse files
committed
clean up
1 parent 0ae20b6 commit fc34e11

7 files changed

Lines changed: 14 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ If compiled with the Arduino integration:
6767

6868
- [Links2004/arduinoWebSockets](https://github.com/Links2004/arduinoWebSockets) (version `2.4.1`)
6969

70-
In case you use PlatformIO, you can copy all dependencies from `platformio.ini` into your own configuration file. Alternatively, you can install the full library with dependencies by adding `matth-x/ArduinoOcpp@0.3.0` in the PIO library manager.
70+
In case you use PlatformIO, you can copy all dependencies from `platformio.ini` into your own configuration file. Alternatively, you can install the full library with dependencies by adding `matth-x/MicroOcpp@1.0.0` in the PIO library manager.
7171

7272
## OCPP 2.0.1 and ISO 15118
7373

docs/img/favicon.ico

2.3 KB
Binary file not shown.

docs/img/favicon.png

-9.46 KB
Binary file not shown.

library.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "MicroOcpp",
33
"version": "0.3.0",
4-
"description": "OCPP 1.6 Client for the ESP8266 and ESP32",
5-
"keywords": "OCPP, 1.6, OCPP 1.6, Smart Energy, Smart Charging, client, ESP8266, ESP32, Arduino, EVSE, Charge Point",
4+
"description": "OCPP 1.6 Client for microcontrollers",
5+
"keywords": "OCPP, 1.6, OCPP 1.6, Smart Energy, Smart Charging, client, ESP8266, ESP32, Arduino, esp-idf, EVSE, Charge Point",
66
"repository":
77
{
88
"type": "git",
@@ -12,12 +12,12 @@
1212
[
1313
{
1414
"name": "Matthias Akstaller",
15-
"url": "https://www.arduino-ocpp.com",
15+
"url": "https://www.micro-ocpp.com",
1616
"maintainer": true
1717
}
1818
],
1919
"license": "MIT",
20-
"homepage": "https://www.arduino-ocpp.com",
20+
"homepage": "https://www.micro-ocpp.com",
2121
"dependencies": [
2222
{
2323
"owner": "bblanchon",
@@ -30,7 +30,7 @@
3030
"version": "2.4.1"
3131
}
3232
],
33-
"frameworks": "arduino",
33+
"frameworks": "arduino,espidf",
3434
"platforms": "espressif8266, espressif32",
3535

3636
"export": {
@@ -44,7 +44,8 @@
4444
"README.md",
4545
"CMakeLists.txt",
4646
"docs/*",
47-
"LICENSE"
47+
"LICENSE",
48+
"CHANGELOG.md"
4849
]
4950
},
5051

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ theme:
4242
font:
4343
text: Roboto
4444
code: Roboto Mono
45-
favicon: img/favicon.png
45+
favicon: img/favicon.ico
4646
icon:
4747
logo: logo
4848

platformio.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ build_flags =
3434
-DMO_TRAFFIC_OUT ; print the OCPP communication to the serial monitor
3535
board_build.partitions = min_spiffs.csv
3636
upload_speed = 921600
37+
monitor_filters =
38+
esp32_exception_decoder

src/MicroOcpp.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ void mocpp_initialize(Connection& connection, const char *bootNotificationCreden
290290

291291
configuration_load();
292292

293-
mocppVersion->setString(MO_VERSION);
293+
if (mocppVersion) {
294+
mocppVersion->setString(MO_VERSION);
295+
}
294296
MO_DBG_INFO("initialized MicroOcpp v" MO_VERSION);
295297
}
296298

0 commit comments

Comments
 (0)