-
Notifications
You must be signed in to change notification settings - Fork 726
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
Showing
15 changed files
with
486 additions
and
187 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 |
---|---|---|
@@ -1,14 +1,19 @@ | ||
<html><head><title>MCU Console - ESP Link</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
<div id="topnav">%topnav%</div> | ||
<h1><span class="esp">esp</span> link - Microcontroller Console</h1> | ||
<p>The Microcontroller console shows the last 1024 characters received from UART0, to which | ||
a microcontroller is tpically attached.</p> | ||
<pre class="console"> | ||
%head% | ||
|
||
<div id="main"> | ||
<div class="header"> | ||
<h1><span class="esp">esp</span> link - Microcontroller Console</h1> | ||
</div> | ||
|
||
<div class="content"> | ||
<p>The Microcontroller console shows the last 1024 characters received from UART0, to which | ||
a microcontroller is typically attached.</p> | ||
<pre class="console"> | ||
%console% | ||
</pre> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="ui.js"></script> | ||
</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,16 @@ | ||
<html><head> | ||
<title>ESP Link</title> | ||
<link rel="stylesheet" href="/pure-min.css"> | ||
<link rel="stylesheet" href="/style.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
</head> | ||
<body> | ||
<div id="layout"> | ||
<a href="#menu" id="menuLink" class="menu-link"><span></span></a> | ||
|
||
<div id="menu"> | ||
<div class="pure-menu"> | ||
<a class="pure-menu-heading" href="/">esp-link</a> | ||
<ul class="pure-menu-list">%topnav%</ul> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -1,14 +1,17 @@ | ||
<html> | ||
<head><title>ESP Link</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
<div id="topnav">%topnav%</div> | ||
<h1><span class="esp">esp</span> link</h1> | ||
<p> | ||
The ESP Link connects the ESP's serial port to Wifi and it can | ||
program microcontrollers over the serial port, in particular Arduinos, AVRs, and | ||
NXP's LPC800-series ARM processors.</p> | ||
%head% | ||
|
||
<div id="main"> | ||
<div class="header"> | ||
<h1><span class="esp">esp</span> link</h1> | ||
</div> | ||
|
||
<div class="content"> | ||
<p>The ESP Link connects the ESP's serial port to Wifi and it can | ||
program microcontrollers over the serial port, in particular Arduinos, AVRs, and | ||
NXP's LPC800-series ARM processors.</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="ui.js"></script> | ||
</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 |
---|---|---|
@@ -1,14 +1,19 @@ | ||
<html><head><title>Log - ESP Link</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
<div id="topnav">%topnav%</div> | ||
<h1><span class="esp">esp</span> link - Debug Log</h1> | ||
<p>The debug log shows the 1024 last characters printed by the esp-link software itself to | ||
its own debug log.</p> | ||
<pre class="console"> | ||
%head% | ||
|
||
<div id="main"> | ||
<div class="header"> | ||
<h1><span class="esp">esp</span> link - Debug Log</h1> | ||
</div> | ||
|
||
<div class="content"> | ||
<p>The debug log shows the 1024 last characters printed by the esp-link software itself to | ||
its own debug log.</p> | ||
<pre class="console"> | ||
%log% | ||
</pre> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="ui.js"></script> | ||
</body></html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.