skip some examples

This commit is contained in:
me-no-dev
2020-05-12 01:48:34 +03:00
parent d349cdc08f
commit fbac930d7c
21 changed files with 18 additions and 31 deletions

View File

@ -3,7 +3,6 @@
//
//This example creates a bridge between Serial and Classical Bluetooth (SPP)
//and also demonstrate that SerialBT have the same functionalities of a normal Serial
#if CONFIG_IDF_TARGET_ESP32
#include "BluetoothSerial.h"
@ -28,7 +27,3 @@ void loop() {
}
delay(20);
}
#else
void setup() {}
void loop() {}
#endif

View File

@ -5,7 +5,6 @@
//it creates a bridge between Serial and Classical Bluetooth (SPP)
//this is an extention of the SerialToSerialBT example by Evandro Copercini - 2018
//
#if CONFIG_IDF_TARGET_ESP32
#include "BluetoothSerial.h"
@ -55,8 +54,3 @@ void loop() {
}
delay(20);
}
#else
void setup() {}
void loop() {}
#endif

View File

@ -10,7 +10,6 @@
//The only remedy is to delete this saved bound device from your device flash memory
//and pair with the other device again.
//
#if CONFIG_IDF_TARGET_ESP32
#include "esp_bt_main.h"
#include "esp_bt_device.h"
#include"esp_gap_bt_api.h"
@ -86,7 +85,3 @@ void setup() {
}
void loop() {}
#else
void setup() {}
void loop() {}
#endif

View File

@ -1,7 +1,6 @@
//Simple sketch to access the internal hall effect detector on the esp32.
//values can be quite low.
//Brian Degger / @sctv
int val = 0;
void setup() {
Serial.begin(9600);