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
| /* | |
| ESP32 Humedad, IR, Lux & Buzzer | |
| @author Crizacio | |
| @website crizacio.com | |
| 16/11/2024 | |
| */ | |
| #include <LiquidCrystal_I2C.h> // para usar el LCD con el protocolo I2C (parte de la libreria LiquidCrystal I2C de Frank de Brabander) | |
| #include <DHT.h> // para el sensor DHT (parte de la libreria de Adafruit Unified Sensor y DHT sensor library de Adafruit) | |
| #include "IRremote.hpp" // para el receptor IR (parte de la libreria IRremote de shirriff) |
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
| import os, time | |
| import argparse | |
| import requests # pip install request | |
| from bs4 import BeautifulSoup # pip install BeautifulSoup4 | |
| os.system("clear") | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-p', '--paradero', default='PD198', required=True) | |
| parser.add_argument('-m', '--micro', default='210') | |
| args = parser.parse_args() |
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
| import os, time | |
| import argparse | |
| import requests # pip install request | |
| from bs4 import BeautifulSoup # pip install BeautifulSoup4 | |
| os.system("clear") | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-t', '--tarjeta', default='12345678', required=True) | |
| parser.add_argument('-r', '--rut', default='0') | |
| parser.add_argument('-m', '--movimientos', default=3, type=int) |
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
| /* | |
| Controlador-PC for ESP32 Board. | |
| Features: | |
| - Wake on Lan any PC by ID | |
| - Uses mobizt/FirebaseClient | |
| By crizacio.com | |
| 16/08/2024 | |
| */ | |
| #include <Arduino.h> |