├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── auto-merge.yml ├── config.yml ├── dependabot.yml └── workflows │ ├── dependabot-auto-merge.yml │ └── test-and-release.yml ├── .gitignore ├── .releaseconfig.json ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── admin ├── energiefluss-erweitert.png ├── i18n │ ├── de │ │ └── translations.json │ ├── en │ │ └── translations.json │ ├── es │ │ └── translations.json │ ├── fr │ │ └── translations.json │ ├── it │ │ └── translations.json │ ├── nl │ │ └── translations.json │ ├── pl │ │ └── translations.json │ ├── pt │ │ └── translations.json │ ├── ru │ │ └── translations.json │ ├── uk │ │ └── translations.json │ └── zh-cn │ │ └── translations.json ├── index_m.html ├── paypal-donate-button.png └── words.js ├── docs ├── de │ └── README.md ├── en │ └── README.md └── images │ ├── css_dot_filter.png │ └── css_icon_blink.gif ├── eslint.config.mjs ├── io-package.json ├── lib ├── adapter-config.d.ts ├── dictionary.js ├── manifest.js └── web.js ├── main.js ├── main.test.js ├── package.json ├── prettier.config.mjs ├── test ├── integration.js ├── mocha.setup.js ├── mocharc.custom.json ├── package.js ├── tsconfig.json └── unit.js ├── tsconfig.check.json ├── tsconfig.json ├── widgets ├── energiefluss-erweitert.html └── energiefluss-erweitert │ ├── css │ └── style.css │ ├── img │ └── energiefluss-erweitert.png │ └── js │ └── energiefluss-erweitert.js └── www ├── configuration.html ├── img ├── icons │ ├── android │ │ ├── android-launchericon-144-144.png │ │ ├── android-launchericon-192-192.png │ │ ├── android-launchericon-48-48.png │ │ ├── android-launchericon-512-512.png │ │ ├── android-launchericon-72-72.png │ │ └── android-launchericon-96-96.png │ ├── favicon.ico │ ├── ios │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 192.png │ │ ├── 20.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── 87.png │ ├── screenshots │ │ ├── screenshot_config.webp │ │ ├── screenshot_config_small.webp │ │ ├── screenshot_live_dark.webp │ │ └── screenshot_live_light.webp │ ├── shortcuts │ │ └── config.svg │ └── windows11 │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-20.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-30.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-36.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-40.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-44.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-60.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-64.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-72.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-80.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-96.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-20.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-30.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-36.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-40.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-44.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-60.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-64.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-72.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-80.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-96.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-44.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png ├── paypal-donate.png ├── ui-icons_444444_256x240.png ├── ui-icons_555555_256x240.png ├── ui-icons_777777_256x240.png └── ui-icons_ffffff_256x240.png ├── index.html ├── js ├── ace │ ├── ace.js │ ├── ext-language_tools.js │ ├── ext-searchbox.js │ ├── mode-css.js │ ├── mode-json.js │ ├── snippets │ │ └── css.js │ ├── theme-clouds_midnight.js │ ├── theme-textmate.js │ ├── worker-css.js │ └── worker-json.js ├── basic_config.json ├── functions.min.js ├── i18n │ ├── de │ │ └── translations.json │ ├── en │ │ └── translations.json │ ├── es │ │ └── translations.json │ ├── fr │ │ └── translations.json │ ├── it │ │ └── translations.json │ ├── nl │ │ └── translations.json │ ├── pl │ │ └── translations.json │ ├── pt │ │ └── translations.json │ ├── ru │ │ └── translations.json │ ├── uk │ │ └── translations.json │ └── zh-cn │ │ └── translations.json ├── iconify.min.js ├── jquery-3.6.4.min.js ├── jquery-ui.min.js ├── jscolor.min.js ├── multiselect.min.js ├── translate.min.js └── words.js └── style ├── dark.css ├── jquery-ui.css ├── light.css ├── multiselect.css ├── style.css └── webkit.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/StephanKreyenborg"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.releaseconfig.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/energiefluss-erweitert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/energiefluss-erweitert.png -------------------------------------------------------------------------------- /admin/i18n/de/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/de/translations.json -------------------------------------------------------------------------------- /admin/i18n/en/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/en/translations.json -------------------------------------------------------------------------------- /admin/i18n/es/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/es/translations.json -------------------------------------------------------------------------------- /admin/i18n/fr/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/fr/translations.json -------------------------------------------------------------------------------- /admin/i18n/it/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/it/translations.json -------------------------------------------------------------------------------- /admin/i18n/nl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/nl/translations.json -------------------------------------------------------------------------------- /admin/i18n/pl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/pl/translations.json -------------------------------------------------------------------------------- /admin/i18n/pt/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/pt/translations.json -------------------------------------------------------------------------------- /admin/i18n/ru/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/ru/translations.json -------------------------------------------------------------------------------- /admin/i18n/uk/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/uk/translations.json -------------------------------------------------------------------------------- /admin/i18n/zh-cn/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/i18n/zh-cn/translations.json -------------------------------------------------------------------------------- /admin/index_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/index_m.html -------------------------------------------------------------------------------- /admin/paypal-donate-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/paypal-donate-button.png -------------------------------------------------------------------------------- /admin/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/admin/words.js -------------------------------------------------------------------------------- /docs/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/docs/de/README.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- 1 | Coming soon 2 | -------------------------------------------------------------------------------- /docs/images/css_dot_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/docs/images/css_dot_filter.png -------------------------------------------------------------------------------- /docs/images/css_icon_blink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/docs/images/css_icon_blink.gif -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /io-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/io-package.json -------------------------------------------------------------------------------- /lib/adapter-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/lib/adapter-config.d.ts -------------------------------------------------------------------------------- /lib/dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/lib/dictionary.js -------------------------------------------------------------------------------- /lib/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/lib/manifest.js -------------------------------------------------------------------------------- /lib/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/lib/web.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/main.js -------------------------------------------------------------------------------- /main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/main.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /test/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/test/integration.js -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/test/mocha.setup.js -------------------------------------------------------------------------------- /test/mocharc.custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/test/mocharc.custom.json -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/test/package.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/test/unit.js -------------------------------------------------------------------------------- /tsconfig.check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/tsconfig.check.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/tsconfig.json -------------------------------------------------------------------------------- /widgets/energiefluss-erweitert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/widgets/energiefluss-erweitert.html -------------------------------------------------------------------------------- /widgets/energiefluss-erweitert/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/widgets/energiefluss-erweitert/css/style.css -------------------------------------------------------------------------------- /widgets/energiefluss-erweitert/img/energiefluss-erweitert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/widgets/energiefluss-erweitert/img/energiefluss-erweitert.png -------------------------------------------------------------------------------- /widgets/energiefluss-erweitert/js/energiefluss-erweitert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/widgets/energiefluss-erweitert/js/energiefluss-erweitert.js -------------------------------------------------------------------------------- /www/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/configuration.html -------------------------------------------------------------------------------- /www/img/icons/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /www/img/icons/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /www/img/icons/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /www/img/icons/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /www/img/icons/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /www/img/icons/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /www/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/favicon.ico -------------------------------------------------------------------------------- /www/img/icons/ios/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/100.png -------------------------------------------------------------------------------- /www/img/icons/ios/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/1024.png -------------------------------------------------------------------------------- /www/img/icons/ios/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/114.png -------------------------------------------------------------------------------- /www/img/icons/ios/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/120.png -------------------------------------------------------------------------------- /www/img/icons/ios/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/128.png -------------------------------------------------------------------------------- /www/img/icons/ios/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/144.png -------------------------------------------------------------------------------- /www/img/icons/ios/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/152.png -------------------------------------------------------------------------------- /www/img/icons/ios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/16.png -------------------------------------------------------------------------------- /www/img/icons/ios/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/167.png -------------------------------------------------------------------------------- /www/img/icons/ios/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/180.png -------------------------------------------------------------------------------- /www/img/icons/ios/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/192.png -------------------------------------------------------------------------------- /www/img/icons/ios/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/20.png -------------------------------------------------------------------------------- /www/img/icons/ios/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/256.png -------------------------------------------------------------------------------- /www/img/icons/ios/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/29.png -------------------------------------------------------------------------------- /www/img/icons/ios/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/32.png -------------------------------------------------------------------------------- /www/img/icons/ios/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/40.png -------------------------------------------------------------------------------- /www/img/icons/ios/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/50.png -------------------------------------------------------------------------------- /www/img/icons/ios/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/512.png -------------------------------------------------------------------------------- /www/img/icons/ios/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/57.png -------------------------------------------------------------------------------- /www/img/icons/ios/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/58.png -------------------------------------------------------------------------------- /www/img/icons/ios/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/60.png -------------------------------------------------------------------------------- /www/img/icons/ios/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/64.png -------------------------------------------------------------------------------- /www/img/icons/ios/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/72.png -------------------------------------------------------------------------------- /www/img/icons/ios/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/76.png -------------------------------------------------------------------------------- /www/img/icons/ios/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/80.png -------------------------------------------------------------------------------- /www/img/icons/ios/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/ios/87.png -------------------------------------------------------------------------------- /www/img/icons/screenshots/screenshot_config.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/screenshots/screenshot_config.webp -------------------------------------------------------------------------------- /www/img/icons/screenshots/screenshot_config_small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/screenshots/screenshot_config_small.webp -------------------------------------------------------------------------------- /www/img/icons/screenshots/screenshot_live_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/screenshots/screenshot_live_dark.webp -------------------------------------------------------------------------------- /www/img/icons/screenshots/screenshot_live_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/screenshots/screenshot_live_light.webp -------------------------------------------------------------------------------- /www/img/icons/shortcuts/config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/shortcuts/config.svg -------------------------------------------------------------------------------- /www/img/icons/windows11/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/LargeTile.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/LargeTile.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/LargeTile.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/LargeTile.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/LargeTile.scale-400.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SmallTile.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SmallTile.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SmallTile.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SmallTile.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SmallTile.scale-400.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-20.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-30.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-36.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-40.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-44.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-60.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-64.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-72.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-80.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.altform-unplated_targetsize-96.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-20.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-30.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-36.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-40.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-44.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-60.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-64.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-72.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-80.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Square44x44Logo.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Square44x44Logo.targetsize-96.png -------------------------------------------------------------------------------- /www/img/icons/windows11/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /www/img/icons/windows11/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/icons/windows11/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /www/img/paypal-donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/paypal-donate.png -------------------------------------------------------------------------------- /www/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /www/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /www/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /www/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/ace.js -------------------------------------------------------------------------------- /www/js/ace/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/ext-language_tools.js -------------------------------------------------------------------------------- /www/js/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/ext-searchbox.js -------------------------------------------------------------------------------- /www/js/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/mode-css.js -------------------------------------------------------------------------------- /www/js/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/mode-json.js -------------------------------------------------------------------------------- /www/js/ace/snippets/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/snippets/css.js -------------------------------------------------------------------------------- /www/js/ace/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/theme-clouds_midnight.js -------------------------------------------------------------------------------- /www/js/ace/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/theme-textmate.js -------------------------------------------------------------------------------- /www/js/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/worker-css.js -------------------------------------------------------------------------------- /www/js/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/ace/worker-json.js -------------------------------------------------------------------------------- /www/js/basic_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/basic_config.json -------------------------------------------------------------------------------- /www/js/functions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/functions.min.js -------------------------------------------------------------------------------- /www/js/i18n/de/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/de/translations.json -------------------------------------------------------------------------------- /www/js/i18n/en/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/en/translations.json -------------------------------------------------------------------------------- /www/js/i18n/es/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/es/translations.json -------------------------------------------------------------------------------- /www/js/i18n/fr/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/fr/translations.json -------------------------------------------------------------------------------- /www/js/i18n/it/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/it/translations.json -------------------------------------------------------------------------------- /www/js/i18n/nl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/nl/translations.json -------------------------------------------------------------------------------- /www/js/i18n/pl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/pl/translations.json -------------------------------------------------------------------------------- /www/js/i18n/pt/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/pt/translations.json -------------------------------------------------------------------------------- /www/js/i18n/ru/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/ru/translations.json -------------------------------------------------------------------------------- /www/js/i18n/uk/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/uk/translations.json -------------------------------------------------------------------------------- /www/js/i18n/zh-cn/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/i18n/zh-cn/translations.json -------------------------------------------------------------------------------- /www/js/iconify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/iconify.min.js -------------------------------------------------------------------------------- /www/js/jquery-3.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/jquery-3.6.4.min.js -------------------------------------------------------------------------------- /www/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/jquery-ui.min.js -------------------------------------------------------------------------------- /www/js/jscolor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/jscolor.min.js -------------------------------------------------------------------------------- /www/js/multiselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/multiselect.min.js -------------------------------------------------------------------------------- /www/js/translate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/translate.min.js -------------------------------------------------------------------------------- /www/js/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/js/words.js -------------------------------------------------------------------------------- /www/style/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/style/dark.css -------------------------------------------------------------------------------- /www/style/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/style/jquery-ui.css -------------------------------------------------------------------------------- /www/style/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/style/light.css -------------------------------------------------------------------------------- /www/style/multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/style/multiselect.css -------------------------------------------------------------------------------- /www/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/style/style.css -------------------------------------------------------------------------------- /www/style/webkit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss-erweitert/HEAD/www/style/webkit.css --------------------------------------------------------------------------------