Arduino program for analog measurements and Bluetooth communication
Go to file
matthias@arch 6654d5abcc fix link
2023-08-17 01:55:19 +02:00
host connect to arduino 2023-06-16 18:01:54 +02:00
teng added ArduinoBLE 2023-06-26 18:50:25 +02:00
.gitignore connect to arduino 2023-06-16 18:01:54 +02:00
README.md fix link 2023-08-17 01:55:19 +02:00

arduino-blume

Measure analog signal using an Arduino and Bluetooth communication. This program was written for (and tested with) the Arduino RP2040 Connect.

m-teng has a backend that can connect to the Arduino.

Configuration

See settings.hpp for which pin needs to be connected. The program uses 3 leds for displaying device status, however these are optional.

Installation

git clone https://github.com/MatthiasQuintern/arduino-blume
arduino-cli compile --profile nanorp
arduino-cli upload --profile nanorp

Communication via Bluetooth

The Arduino will advertise a Bluetooth Low Energy service which can be used to interact with the device.

Service UUID: 00010000-9a74-4b30-9361-4a16ec09930f

  1. status (uint8_t, rn): 00010001-9a74-4b30-9361-4a16ec09930f
    • 0: ERROR: error occured: invalid command received, can not advertise Bluetooth service, etc.
    • 1: BUSY
    • 2: WAIT_CONNECT: waiting for Bluetooth connection
    • 3: CONNECTED: connected, waiting for command
    • 4: MEASURING: connected, measurement running
  2. command (uint8_t, rw): 00010002-9a74-4b30-9361-4a16ec09930f send a command to the arduino:
    • 0 - STOP: stop active measurements
    • 1 - MEASURE_COUNT: measure count measurements with interval see count and interva below
    • 2 - MEASURE: measure with interval until interrupted see count below
  3. reading (uint16_t rn): 00010003-9a74-4b30-9361-4a16ec09930f the reading from the Arduinos analog pin
  4. count: (uint16_t, rw): 00010004-9a74-4b30-9361-4a16ec09930f set the number of measurements to take with MEASURE_COUNT
  5. interval: (uint16_t, rw): 00010005-9a74-4b30-9361-4a16ec09930f set the interval between measurements in ms