mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-12-19 10:45:57 +01:00
21 lines
606 B
HTML
21 lines
606 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>TinyUSB</title>
|
||
|
<script src="serial.js"></script>
|
||
|
<script src="application.js"></script>
|
||
|
<link rel="stylesheet" href="application.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="main-content">
|
||
|
<h1>TinyUSB - WebUSB RGB Example</h1>
|
||
|
<div class="connect-container">
|
||
|
<button id="connect" class="button black">Connect</button>
|
||
|
<span id="status"></span>
|
||
|
</div>
|
||
|
<div class="color-picker-container">
|
||
|
<input type="color" id="color_picker" value="#00ff00" class="color-picker">
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|