Search found 6 matches

by Lelouch
Wed Jun 06, 2018 4:04 pm
Forum: ESP32 Arduino
Topic: ESP32 BLE
Replies: 0
Views: 2393

ESP32 BLE

Hello i have read that the BLE Devices only send Data within an time intervall and the Bluetooth classic continuous which makes the BLE LOW Energy. So i am not sure if BLE in my project rly works, because i have an esp32 as peripheral device and my Smartphone(Central) App to receive Sensordata over ...
by Lelouch
Sun Mar 04, 2018 11:32 pm
Forum: ESP32 Arduino
Topic: ESP32 Bluetooth Slider LED App
Replies: 3
Views: 5802

Re: ESP32 Bluetooth Slider LED App

Hey now with this code: std::string rxValue = pCharacteristic->getValue(); if (rxValue.length() > 0) { int light = map(rxValue.length(),10,49,0,255); Serial.println(rxValue.length()); dacWrite(LED,light); i only get 4 4 4 .... what do i have to write instead of length ? btw: I think I recieve string...
by Lelouch
Sun Mar 04, 2018 1:37 am
Forum: ESP32 Arduino
Topic: ESP32 Bluetooth Slider LED App
Replies: 3
Views: 5802

ESP32 Bluetooth Slider LED App

Hey I have an app which can read sensor values from the esp32 over BLE and i can also write to the seriell monitor. Now i wanted to make an Slider to controll the brightness of a LED. I found an nice example but it didnt work for me because he uses a arduino101 and has the analogWrite command which ...
by Lelouch
Mon Feb 19, 2018 6:04 pm
Forum: ESP32 Arduino
Topic: ESP32 BLE Server Client Raspi
Replies: 0
Views: 2528

ESP32 BLE Server Client Raspi

Hey

i manged to make an app which can connect to my esp32 (BLE_Uart with some changes) for RX TX communication.
How can I use the Raspberry Pi 3(image Stretch) as Central/Client?
thanks
by Lelouch
Sun Feb 18, 2018 1:36 pm
Forum: ESP32 Arduino
Topic: Eddystone with Sensor Dats
Replies: 1
Views: 3671

Eddystone with Sensor Dats

Hey

is it possible to make an Eddystone Beacon with the ESP32 which also transmits the Sensor Data from an connected DHT22?

thank you
by Lelouch
Wed Feb 14, 2018 4:33 am
Forum: ESP32 Arduino
Topic: ESP32 BL/BLE
Replies: 1
Views: 3341

ESP32 BL/BLE

Hello first of all sry for my bad english and I hope you will understand what im here for. I think its more an question about bluetooth than esp32.. sry^^ in the IDE there are some examples such as BLE_Server and BLE_UART I do not rly understand what the diffrence is ?.. because i want to make an ap...