forked from mofosyne/arduino-gameboy-printer-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (39 loc) · 1.88 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>WebSerial Arduino Nano Flasher</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- <script src="https://github.com/dbuezas/arduino-web-uploader/releases/download/v1.1.2/main.js"></script> -->
<script src="../arduino-web-uploader.v1.1.2.js"></script>
</head>
<body>
<h1> WebSerial Arduino Nano Flasher</h1>
This page is here to make it easier for those who would like to load in a precompiled binary for an arduino nano
instead.
<br>
You will need to open this page on a browser that supports WebSerial API, such as google chrome.
<br>
<h2> Flash Newer Arduino Nano (GameBoy Printer Emulator) </h2>
<button arduino-uploader hex-href="./GameBoyPrinterEmulator.arduino.nano.v3.3.0.hex" board="nano" verify>
Upload GameBoyPrinterEmulator v3.3.0 to nano/uno/pro/pro-mini [<span class="upload-progress"></span>]
</button>
<br>
<h2> Flash Older Arduino Nano (GameBoy Printer Emulator) </h2>
<button arduino-uploader hex-href="./GameBoyPrinterEmulator.arduino.nano.v3.3.0.hex" board="nanoOldBootloader" verify>
Upload GameBoyPrinterEmulator v3.3.0 to nano with old bootloader (most chinese clones) [<span class="upload-progress"></span>]
</button>
<br>
<h2> Flash Newer Arduino Nano (Test Blink Firmware) </h2>
<button arduino-uploader hex-href="./Blink.ino.eightanaloginputs.hex" board="nano" verify>
Upload GameBoyPrinterEmulator v3.3.0 to nano/uno/pro/pro-mini [<span class="upload-progress"></span>]
</button>
<br>
<h2> Flash Older Arduino Nano (Test Blink Firmware) </h2>
<button arduino-uploader hex-href="./Blink.ino.eightanaloginputs.hex" board="nanoOldBootloader" verify>
Upload A Simple LED Blink firmware to arduino nano [<span class="upload-progress"></span>]
</button>
<br>
</body>
</html>