-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
087e344
commit bfc663f
Showing
4 changed files
with
103 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>ESP Web Tools</title> | ||
<script | ||
type="module" | ||
src="https://unpkg.com/esp-web-tools@8.0.0/dist/esp-web-tools.js" | ||
></script> | ||
<script | ||
type="module" | ||
src="https://unpkg.com/esp-web-tools@8.0.0/dist/components/espweb-terminal.js" | ||
></script> | ||
</head> | ||
<body> | ||
<h1>Upload Firmware and Configure Your ESP</h1> | ||
<esp-web-install-button manifest="./manifest.json"></esp-web-install-button> | ||
<h2>Terminal for Configuration</h2> | ||
<esp-web-terminal></esp-web-terminal> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"manifest": { | ||
"application": { | ||
"name": "GeoGlow ESP Firmware", | ||
"email": "ncrisci@th-koeln.de" | ||
} | ||
}, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP8266", | ||
"improv": true, | ||
"parts": [ | ||
{ | ||
"path": "firmware/firmware.bin", | ||
"offset": 0 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters