Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
janakj committed Jul 19, 2022
0 parents commit 34eb24f
Show file tree
Hide file tree
Showing 13 changed files with 6,480 additions and 0 deletions.
Binary file added docs/user-manual.pdf
Binary file not shown.
Binary file added docs/yeasu-g-800dxa.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions firmware/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
7 changes: 7 additions & 0 deletions firmware/g-1000dxc/.vscode/arduino.json
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"
}
570 changes: 570 additions & 0 deletions firmware/g-1000dxc/.vscode/c_cpp_properties.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions firmware/g-1000dxc/data/index.html
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>
32 changes: 32 additions & 0 deletions firmware/g-1000dxc/data/style.css
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;
}
Loading

0 comments on commit 34eb24f

Please sign in to comment.