mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.6 KiB
107 lines
3.6 KiB
<div id="main">
|
|
<div class="header">
|
|
<div><img src="jl-200x55.png" height="55"></div>
|
|
<h1 style="margin-top:0"><span class="esp">esp</span>-link</h1>
|
|
<h2 id="version"></h2>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="pure-g">
|
|
<div class="pure-u-24-24"><div class="card">
|
|
<p>The JeeLabs esp-link firmware bridges the ESP8266 serial port to Wifi and can
|
|
program microcontrollers over the serial port, in particular Arduinos, AVRs, and
|
|
NXP's LPC800 and other ARM processors.</p>
|
|
<p style="margin-bottom:0;">Program an Arduino/AVR using avrdude using a command
|
|
line similar to:
|
|
<div class="tt">/home/arduino-1.0.5/hardware/tools/avrdude \<br>
|
|
-DV -patmega328p -Pnet:esp-link.local:23 -carduino -b115200 -U \<br>
|
|
-C /home/arduino-1.0.5/hardware/tools/avrdude.conf flash:w:my_sketch.hex:i
|
|
</div>
|
|
where <tt>-Pnet:esp-link.local:23</tt> tells avrdude to connect to port 23 of esp-link.
|
|
You can substitute the IP address of your esp-link for esp-link.local if necessary.</p>
|
|
<p>Please refer to
|
|
<a href="https://github.com/jeelabs/esp-link/blob/master/README.md">the online README</a>
|
|
for up-to-date help and to the forthcoming
|
|
<a href="http://jeelabs.org">JeeLabs blog</a> for an intro to the codebase.</p>
|
|
</div></div>
|
|
</div>
|
|
<div class="pure-g">
|
|
<div class="pure-u-12-24"><div class="card">
|
|
<h1>Wifi summary</h2>
|
|
<div id="wifi-spinner" class="spinner spinner-small"></div>
|
|
<table id="wifi-table" class="pure-table pure-table-horizontal" hidden><tbody>
|
|
<tr><td>WiFi mode</td><td id="wifi-mode"></td></tr>
|
|
<tr><td>Configured network</td><td id="wifi-ssid"></td></tr>
|
|
<tr><td>Wifi status</td><td id="wifi-status"></td></tr>
|
|
<tr><td>Wifi address</td><td id="wifi-ip"></td></tr>
|
|
</tbody> </table>
|
|
</div></div>
|
|
<div class="pure-u-12-24"><div class="card">
|
|
<h1>Pin assignment</h2>
|
|
<legend>Select one of the following signal/pin assignments to match your hardware</legend>
|
|
<fieldset class='radios' id='pin-mux'>
|
|
<div class="spinner spinner-small"></div>
|
|
</fieldset>
|
|
</div></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="ui.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
var currPin;
|
|
// pin={reset:12, isp:13, LED_conn:0, LED_ser:2}
|
|
function createInputForPin(pin) {
|
|
var input = document.createElement("input");
|
|
input.type = "radio";
|
|
input.name = "pins";
|
|
input.data = pin.name;
|
|
input.className = "pin-input";
|
|
input.value= pin.value;
|
|
input.id = "opt-" + pin.value;
|
|
if (currPin == pin.name) input.checked = "1";
|
|
|
|
var descr = m('<label for="opt-'+pin.value+'"><b>'+pin.name+":</b>"+pin.descr+"</label>");
|
|
descr.for = "opt-" + pin.value;
|
|
var div = document.createElement("div");
|
|
div.appendChild(input);
|
|
div.appendChild(descr);
|
|
return div;
|
|
}
|
|
|
|
function displayPins(resp) {
|
|
var po = $("#pin-mux");
|
|
po.innerHTML = "";
|
|
currPin = resp.curr;
|
|
resp.map.forEach(function(v) {
|
|
po.appendChild(createInputForPin(v));
|
|
});
|
|
var i, inputs = $(".pin-input");
|
|
for (i=0; i<inputs.length; i++) {
|
|
inputs[i].onclick = function() { setPins(this.value, this.data) };
|
|
};
|
|
}
|
|
|
|
function fetchPins() {
|
|
ajaxJson("GET", "/pins", displayPins, function() {
|
|
window.setTimeout(fetchPins, 1000);
|
|
});
|
|
}
|
|
|
|
function setPins(v, name) {
|
|
ajaxSpin("POST", "/pins?map="+v, function() {
|
|
showNotification("Pin assignment changed to " + name);
|
|
}, function() {
|
|
showNotification("Pin assignment change failed");
|
|
window.setTimeout(fetchPins, 100);
|
|
});
|
|
}
|
|
|
|
window.onload=function(e) {
|
|
fetchPins();
|
|
getWifiInfo();
|
|
};
|
|
</script>
|
|
</body></html>
|
|
|