ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
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.
|
|
|
<script>
|
|
|
|
// Workaround for badly loaded page
|
|
|
|
setTimeout(function() {
|
|
|
|
if (typeof termInit == 'undefined' || typeof $ == 'undefined') {
|
|
|
|
location.reload(true);
|
|
|
|
}
|
|
|
|
}, 2000);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<h1 onclick="location.href='<?= e(url('cfg_wifi_simple')) ?>'">%term_title%</h1>
|
|
|
|
|
|
|
|
<div id="termwrap">
|
|
|
|
<div id="screen"></div>
|
|
|
|
|
|
|
|
<div id="buttons">
|
|
|
|
<button data-n="1" class="btn-blue">%b1%</button><!--
|
|
|
|
--><button data-n="2" class="btn-blue">%b2%</button><!--
|
|
|
|
--><button data-n="3" class="btn-blue">%b3%</button><!--
|
|
|
|
--><button data-n="4" class="btn-blue">%b4%</button><!--
|
|
|
|
--><button data-n="5" class="btn-blue">%b5%</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<nav id="botnav">
|
|
|
|
<a href="<?= url('cfg_wifi') ?>"><?= tr('menu.cfg_wifi') ?></a><!--
|
|
|
|
--><a href="<?= url('help') ?>">Help</a><!--
|
|
|
|
--><a href="<?= url('about') ?>">About</a>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
try {
|
|
|
|
termInit(%screenData%);
|
|
|
|
} catch(e) {
|
|
|
|
console.error("Fail, reloading...");
|
|
|
|
location.reload(true);
|
|
|
|
}
|
|
|
|
</script>
|