-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/376 ocpp 201 california pricing requirements tariff and cost (#…
…768) * Implement california pricing requirements for OCPP 1.6. Signed-off-by: Maaike Zijderveld, iolar <[email protected]> Signed-off-by: Kai-Uwe Hermann <[email protected]> Co-authored-by: Kai-Uwe Hermann <[email protected]>
- Loading branch information
1 parent
0e86d84
commit da0da54
Showing
28 changed files
with
1,296 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ workspace.yaml | |
.vscode/ | ||
/bazel-* | ||
/modules/target | ||
CMakeLists.txt.user | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
description: >- | ||
A module that implements this interface should be able to: | ||
- store (add, remove, change) and retrieve predefined messages | ||
- show messages on a display | ||
When a display message contains a session id, the display message must be removed once the session has ended. | ||
cmds: | ||
set_display_message: | ||
description: >- | ||
Command to set or replace a display message. | ||
arguments: | ||
request: | ||
description: >- | ||
Request to set a display message | ||
type: array | ||
items: | ||
description: The display messages to set | ||
type: object | ||
$ref: /display_message#/DisplayMessage | ||
result: | ||
description: >- | ||
Response to the set display message request. | ||
type: object | ||
$ref: /display_message#/SetDisplayMessageResponse | ||
get_display_messages: | ||
description: Command to get one or more display messages. | ||
arguments: | ||
request: | ||
description: The request for display messages | ||
type: object | ||
$ref: /display_message#/GetDisplayMessageRequest | ||
result: | ||
description: The display messages or an empty array if there are none | ||
type: object | ||
$ref: /display_message#/GetDisplayMessageResponse | ||
clear_display_message: | ||
description: Command to remove a display message | ||
arguments: | ||
request: | ||
description: The request to clear a message | ||
type: object | ||
$ref: /display_message#/ClearDisplayMessageRequest | ||
result: | ||
description: Response on the clear message request | ||
type: object | ||
$ref: /display_message#/ClearDisplayMessageResponse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.