-
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
0 parents
commit 34eb24f
Showing
13 changed files
with
6,480 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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 @@ | ||
/build |
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,7 @@ | ||
{ | ||
"configuration": "FlashFreq=80,UploadSpeed=921600,DebugLevel=info,PartitionScheme=default", | ||
"board": "esp32:esp32:featheresp32", | ||
"programmer": "esp32:esptool", | ||
"output": "../build", | ||
"sketch": "g-1000dxc.ino" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Yeasu G-1000DXC antenna rotator</title> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" href="data:,"> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<h1>Rotator</h1> | ||
<p>Antenna: <strong>%ANTENNA% (%ANTENNA_RAW%)</strong></p> | ||
<p>Indicator: <strong>%INDICATOR%</strong></p> | ||
<p>Preset: <strong>%PRESET% (%PRESET_RAW%)</strong></p> | ||
<p>Speed: <strong>%SPEED%</strong></p> | ||
<p>Azimut: <strong>%AZIMUTH%</strong></p> | ||
<form method="GET" action="/set"> | ||
<input type="number" id="azimuth" name="azimuth"> | ||
<input type='submit' value='Set'> | ||
</form> | ||
</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,32 @@ | ||
html { | ||
font-family: Helvetica; | ||
display: inline-block; | ||
margin: 0px auto; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
color: #0F3376; | ||
padding: 2vh; | ||
} | ||
|
||
p { | ||
font-size: 1.5rem; | ||
} | ||
|
||
.button { | ||
display: inline-block; | ||
background-color: #008CBA; | ||
border: none; | ||
border-radius: 4px; | ||
color: white; | ||
padding: 16px 40px; | ||
text-decoration: none; | ||
font-size: 30px; | ||
margin: 2px; | ||
cursor: pointer; | ||
} | ||
|
||
.button2 { | ||
background-color: #f44336; | ||
} |
Oops, something went wrong.