-
Notifications
You must be signed in to change notification settings - Fork 0
/
TurnONorOFFLights.js
33 lines (32 loc) · 964 Bytes
/
TurnONorOFFLights.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<script>
function encenderLed() {
fetch('http://192.168.43.212:80/encender', { method: 'POST' })
.then(response => {
if (response.ok) {
return response.text();
}
throw new Error('Error al encender el LED');
})
.then(data => {
actualizarEstado(data); // Actualizar el estado después de encender el LED
})
.catch(error => {
console.error('Error:', error);
});
}
function apagarLed() {
fetch('http://192.168.43.212:80/apagar', { method: 'POST' })
.then(response => {
if (response.ok) {
return response.text();
}
throw new Error('Error al apagar el LED');
})
.then(data => {
actualizarEstado(data); // Actualizar el estado después de apagar el LED
})
.catch(error => {
console.error('Error:', error);
});
}
</script>