All Projects → Sensirion → arduino-ble-gadget

Sensirion / arduino-ble-gadget

Licence: BSD-3-Clause license
Create your own Do-It-Yourself BLE enabled sensor gadget on the ESP32 platform.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to arduino-ble-gadget

ESP32BleAdvertise
Simple library for BLE advertise using ESP32 in Arduino
Stars: ✭ 39 (+25.81%)
Mutual labels:  esp32, bluetooth, ble, arduino-library
Esp32 Ble Keyboard
Bluetooth LE Keyboard library for the ESP32 (Arduino IDE compatible)
Stars: ✭ 533 (+1619.35%)
Mutual labels:  esp32, bluetooth, ble, arduino-library
Esp32 Ble Mouse
Bluetooth LE Mouse library for the ESP32 (Arduino IDE compatible)
Stars: ✭ 180 (+480.65%)
Mutual labels:  esp32, bluetooth, ble, arduino-library
Nimble Arduino
A fork of the NimBLE library structured for compilation with Ardruino, designed for use with ESP32.
Stars: ✭ 108 (+248.39%)
Mutual labels:  esp32, bluetooth, ble
Arduino-BLE-MIDI
MIDI over Bluetooth Low Energy (BLE-MIDI) 1.0 for Arduino
Stars: ✭ 133 (+329.03%)
Mutual labels:  esp32, ble, arduino-library
Open Home Automation
Open Home Automation with Home Assistant, ESP8266/ESP32 and MQTT
Stars: ✭ 820 (+2545.16%)
Mutual labels:  esp32, ble, diy
Esp32 Ble2mqtt
A BLE to MQTT bridge running on an ESP32
Stars: ✭ 301 (+870.97%)
Mutual labels:  esp32, bluetooth, ble
Irremoteesp8266
Infrared remote library for ESP8266/ESP32: send and receive infrared signals with multiple protocols. Based on: https://github.com/shirriff/Arduino-IRremote/
Stars: ✭ 1,964 (+6235.48%)
Mutual labels:  communication, esp32, arduino-library
Pedalinomini
Same features of Pedalino™ in a compact form.
Stars: ✭ 139 (+348.39%)
Mutual labels:  esp32, bluetooth, ble
Esp32 Blecollector
ᛡᛒ BLE Scanner + Data persistence on SD Card for M5Stack, Odroid-Go, ESP32-Wrover-Kit and other models
Stars: ✭ 145 (+367.74%)
Mutual labels:  esp32, bluetooth, ble
Web Bluetooth Terminal
Progressive Web Application for serial communication with your own Bluetooth Low Energy (Smart) devices
Stars: ✭ 130 (+319.35%)
Mutual labels:  communication, bluetooth, ble
bluetooth-terminal
ES6 class for serial communication with your own Bluetooth Low Energy (Smart) devices
Stars: ✭ 43 (+38.71%)
Mutual labels:  communication, bluetooth, ble
ChromeBluetooth
Demo of a "Stress Display" using Chrome Bluetooth. Reads Heart-rate data, and displays "stress" colors to a smart bulb. (Uses a SBT5007 smart bulb)
Stars: ✭ 14 (-54.84%)
Mutual labels:  bluetooth, ble
ESP-Alerts-for-Android
Send Android Notifications to an ESP32 with OLED display
Stars: ✭ 42 (+35.48%)
Mutual labels:  esp32, ble
SerialTransfer
Arduino library to transfer dynamic, packetized data fast and reliably via Serial, I2C, or SPI
Stars: ✭ 273 (+780.65%)
Mutual labels:  communication, arduino-library
ble2mqtt
A BLE to MQTT bridge
Stars: ✭ 60 (+93.55%)
Mutual labels:  bluetooth, ble
mi-lamp-re
💡 Reverse Engineering Notes for the Yeelight Bedside Lamp (BLE)
Stars: ✭ 35 (+12.9%)
Mutual labels:  bluetooth, ble
PMserial
Arduino library for PM sensors with serial interface
Stars: ✭ 41 (+32.26%)
Mutual labels:  esp32, arduino-library
easyble
A simple framework for Android Bluetooth Low Energy (BLE)
Stars: ✭ 43 (+38.71%)
Mutual labels:  bluetooth, ble
bluetooth-iot-service-python
This application connects two devices over Bluetooth and allows one to send messages to the other using json. Raspberry Pi Bluetooth interfacing with Linux via RFCOMM BT network
Stars: ✭ 23 (-25.81%)
Mutual labels:  bluetooth, ble

Sensirion Gadget BLE Lib

This library enables you to create your own Do-It-Yourself BLE enabled sensor gadget on the ESP32 platform.

Key features are

  • Live sensor value broadcasting without requiring a BLE connection
  • Simultaneous monitoring of sensor data from multiple BLE clients
  • Sensirion MyAmbience CO2 App compatibility - allows you to monitor your gadgets, plot the sensor values and share/export the data.
  • Buffering of sensor data for later download (sensor history download)

Please see the examples provided as reference on how to use this library.

Important points to keep in mind:

  • writeXX writes the corresponding sensor values to the library. But the values are not published to the BLE stack until commit has been called
  • Keep the loop delay at 3ms, to allow the library to provide history data to the smart phone applications and other BLE clients nearby. Increasing this delay will slow down the download process.
  • To allow history data downloads, you need to have the handleEvents function within the loop.

Recommended Hardware

This project was developed and tested on Espressif ESP32 DevKitC hardware (see e.g. ESP32-DevKitC-32D)

Mobile App Support

Download the Sensirion MyAmbience CO2 App to monitor your gadget, plot the sensor values and share/export the data:

Getting Started

  1. Download Arduino IDE and setup the environment for ESP32 platform
  2. Connect your ESP32 DevKit to your computer and launch the Arduino IDE
  3. In the Arduino IDE, make sure you have the ESP32 Dev Module selected and the PSRAM Disabled
  4. Download the library's release zip and unpack it into your Arduino's library path.
  5. Select File -> Examples -> Sensirion Gadget BLE Lib -> Example 1
  6. Click the upload button

Create your own CO2 Monitor

Follow the instructions in this tutorial.

Repository Contents

  • /examples - Example sketches for the library (.ino). Run these from the Arduino IDE.
  • /src - Source files for the library (.cpp, .h).
  • library.properties - General library properties for the Arduino package manager.

License

See LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].