Skip to content

Commit

Permalink
Merge pull request #10 from nathanfiscus/feature/firmware-support
Browse files Browse the repository at this point in the history
Firmware Support
  • Loading branch information
nathanfiscus authored Jan 7, 2021
2 parents ed8e6bf + e2ab56f commit 4d37291
Show file tree
Hide file tree
Showing 25 changed files with 3,359 additions and 2,403 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Inovelli LED Notification Calculator

https://nathanfiscus.github.io/inovelli-notification-calc/

This is a simple application to assist in calculating the configuration values to send to your Inovelli v2 ZWave Light switches. The values calculated by this tool can be used by any compatible ZWave controller.

# PWA!

This is a progressive web app and can be installed on your local device for offline use or install like a mobile app.


This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
# Inovelli LED Notification Calculator

https://nathanfiscus.github.io/inovelli-notification-calc/

This is a simple application to assist in calculating the configuration values to send to your Inovelli v2 ZWave Light switches. The values calculated by this tool can be used by any compatible ZWave controller.

# PWA!

This is a progressive web app and can be installed on your local device for offline use or install like a mobile app.


This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
Binary file modified public/favicon.ico
Binary file not shown.
100 changes: 50 additions & 50 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Inovelli LED Calc" />
<meta
name="description"
content="Calculate configuration values for v2 Inovelli
Z-Wave light switches."
/>
<link rel="apple-touch-icon" href="logo192.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Inovelli Toolbox</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Inovelli Switch Toolbox" />
<meta
name="description"
content="Calculate configuration values for v2 Inovelli
Z-Wave light switches."
/>
<link rel="apple-touch-icon" href="logo192.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Inovelli Switch Toolbox</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Binary file modified public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/AboutDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AboutDialog extends React.Component {
<DialogTitle>About</DialogTitle>
<DialogContent>
<Typography variant="h4" gutterBottom>
Version 3.0.1 (June 26, 2020)
Version 4.0.0 (Jan 5, 2020)
</Typography>
<Typography variant="h6">About the Tool</Typography>
<Typography variant="caption" gutterBottom={true}>
Expand Down
Loading

0 comments on commit 4d37291

Please sign in to comment.