initial commit of C++ back end and react front end
This commit is contained in:
5
data/config/apSettings.json
Normal file
5
data/config/apSettings.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"provision_mode": 0,
|
||||
"ssid": "ESP8266-React",
|
||||
"password": "esp-react"
|
||||
}
|
4
data/config/ntpSettings.json
Normal file
4
data/config/ntpSettings.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"server":"pool.ntp.org",
|
||||
"interval":60
|
||||
}
|
5
data/config/otaSettings.json
Normal file
5
data/config/otaSettings.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"enabled":true,
|
||||
"port": 8266,
|
||||
"password": "esp-react"
|
||||
}
|
6
data/config/wifiSettings.json
Normal file
6
data/config/wifiSettings.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"ssid":"ssid",
|
||||
"password":"password",
|
||||
"hostname":"esp8266-react",
|
||||
"static_ip_config":false
|
||||
}
|
BIN
data/www/app/icon.png
Normal file
BIN
data/www/app/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
12
data/www/app/manifest.json
Normal file
12
data/www/app/manifest.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name":"ESP8266 React",
|
||||
"icons":[
|
||||
{
|
||||
"src":"/app/icon.png",
|
||||
"sizes":"48x48 72x72 96x96 128x128 256x256"
|
||||
}
|
||||
],
|
||||
"start_url":"/",
|
||||
"display":"fullscreen",
|
||||
"orientation":"any"
|
||||
}
|
22
data/www/css/roboto.css
Normal file
22
data/www/css/roboto.css
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Just supporting latin due to size constrains on the esp chip */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/ro-li.w2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Roboto'), local('Roboto-Regular'), url(../fonts/ro-re.w2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local('Roboto Medium'), local('Roboto-Medium'), url(../fonts/ro-me.w2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
|
||||
}
|
BIN
data/www/fonts/ro-li.w2
Normal file
BIN
data/www/fonts/ro-li.w2
Normal file
Binary file not shown.
BIN
data/www/fonts/ro-me.w2
Normal file
BIN
data/www/fonts/ro-me.w2
Normal file
Binary file not shown.
BIN
data/www/fonts/ro-re.w2
Normal file
BIN
data/www/fonts/ro-re.w2
Normal file
Binary file not shown.
BIN
data/www/index.html.gz
Normal file
BIN
data/www/index.html.gz
Normal file
Binary file not shown.
BIN
data/www/js/main.73ac.js.gz
Normal file
BIN
data/www/js/main.73ac.js.gz
Normal file
Binary file not shown.
Reference in New Issue
Block a user