Using Both Two Arduino nano 33 BLE boards and App.
App is a main controller which communicates two arduino nano 33 boards by Bluetooth.
and the two boards are also communicate with each other, exchanging information by Bluetooth.
Are these two designs feasible?
or
What is a feasible way?
running on a pair of ESP32 NodeMCU devices using Bluetooth Classic
File>Examples>BluetoothSerial>SerialToSerialBT using different BT names, e.g. ESP32test and ESPtest2
can pair to both devices
could select device and transmit/receive text etc etc
you should therefore be able to program the Nano 33 BLE devices to communicate with a BLE app
your app will have to select the device to communicate with, exchange data then close
the other device can then be selected etc etc
and I have a question about ESP32 device, such as,
While the app and the two boards communicate with ble, can the two boards also communicate with each other?
I was just using ESP32 device because I don't have any Nano 33 BLE
your Nano 33 BLEs should be able to communicate with the app like the ESP32s in post # 9
I should think they could also communicate with each other over BLE - probably not at same time as with a app - you would require some protocol
if you are thinking of using WiFi and BLE concurrently it is not possible either on the ESP32 or Nano 33 IOT
you can switch between the two
how often do the two Nanos need to communicate?
how often does the app communicate with the nanos?