apuntes_Arduino/README.md

108 lines
5.2 KiB
Markdown
Raw Permalink Normal View History

# Apuntes arduino
2021-01-05 00:30:20 -03:00
### Apuntes de implementación de librerias de uso frecuente.
2021-01-05 00:30:20 -03:00
Fragmentos de proyectos que usan instancias, metodos y funciones de librerias
de uso frecuente en proyectos con Arduino.
2021-01-05 00:30:20 -03:00
El fin de este respositorio es encontrar una guia rápida de como implementar
alguna solución a una futura necesidad.
2021-01-05 00:30:20 -03:00
Implementaciones :
2022-04-04 17:54:47 -04:00
- [Comunicación Serial](./serialCom/README.md#comunicación-serial)
- [EEPROM](./EEPROM/README.md#eeprom)
- [Buzzers/Speakers](./buzzer/README.md#parlantes-buzzers)
- [PWM](./pwm/README.md#pwm)
- [Leds](./leds/README.md#leds)
2022-04-04 15:22:18 -04:00
- [Led PWM](./leds/led_pwm/led_pwm.ino)
- [Led PWM2](./leds/led_pwm2/led_pwm2.ino)
- [Leds PWM 1](./leds/leds_pwm/leds_pwm.ino)
- [Leds PwM 2](./leds/leds_pwm2/leds_pwm2.ino)
- [Potenciomentro y Led](./leds/potenciomentro_led/potenciomentro_led.ino)
2022-04-04 15:22:18 -04:00
- [Led Dimmer](./leds/dimmer_led/dimmer_led.ino)
- [RGB](./leds/rgb/rgb.ino)
- [RGB 2](./leds/rgb2/rgb2.ino)
- [RGB 3](./leds/rgb3/rgb3.ino)
- [Serial Leds](./leds/serial_leds/serial_leds.ino)
2022-04-04 17:54:47 -04:00
- [Sensores](./sensores/README.md#sensores)
- Temperatura y Humedad
- [DHT-11](./sensores/dht11/dht11.ino)
- [DHT-21](./sensores/dht21/dht21.ino)
- Distancia
2022-04-04 17:54:47 -04:00
- [GP2Y0A21YK0F](./sensores/distancia/distancia_gp2y0a21yk0f/distancia_gp2y0a21yk0f.ino)
- [HC-SR04](./sensores/distancia/distancia_hc-sr04/distancia_hc-sr04.ino)
- Humedad Suelo
- [Humedad](./sensores/humedad/humedad/humedad.ino)
- [Humedad LCD](./sensores/humedad/humedad_lcd/humedad_lcd.ino)
- IR
- [Control remoto](./sensores/ir/control_remoto_IR/control_remoto_IR.ino)
- [Repector IR](./sensores/ir/ir_receiver/ir_receiver.ino)
- [Repector IR 2](./sensores/ir/ir_receiver2/ir_receiver2.ino)
- Proximidad
- [Movimiento](./sensores/proximidad/sensor_mov/sensor_mov.ino)
- [Movimiento 2](./sensores/proximidad/sensor_mov2/sensor_mov2.ino)
2022-04-04 17:54:47 -04:00
- [LCDs](./lcd/README.md#lcds)
2022-04-04 17:41:38 -04:00
- [Autoscroll](./lcd/README.md#autoscroll)
- [Caracter Personalizado](./lcd/README.md#caracter-personalizado)
- [Contador loops](./lcd/README.md#contador-loops)
- [i2c](./lcd/README.md#i2c)
- [I2C Scanner](./lcd/README.md#i2c-scanner)
- [I2C 20x4](./lcd/README.md#i2c-20x4)
- [Metodo de 8 bits](./lcd/README.md#metodo-8-bits)
- [Texto en Movimiento](./lcd/README.md#texto-en-movimiento)
2022-04-04 17:54:47 -04:00
- [Real Time Clock](./RTC/README.md#rtc)
- [Ejm Básico](./RTC/README.md#funciones-para-hora-y-fecha)
- [Ajuste Hora y Fecha](./RTC/README.md#ajuste-hora-y-fecha)
- [Ajuste Hora y Fecha según tiempo de compilación](./RTC/README.md#set-hora-y-fecha-segun-datos-de-compilacion)
- [Conexiones](./RTC/README.md#conexiones)
- [RTC LCD y Bluetooth](./RTC/README.md#rtc-lcd-y-bluetooth)
2022-04-04 17:54:47 -04:00
- [Motores](./motores/README.md#motores)
- [DC](./motores/README.md#dc)
- [9v](./motores/README.md#bateria-9v)
2022-04-04 17:41:38 -04:00
- [PWM Motor](./motores/README.md#pwm-motor)
- [L298N y Joystick](./motores/README.md#l298n-y-joystick)
- [Puente H](./motores/README.md#puente-h)
- [Puente H ISR](./motores/README.md#puente-h-isr)
- [Servo](./motores/README.md#servo)
- [Servo Joystick](./motores/README.md#servo-joystick)
- [Servo Led](./motores/README.md#servo-led)
- [Servo Termo](./motores/README.md#servo-termo)
- [Servos y potenciometros](./motores/README.md#servos-y-potenciometros)
- [Brushless](./motores/README.md#brushless)
2022-04-04 17:41:38 -04:00
- [Serial ESC](./motores/README.md#serial-esc)
- [Paso a paso](./motores/README.md#paso-a-paso)
- [Control PaP](./motores/README.md#control-pap)
2022-04-04 17:54:47 -04:00
- [Ajuste velocidad PaP](./motores/README.md#ajuste-velocidad-pap)
- [PaP](./motores/README.md#pap)
- [PaP 5v](./motores/README.md#pap-5v)
- [Stepper KeyStudio](./motores/README.md#stepper-keystudio)
2022-04-04 17:54:47 -04:00
- [BlueTooth](./bluetooth/README.md#bluetooth)
- [grbl](./grblUpload/README.md#grbl)
- [Pruebas](./tests/README.md#pruebas)
- **OK**
- [RealTimeClock](./tests/ok_rtc/ok_rtc.ino)
- [Joystick map Serial](./tests/ok_map_joystick_serial/ok_map_joystick_serial.ino)
- [4 Relay](./tests/ok_relay_x4/ok_relay_x4.ino)
- [lcd 2004](./tests/ok_lcd_2004/ok_lcd_2004.ino)
- [lcd DHT](./tests/ok_lcd_dht/ok_lcd_dht.ino)
- [lcd RTC](./tests/ok_lcd_rtc/ok_lcd_rtc.ino)
- [lcd 4 RTC](./tests/ok_lcd_rtc_x4/ok_lcd_rtc_x4.ino)
- [Mod](./tests/ok_mod/ok_mod.ino)
- [RTC DHT](./tests/ok_rtc_dht/ok_rtc_dht.ino)
- [SD read-write](./tests/ok_sd_read_write/ok_sd_read_write.ino)
- [RTC SD write](./tests/ok_sd_write_rtc/ok_sd_write_rtc.ino)
- [Oled-0.91 Graphs](./tests/ok_oled_0.91_graphs/ok_oled_0.91_graphs.ino)
- [ESP01](./tests/ok_esp01/ok_esp01.ino)
- [ESP php](./tests/ok_esp_php/ok_esp_php.ino)
- **Test**
- [ESP8266](./tests/test_esp8266/test_esp8266.ino)
- [ESP php](./tests/test_esp_php/test_esp_php.ino)
- [ArduinoMega](./tests/test_mega/test_mega.ino)
- [Mega ESP helloServer](./tests/test_mega_esp_helloServer/test_mega_esp_helloServer.ino)
- [Datos a puerto Serial](./tests/test_serial_datos_a_serie/test_serial_datos_a_serie.ino)
- [Serial a datos](./tests/test_serial_serie_a_datos/test_serial_serie_a_datos.ino)
- [UART ESP helloServer](./tests/test_uart_esp_helloServer/test_uart_esp_helloServer.ino)