Skip to content

Instantly share code, notes, and snippets.

@esron
Created February 28, 2021 19:05
Show Gist options
  • Select an option

  • Save esron/a57190b3c1c6d16b766b20bb9cec92ab to your computer and use it in GitHub Desktop.

Select an option

Save esron/a57190b3c1c6d16b766b20bb9cec92ab to your computer and use it in GitHub Desktop.
Pagina pra testar os botões no ESP
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Esp 8266 Web Server</title>
<style>
html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}
.button { background-color: #4CAF50; border: none; color: white; padding: 16px 40px;
text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}
.button2 {background-color: #555555;}
</style>
</head>
<body>
<h1>ESP 8266 Web server</h1>
<p>Ventilador ligado</p>
<p><a href="./?pin1=ON"><button class="button">Ligar</button></a></p>
<p><a href="./?pin1=OFF"><button class="button button2">Desligar</button></a></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment