Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedroobando/esp32-simula-digital
ESP32 - un simulador de un display LCD y envia datos por usb
https://github.com/pedroobando/esp32-simula-digital
Last synced: about 1 month ago
JSON representation
ESP32 - un simulador de un display LCD y envia datos por usb
- Host: GitHub
- URL: https://github.com/pedroobando/esp32-simula-digital
- Owner: pedroobando
- Created: 2024-05-28T13:24:56.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-05T10:42:49.000Z (7 months ago)
- Last Synced: 2024-06-05T12:21:32.298Z (7 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Cliente ESP32 - LCD 16x2
Una sencilla aplicacion que crea un numero random cada 2.5 segundos segun el intervalo indicado, mostrandolo por el display LCD 16x02 y envia el mismo por el puerto RS232 a TTL conectado al ESP32, cuenta con un boton touch de reset.
Microcontrolador: _ESP32 Devkitc_v4_
Programa escrito en micropython
## Conexion Pines de LCD 16x2 HD44780 a ESP32
```
VCC => 5V
SDA => GPIO21
SLC => GPIO22
GND => GND
```## Conexion Pines de RS232 a ESP32
```
VCC => 3V
RXD => GPIO16
TXD => GPIO17
GND => GND
```## Conexion Pines del LED a ESP32
```
ANODO => GPIO33 (Dato enviado)
ANODO => GPIO32 (Encendido)
CATODO => GND
```## Conexion Pines TOUCH a ESP32
```
RESET => GPIO4
```## Variables
```
TOUCH_GPIO4 = GPIO del Sensor Tactil
MIN_RANGE = Rango minimo del numero
MAX_RANGE = Rango maximo del numero
SLEEP_RANGE = tiempo de retardo de semilla.
```