22 lines
660 B
HTML
Executable File
22 lines
660 B
HTML
Executable File
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Raspberry Pi Pico Web server - WIZnet W5100S</title>
|
|
</head>
|
|
<body>
|
|
<div align="center">
|
|
<H1>Raspberry Pi Pico Web server & WIZnet Ethernet HAT</H1>
|
|
<h2>Control LED</h2>
|
|
PICO LED state: <strong>OFF</strong>
|
|
<p><a href="/?led=on"><button class="button">ON</button></a><br>
|
|
</p>
|
|
<p><a href="/?led=off"><button class="button button2">OFF</button></a><br>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|