Last active
January 17, 2020 23:47
-
-
Save giljr/a598374c1dc0d102e87b6d2ccf10bc9c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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