├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── bug_report_vrm.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE-NOTES.md ├── VRM-BETA.md ├── doc └── img │ ├── api-access-token.png │ ├── api-bearer-token.png │ ├── costs-graph.png │ ├── dess-page.png │ ├── dynamic-ess-activation.png │ ├── dynamic-ess-flow.png │ ├── dynamic-ess.png │ ├── edit-panel.png │ ├── energy-graph.png │ ├── generate-access-token.png │ ├── import-example.png │ ├── import-fetch-dynamic-ess.gif │ ├── install-dynamic-ess.gif │ ├── node-red-dess-disable.png │ ├── node-red-dess-tab.png │ ├── overview-graph.png │ ├── price-graph.png │ ├── schedule-graph.png │ ├── schedules.png │ └── store-battery-capacity.png ├── examples ├── dynamically-alter-buy-formula.json ├── fetch-dynamic-ess-with-average-price-switching.json ├── fetch-dynamic-ess.json ├── nodered-ui-with-vrm-dess-with-average-price-switching.json └── nodered-ui-with-vrm-dess.json ├── package.json └── src └── nodes ├── icons └── victronenergy.svg ├── victron-dynamic-ess.html └── victron-dynamic-ess.js /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_vrm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/.github/ISSUE_TEMPLATE/bug_report_vrm.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | 4 | *.swp 5 | *.tgz 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /VRM-BETA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/VRM-BETA.md -------------------------------------------------------------------------------- /doc/img/api-access-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/api-access-token.png -------------------------------------------------------------------------------- /doc/img/api-bearer-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/api-bearer-token.png -------------------------------------------------------------------------------- /doc/img/costs-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/costs-graph.png -------------------------------------------------------------------------------- /doc/img/dess-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/dess-page.png -------------------------------------------------------------------------------- /doc/img/dynamic-ess-activation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/dynamic-ess-activation.png -------------------------------------------------------------------------------- /doc/img/dynamic-ess-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/dynamic-ess-flow.png -------------------------------------------------------------------------------- /doc/img/dynamic-ess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/dynamic-ess.png -------------------------------------------------------------------------------- /doc/img/edit-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/edit-panel.png -------------------------------------------------------------------------------- /doc/img/energy-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/energy-graph.png -------------------------------------------------------------------------------- /doc/img/generate-access-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/generate-access-token.png -------------------------------------------------------------------------------- /doc/img/import-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/import-example.png -------------------------------------------------------------------------------- /doc/img/import-fetch-dynamic-ess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/import-fetch-dynamic-ess.gif -------------------------------------------------------------------------------- /doc/img/install-dynamic-ess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/install-dynamic-ess.gif -------------------------------------------------------------------------------- /doc/img/node-red-dess-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/node-red-dess-disable.png -------------------------------------------------------------------------------- /doc/img/node-red-dess-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/node-red-dess-tab.png -------------------------------------------------------------------------------- /doc/img/overview-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/overview-graph.png -------------------------------------------------------------------------------- /doc/img/price-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/price-graph.png -------------------------------------------------------------------------------- /doc/img/schedule-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/schedule-graph.png -------------------------------------------------------------------------------- /doc/img/schedules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/schedules.png -------------------------------------------------------------------------------- /doc/img/store-battery-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/doc/img/store-battery-capacity.png -------------------------------------------------------------------------------- /examples/dynamically-alter-buy-formula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/examples/dynamically-alter-buy-formula.json -------------------------------------------------------------------------------- /examples/fetch-dynamic-ess-with-average-price-switching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/examples/fetch-dynamic-ess-with-average-price-switching.json -------------------------------------------------------------------------------- /examples/fetch-dynamic-ess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/examples/fetch-dynamic-ess.json -------------------------------------------------------------------------------- /examples/nodered-ui-with-vrm-dess-with-average-price-switching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/examples/nodered-ui-with-vrm-dess-with-average-price-switching.json -------------------------------------------------------------------------------- /examples/nodered-ui-with-vrm-dess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/examples/nodered-ui-with-vrm-dess.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/package.json -------------------------------------------------------------------------------- /src/nodes/icons/victronenergy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/src/nodes/icons/victronenergy.svg -------------------------------------------------------------------------------- /src/nodes/victron-dynamic-ess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/src/nodes/victron-dynamic-ess.html -------------------------------------------------------------------------------- /src/nodes/victron-dynamic-ess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dynamic-ess/HEAD/src/nodes/victron-dynamic-ess.js --------------------------------------------------------------------------------