Dispositivo werable que coleta informações biológicas e interage como um controlador MIDI. Permite uma nova interface musical baseado em biofeedback
Bracelete
-
Bateria Lítio
https://www.filipeflop.com/blog/alimentar-esp32-com-bateria/ https://randomnerdtutorials.com/power-esp32-esp8266-solar-panels-battery-level-monitoring/ https://www.filipeflop.com/produto/modulo-carregador-de-bateria-de-litio-tp4056/
https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/sleep_modes.html
- MIDI por BLE
https://developer.android.com/guide/topics/connectivity/bluetooth-le?hl=pt-br https://learn.sparkfun.com/tutorials/midi-ble-tutorial/all https://www.novelbits.io/bluetooth-gatt-services-characteristics/ https://circuitdigest.com/microcontroller-projects/esp32-ble-server-how-to-use-gatt-services-for-battery-level-indication
- Movimento
- Orientação
- Rotação
- Batimento cardiaco
- Oxigenação
- Temperatura
- Sons do Musculo
- Distancia entre os dispositivos, por RSSI, no caso de multiplos aparelhos
- Esp32-WROOM-32
- Acelerometro e Giroscópio - MPU-6050
- Carregador de bateria - TP4056
- Microfone I2S - MEMS MSM261S4030H0
- Temperatura - Bmp280
- Frequencia cardíaca - Sensor optico
- Led RGB
Led RGB para representar
- WS
- Conectado para configuração
- Nivel de bateria
Touch
- Electron (GUI) + Python (MIDI)
- sound frequencies that compose the muscle sound (from 1 Hz up to 140 Hz)
https://diyi0t.com/i2s-sound-tutorial-for-esp32/ https://diyi0t.com/reduce-the-esp32-power-consumption/
https://www.youtube.com/watch?v=QREKVWaZLi4 https://github.com/ikostoski/esp32-i2s-slm
https://github.com/fakufaku/esp32-fft
- BLE - MIDI https://github.com/lathoub/Arduino-BLE-MIDI
ATT defines how a server exposes its data to a client and how this data is structured. There are two roles within the ATT:
-
Server:
Exposes the data it controls or contains. Accepts incoming commands from a peer device and sends responses, notifications, and indications
-
Client:
Interfaces with the server with the purpose of reading the server’s exposed data and/or controlling the server’s behavior
The data that the server exposes is structured as attributes:
-
Attribute type (Universally Unique Identifier or UUID):
This is a 16-bit number (in the case of Bluetooth SIG-Adopted Attributes), or 128-bit number (in the case of custom attribute types defined by the developer, also sometimes referred to as vendor-specific UUIDs)
-
Attribute Handle:
This is a 16-bit value that the server assigns to each of its attributes — think of it as an address.
-
Attribute Permissions:
Permissions determine whether an attribute can be read or written to, whether it can be notified or indicated, and what security levels are required for each of these operations. These permissions are not defined or discovered via the Attribute Protocol (ATT) but rather defined at a higher layer (GATT layer or Application layer).
- Test