├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── auto-merge.yml ├── dependabot.yml └── workflows │ ├── dependabot-auto-merge.yml │ └── test-and-release.yml ├── .gitignore ├── .releaseconfig.json ├── LICENSE ├── README.md ├── SECURITY.md ├── admin ├── admin.d.ts ├── conn.js ├── energiefluss.png ├── icon_help.png ├── img │ └── info-big.png ├── index_m.html ├── jquery.minicolors.css ├── jquery.minicolors.js ├── jquery.minicolors.png ├── paypal-donate-button.png ├── tab_m.html ├── tsconfig.json └── words.js ├── docs ├── custom_elements.png ├── de │ └── README.md └── en │ └── README.md ├── io-package.json ├── lib ├── adapter-config.d.ts ├── build.js ├── check.js ├── common.js ├── readyForStable.js ├── scripts.js └── tools.js ├── main.js ├── main.test.js ├── package.json ├── test ├── integration.js ├── mocha.setup.js ├── mocharc.custom.json ├── package.js ├── tsconfig.json └── unit.js ├── tsconfig.check.json ├── tsconfig.json └── www ├── browserconfig.xml ├── config.html ├── conn.js ├── functions.js ├── 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 └── 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 ├── index.html ├── instance.js ├── manifest.json ├── style.css ├── style └── font │ ├── material.woff │ └── material.woff2 └── translate.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/StephanKreyenborg"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/.releaseconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/admin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/admin.d.ts -------------------------------------------------------------------------------- /admin/conn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/conn.js -------------------------------------------------------------------------------- /admin/energiefluss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/energiefluss.png -------------------------------------------------------------------------------- /admin/icon_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/icon_help.png -------------------------------------------------------------------------------- /admin/img/info-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/img/info-big.png -------------------------------------------------------------------------------- /admin/index_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/index_m.html -------------------------------------------------------------------------------- /admin/jquery.minicolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/jquery.minicolors.css -------------------------------------------------------------------------------- /admin/jquery.minicolors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/jquery.minicolors.js -------------------------------------------------------------------------------- /admin/jquery.minicolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/jquery.minicolors.png -------------------------------------------------------------------------------- /admin/paypal-donate-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/paypal-donate-button.png -------------------------------------------------------------------------------- /admin/tab_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/tab_m.html -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/admin/words.js -------------------------------------------------------------------------------- /docs/custom_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/docs/custom_elements.png -------------------------------------------------------------------------------- /docs/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/docs/de/README.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /io-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/io-package.json -------------------------------------------------------------------------------- /lib/adapter-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/adapter-config.d.ts -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/check.js -------------------------------------------------------------------------------- /lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/common.js -------------------------------------------------------------------------------- /lib/readyForStable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/readyForStable.js -------------------------------------------------------------------------------- /lib/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/scripts.js -------------------------------------------------------------------------------- /lib/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/lib/tools.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/main.js -------------------------------------------------------------------------------- /main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/main.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/package.json -------------------------------------------------------------------------------- /test/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/test/integration.js -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/test/mocha.setup.js -------------------------------------------------------------------------------- /test/mocharc.custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/test/mocharc.custom.json -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/test/package.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/test/unit.js -------------------------------------------------------------------------------- /tsconfig.check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/tsconfig.check.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /www/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/browserconfig.xml -------------------------------------------------------------------------------- /www/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/config.html -------------------------------------------------------------------------------- /www/conn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/conn.js -------------------------------------------------------------------------------- /www/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/functions.js -------------------------------------------------------------------------------- /www/icons/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /www/icons/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /www/icons/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /www/icons/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /www/icons/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /www/icons/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /www/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/favicon.ico -------------------------------------------------------------------------------- /www/icons/ios/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/100.png -------------------------------------------------------------------------------- /www/icons/ios/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/1024.png -------------------------------------------------------------------------------- /www/icons/ios/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/114.png -------------------------------------------------------------------------------- /www/icons/ios/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/120.png -------------------------------------------------------------------------------- /www/icons/ios/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/128.png -------------------------------------------------------------------------------- /www/icons/ios/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/144.png -------------------------------------------------------------------------------- /www/icons/ios/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/152.png -------------------------------------------------------------------------------- /www/icons/ios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/16.png -------------------------------------------------------------------------------- /www/icons/ios/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/167.png -------------------------------------------------------------------------------- /www/icons/ios/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/180.png -------------------------------------------------------------------------------- /www/icons/ios/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/192.png -------------------------------------------------------------------------------- /www/icons/ios/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/20.png -------------------------------------------------------------------------------- /www/icons/ios/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/256.png -------------------------------------------------------------------------------- /www/icons/ios/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/29.png -------------------------------------------------------------------------------- /www/icons/ios/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/32.png -------------------------------------------------------------------------------- /www/icons/ios/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/40.png -------------------------------------------------------------------------------- /www/icons/ios/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/50.png -------------------------------------------------------------------------------- /www/icons/ios/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/512.png -------------------------------------------------------------------------------- /www/icons/ios/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/57.png -------------------------------------------------------------------------------- /www/icons/ios/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/58.png -------------------------------------------------------------------------------- /www/icons/ios/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/60.png -------------------------------------------------------------------------------- /www/icons/ios/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/64.png -------------------------------------------------------------------------------- /www/icons/ios/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/72.png -------------------------------------------------------------------------------- /www/icons/ios/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/76.png -------------------------------------------------------------------------------- /www/icons/ios/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/80.png -------------------------------------------------------------------------------- /www/icons/ios/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/ios/87.png -------------------------------------------------------------------------------- /www/icons/windows11/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/LargeTile.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/LargeTile.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/LargeTile.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/LargeTile.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/LargeTile.scale-400.png -------------------------------------------------------------------------------- /www/icons/windows11/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SmallTile.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SmallTile.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SmallTile.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SmallTile.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SmallTile.scale-400.png -------------------------------------------------------------------------------- /www/icons/windows11/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /www/icons/windows11/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-20.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-30.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-36.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-40.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-44.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-60.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-64.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-72.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-80.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.altform-unplated_targetsize-96.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-20.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-30.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-36.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-40.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-44.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-60.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-64.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-72.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-80.png -------------------------------------------------------------------------------- /www/icons/windows11/Square44x44Logo.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Square44x44Logo.targetsize-96.png -------------------------------------------------------------------------------- /www/icons/windows11/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /www/icons/windows11/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /www/icons/windows11/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /www/icons/windows11/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /www/icons/windows11/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /www/icons/windows11/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/icons/windows11/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/index.html -------------------------------------------------------------------------------- /www/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/instance.js -------------------------------------------------------------------------------- /www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/manifest.json -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/style.css -------------------------------------------------------------------------------- /www/style/font/material.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/style/font/material.woff -------------------------------------------------------------------------------- /www/style/font/material.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/style/font/material.woff2 -------------------------------------------------------------------------------- /www/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKB-CGN/ioBroker.energiefluss/HEAD/www/translate.js --------------------------------------------------------------------------------