#include <Adafruit_SH110X.h>
#include <Wire.h>
Adafruit_SH1106G display = Adafruit_SH1106G(128, 64, &Wire, -1);
#define botonPin 12 // pin entrada de la llave
#define ledPin2 2 // pin salida led azul
const int potePin = 32;
const int ledPin23 = 23; //led rojo tiene que ser 25 o 26
volatile int estadoPote;
volatile int valorDac;
volatile int limite = 127;
volatile int contador = 0;
String ledA = " ";
String contadorBoton = " ";
String ledV = " ";
String ledR = " ";
volatile bool estadoBoton = HIGH;
// Gamma table from https://learn.adafruit.com/led-tricks-gamma-correction/the-quick-fix
const uint8_t PROGMEM gamma8[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2,
2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5,
5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10,
10, 10, 11, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16,
17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 24, 24, 25,
25, 26, 27, 27, 28, 29, 29, 30, 31, 32, 32, 33, 34, 35, 35, 36,
37, 38, 39, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 50,
51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68,
69, 70, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89,
90, 92, 93, 95, 96, 98, 99, 101, 102, 104, 105, 107, 109, 110, 112, 114,
115, 117, 119, 120, 122, 124, 126, 127, 129, 131, 133, 135, 137, 138, 140, 142,
144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 167, 169, 171, 173, 175,
177, 180, 182, 184, 186, 189, 191, 193, 196, 198, 200, 203, 205, 208, 210, 213,
215, 218, 220, 223, 225, 228, 231, 233, 236, 239, 241, 244, 247, 249, 252, 255
};
void setup() {
// put your setup code here, to run once: 115200
Serial.begin(9600);
Serial.println("Hello, ESP32!");
pinMode(potePin, INPUT); //config entrada del potenciómetro
pinMode(ledPin23, OUTPUT); //se configura la salida del led Rojo
analogReadResolution(8); // resolución de lectura de 8 bits, 256 valores posibles
pinMode(botonPin, INPUT_PULLUP); // PULLUP pone un 0 logico cuando se apreta el pulsador
pinMode(ledPin2, OUTPUT);
digitalWrite(ledPin2, estadoBoton); // escribe el estado del boton en HIGH 1
//Relay
pinMode(4, OUTPUT);
//Inicializar pantalla OLED
display.begin(0x3c, true); //Dirección por defecto: 0x3C y rotación: true
display.setTextSize(0); //tamaño del texto= 1
display.setTextColor(SH110X_WHITE); //color del texto
updateOLEDMod("OLED Module ON!");
}
void loop() {
display.clearDisplay();
display.setCursor(0,0);
int estadoLED = digitalRead(botonPin); // lee estado llave (botón)
if ( estadoLED == LOW){ //si fue presionado
estadoBoton = !estadoBoton; //se invierte el estado del botón
digitalWrite(ledPin2, estadoBoton);
contador++;
}
Serial.println("Pulsador: " + String(contador) + " acciones");
// updateOLEDMod("Pulsador: " + String(contador) + " acciones");
contadorBoton = "Pulsador: " + String(contador) + " acciones";
if (estadoBoton == LOW){
Serial.println("LED A: encendido");
// updateOLEDMod("LED A: encendido");
ledA = "LED A: encendido";
} else {
Serial.println("LED A : apagado");
// updateOLEDMod("LED A: apagado");
ledA = "LED A: apagado";
}
// updateOLEDMod(ledA);
// conectado a GND, se prende con un 0 logico
//Serial.print("Boton: ");
//Serial.print(estadoBoton);
estadoPote=analogRead(potePin);
valorDac=pgm_read_byte(&gamma8[estadoPote]);
analogWrite(ledPin23, valorDac);
// Imprimir estado de led azul
// Porcentaje de intensidad del rojo
Serial.print("Led R: ");
Serial.print( valorDac*100 / 255);
Serial.println(" % de potencia");
// updateOLEDMod ( "LED R: " + String(valorDac*100 / 255) + " % de potencia ");
ledR = "LED R: " + String(valorDac*100 / 255) + " % de potencia ";
if (estadoPote > limite) {
digitalWrite(4, HIGH);
Serial.println("Led V: Encendido");
// updateOLEDMod ("Led V: Encendido");
ledV = "Led V: Encendido";
} else {
digitalWrite(4, LOW);
Serial.println("Led V: Apagado");
// updateOLEDMod ("Led V: Apagado");
ledV = "Led V: Apagado";
}
updateOLEDMod(contadorBoton + "\n" + ledA + "\n" + ledR + "\n" + ledV);
// put your main code here, to run repeatedly:
delay(150); // this speeds up the simulation
}
void updateOLEDMod(String txt){
display.println(txt);
display.display();
}