Skip to content

Instantly share code, notes, and snippets.

@giljr
Last active January 17, 2020 23:47
Show Gist options
  • Save giljr/a598374c1dc0d102e87b6d2ccf10bc9c to your computer and use it in GitHub Desktop.
Save giljr/a598374c1dc0d102e87b6d2ccf10bc9c to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<title>Arduino</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrap">
<h3>Red:</h3>
<input id="red" type="range" min="0" max="255" step="1" value="0">
<h3>Green:</h3>
<input id="green" type="range" min="0" max="255" step="1" value="0">
<h3>Blue:</h3>
<input id="blue" type="range" min="0" max="255" step="1" value="0">
<script src="/socket.io/socket.io.js"></script>
<script src="./client.js"></script>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment