You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,6 @@
1
1
# MicroOcppMongoose
2
2
Mongoose WebSocket adapter for MicroOcpp
3
3
4
-
**Formerly ArduinoOcppMongoose**: *see the statement on the former ArduinoOcpp [project site](https://github.com/matth-x/MicroOcpp)*
5
-
6
4
## Dependencies
7
5
8
6
The following projects must be available on the include path:
@@ -19,8 +17,6 @@ The setup is done if the following include statements work:
19
17
#include<MicroOcpp.h>
20
18
```
21
19
22
-
The last dependency is [base64-converter by Densaugeo](https://github.com/Densaugeo/base64_arduino), but it is already included in this repository. Thanks to [Densaugeo](https://github.com/Densaugeo) for providing it!
23
-
24
20
## License
25
21
26
22
This project is licensed under the GPL as it uses the [Mongoose Embedded Networking Library](https://github.com/cesanta/mongoose). If you have a proprietary license of Mongoose, then the [MIT License](https://github.com/matth-x/MicroOcpp/blob/master/LICENSE) applies.
constchar *ca_cert = nullptr, //zero-copy, the string must outlive this class and mg_mgr. Forwards this string to Mongoose as ssl_ca_cert (see https://github.com/cesanta/mongoose/blob/ab650ec5c99ceb52bb9dc59e8e8ec92a2724932b/mongoose.h#L4192)
@@ -82,14 +93,16 @@ class MOcppMongooseClient : public MicroOcpp::Connection {
82
93
//update WS configs. To apply the updates, call `reloadConfigs()` afterwards
83
94
voidsetBackendUrl(constchar *backend_url);
84
95
voidsetChargeBoxId(constchar *cb_id);
85
-
voidsetAuthKey(constchar *auth_key);
96
+
voidsetAuthKey(constchar *auth_key); //DEPRECATED: will be removed in a future release
97
+
voidsetAuthKey(constunsignedchar *auth_key, size_t len); //set the auth key in bytes-encoded format
86
98
voidsetCaCert(constchar *ca_cert); //forwards this string to Mongoose as ssl_ca_cert (see https://github.com/cesanta/mongoose/blob/ab650ec5c99ceb52bb9dc59e8e8ec92a2724932b/mongoose.h#L4192)
0 commit comments