Search found 11 matches
- Tue Jul 02, 2019 6:20 am
- Forum: ESP32 Arduino
- Topic: Ble Server Connecting to Ble Client
- Replies: 6
- Views: 7627
Re: Ble Server Connecting to Ble Client
If the client is advertising, the I can connect to the client and write the characteristics? Sorry I am super late in replying.. Yes, if client is advertising then you can connect to it and then you can write from client to server characteristics. I am actually trying to scan and transmit data via ...
- Mon Jul 01, 2019 5:58 am
- Forum: ESP32 Arduino
- Topic: Ble Server Connecting to Ble Client
- Replies: 6
- Views: 7627
Re: Ble Server Connecting to Ble Client
I am actually trying to scan and transmit data via bluetooth together, with a single antenna, I think it is not possible without stopping the scan. There is another thing, esp32 wrover-b module with ipex antenna, if I use this module, and attach another antenna, is it possible for me to use 1 antenn...
- Mon Jul 01, 2019 5:54 am
- Forum: ESP32 Arduino
- Topic: Ble Server Connecting to Ble Client
- Replies: 6
- Views: 7627
Re: Ble Server Connecting to Ble Client
If the client is advertising, the I can connect to the client and write the characteristics? Sorry I am super late in replying..
- Thu Jun 27, 2019 8:00 am
- Forum: ESP32 Arduino
- Topic: How to make connection between ESP32 and ESP8266
- Replies: 5
- Views: 9456
Re: How to make connection between ESP32 and ESP8266
in my opinion the answer is related to the requirements: how much data do you want to send (bandwidth)? how important is a stable connection to you (all bytes arrive correctly)? do you want to have a radio or wire connection? There are e.g. SPI, I2C, Serial, Bluetooth, Radio. The fastest and safest...
- Thu Jun 27, 2019 7:55 am
- Forum: ESP32 Arduino
- Topic: Ble Server Connecting to Ble Client
- Replies: 6
- Views: 7627
Ble Server Connecting to Ble Client
Hello, I am trying to create a scenario, where a bleServer scans for beacontags and once the scan is complete , It will connect to bleClient and send the data. Now i saw the example codes of both ble server and client. The regular way was for the bleClient to scan for bleServer and connect to it and...
- Fri Dec 14, 2018 1:05 pm
- Forum: ESP32 Arduino
- Topic: How to make connection between ESP32 and ESP8266
- Replies: 5
- Views: 9456
Re: How to make connection between ESP32 and ESP8266
sda scl was no luck, try using serial communication using hardware serial library. use gpio 16 17, rx and tx. Those once worked for me, if you can make others work do tell me how you did it.
- Mon Dec 03, 2018 6:32 am
- Forum: ESP32 Arduino
- Topic: Communication between ESP32 and ESP8266 through SDA and SCL
- Replies: 3
- Views: 6344
Re: Communication between ESP32 and ESP8266 through SDA and SCL
I got it work through serial communication. But thanks for the help.
- Tue Nov 27, 2018 7:14 am
- Forum: ESP32 Arduino
- Topic: Communication between ESP32 and ESP8266 through SDA and SCL
- Replies: 3
- Views: 6344
Re: Communication between ESP32 and ESP8266 through SDA and SCL
https://www.arduino.cc/en/Tutorial/MasterWriter Sorry for the late reply, I followed the link and also the code, but I am not getting any output on the serial monitor. In my case the Nodemcu32s is the master and esp8266 nodemcu is the slave. D1 and D2 is the sda and scl for esp8266. But I am not ge...
- Sun Nov 18, 2018 10:15 pm
- Forum: ESP32 Arduino
- Topic: How to make connection between ESP32 and ESP8266
- Replies: 5
- Views: 9456
Re: How to make connection between ESP32 and ESP8266
i am currently trying the same thing, have you been successfull? I am trying to make it happen using SDA and SCL
- Sun Nov 18, 2018 8:33 pm
- Forum: ESP32 Arduino
- Topic: is it possible to work with 2 setup() functions and 2 loop() within the ESP32-Arduino enviroment
- Replies: 10
- Views: 21860
Re: is it possible to work with 2 setup() functions and 2 loop() within the ESP32-Arduino enviroment
Sorry to jump into an old post, but since we are talking about cores in ESP32, and as stated in the above comments that the 2nd core is used for BLE+WIFI, my small doubt is, can I use 1 core for BLE and 1 Core for Wifi?