Hola, estoy probando la placa ESP32, y estaba acoplando un código que me funciono con un Arduino uno, en una placa ESP32; pero no me funciona igual, no sé que estoy haciendo mal.
Diagrama
Codigo
//This example code is in the Public Domain (or CC0 licensed, at your option.)
//By Evandro Copercini - 2018
//
//This example creates a bridge between Serial and Classical Bluetooth (SPP)
//and also demonstrate that SerialBT have the same functionalities of a normal Serial
#include "BluetoothSerial.h"
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif
#if !defined(CONFIG_BT_SPP_ENABLED)
#error Serial Bluetooth not available or not enabled. It is only available for the ESP32 chip.
#endif
BluetoothSerial SerialBT;
int pinOut = 12;
int maleta = 23;
void setup() {
Serial.begin(115200);
SerialBT.begin("ESP32test"); //Bluetooth device name
Serial.println("The device started, now you can pair it with bluetooth!");
pinMode(pinOut, OUTPUT);
}
void loop() {
if (Serial.available()) {
SerialBT.write(Serial.read());
}
if (SerialBT.available())
{
char data = ((byte) SerialBT.read());
switch (data)
{
case 'P':
digitalWrite (pinOut, HIGH);
//Hacemos un delay de 1 segundo
delay (800);
digitalWrite (pinOut, LOW);
break;
case 'b':
digitalWrite(maleta, HIGH);
delay(800);
digitalWrite(maleta, LOW);
break;
default : break;
}
Serial.println(data);
}
delay(20);
}
El serial monitor recibe el comando P, desde la app de android, pero no enciende el led.
Y esta es la configuración que uso para la board ESP32-WROOM-32U-DEVKIT