IoT Apps

    [Bluetooth] Get data from Arduino

    [Bluetooth] Get data from Arduino

    1. Blocks 2. Explaination BLE.ReadFloats read Float data from BLE with serviceUuid and characteristic Uuid. To update data we need to input clock component outside of ReadFloats block. After get data from ReadFloats block, we can get list of value from Floats Received block. Because value is stored in list, we need to get data from first index.

    [Bluetooth] Connecting Bluetooth

    [Bluetooth] Connecting Bluetooth

    1. Blocks for connecting to arduino 2. Explaination To connect arduino sensor, we need to initialize Service UUID and Characteristic UUID which we write code on *.ino. Three blocks, Scan, Connect, and Disconnect do tasks of named(Scanning BLE, Connecting BLE, Disconnecting BLE). Above blocks Send text massages when BLE is founded, connected, and disconnected.

    [Bluetooth] ArduinoBLE

    1. BLE for Bluetooth Low Energy The communications chipset on the Nano 33 BLE can be both a Bluetooth Low Energy and Bluetooth client and host device. Something pretty unique in the world of microcontroller platforms. 2. Usecase #include BLEService PressureService("46f4e26c-7351-4b3a-843c-223655a571b3"); BLEFloatCharacteristic PressureLevel("bdacf90a-7099-4086-b2d7-62622399b713", BLEWrite | BLER..

    [Guide] Talk To Me

    [Guide] Talk To Me

    1. Designer window The Designer is place where we create GUI of App or the look and feel. There are 4 compositions of Designer below : Palette : Can choose components Viewer : Arrange components Components List : Can see components in hierarchical view Properties : Cahgne components settings 2. The Blocks Editor There are Built-in blocks that have things like math, logic, and text. In order to g..