Embedded Computing
  • About
  • Blog
  • Hardware
    • Which Platform?
    • Controller Platforms >
      • Adafruit Platform
      • Arduino Plaform
      • BBC micro:bit
      • Espressif Platform
      • LaunchPad Plaform
      • Raspberry Pi Platform (MCU)
      • Seeeduino Platform
      • Teensy Plaform
    • Computer Platforms >
      • BeagleBone Platform
      • Raspberry Pi Platform (SBC)
      • UDOO Platform
    • Peripherals >
      • BoosterPacks for LaunchPads
      • Shields
      • Grove System
      • Sensors
      • Actuators
    • Displays >
      • E-Paper Displays
      • Reflective Displays
      • TFT Displays
      • LCD Displays
    • Legacy Platforms
  • Software
    • Exploring RTOS with Galaxia >
      • Event Library
      • Semaphore Library
      • Mailbox Library
      • Timer Library
      • Clock Library
      • SWI Library
      • Task Library
    • Ultra-Low Power with EnergyTrace >
      • Ultra-Low Power with MSP430
      • Ultra-Low Power with Energia MT and Galaxia
    • Using Integers Instead of Reals
  • IoT
    • IoT Platforms: Which Hardware?
    • IoT Services: Which Solution? >
      • Recommended IoT Solutions
      • Platform-Specific IoT Solutions
      • Other IoT Solutions
      • Not tested IoT Solutions
      • Notification Solutions
    • Get Date and Time from Internet with NTP
    • Fast and Easy WiFi Connection with QR-Code
  • Tools
    • How to Start?
    • Reference >
      • Asking for Help
      • Boards Pins Maps
      • Ruler
      • Boards and Plugs
      • I²C Logic Level Converter
      • Standards for Connectors
    • Training >
      • Texas Instruments Workshops
      • Embedded Systems: Shape The World — MOOC edX UTAustinX UT.6.02x
      • Embedded Systems - Shape The World: Microcontroller Input/Output — MOOC edX UTAustinX UT.6.10x
      • Embedded Systems - Shape The World: Multi-Threaded Interfacing — MOOC edX UTAustinX UT.6.20x
      • Real-Time Bluetooth Networks: Shape the World — MOOC edX UTAustinX UT.RTBN.12.01x
      • Systems Thinking with Texas Instruments Robotics System Learning Kit
    • Books >
      • Getting Started with the MSP430 LaunchPad
      • Getting Started with Arduino
      • Arduino Cookbook
    • IDE >
      • The Battle of IDEs >
        • Arduino IDE 2.0
      • More Options
      • Assessing the Next Generation of IDEs
      • Tools for Documentation
    • Equipment >
      • Saleae Logic Analyser
      • Rigol DS1102E Oscilloscope
      • XDS110 Debug Probe with EnergyTrace​
      • Segger J-Link Programmer-Debugger
      • Nordic Power Profiler Kit II
  • Projects
    • Libraries >
      • Master I²C Software Library
      • Date and Time Library
      • highView Library Suite
      • Others Libraries
    • smartDevices >
      • I²C smartColours Smart Sensor
      • I²C smartRFID Smart Sensor
      • I²C smartLED Display
      • I²C smartControls Smart Device
      • I²C smartWiFi Smart Device
      • I²C smartBLE Smart Device
      • I²C smartNode Smart Device
    • IoT Projects >
      • Remote e-Paper Pictures Panel
      • Remote e-Paper Messages Panel
      • Industrial IoT Project
      • Remote Contactless Temperature Monitor
      • Using Node-RED for IIoT
      • Low Power Home Network Weather Monitoring
      • Updated Low Power Home Network Weather Monitoring
      • Weather and Security Station with Blynk
      • SensorTag to Blynk Using Node-RED
      • Pervasive Reporting
    • AI Projects >
      • Colour Recognition with Neural Network
    • Other Projects >
      • Driving a Large E-Paper Display with a Compact Xiao RP2040
      • Low-Power E-Paper Weather Station
      • Portable Particulate​ Matter Monitor
      • FRAM-based E-Paper Screen Controller
      • General Purpose 3.5" Screen
      • Colour Recognition with Neural Network
      • A Low Power Weather Station
      • Digital Volt-Amp-Watt Meter
      • Mobile Measurement with LCD Display
      • Screen with SRAM for GUI
      • Volt-Amp-Watt-Meter for Grove
      • Multi-Touch Project with CapTIvate

Sensors BoosterPack

The Sensors BoosterPack is an update of the Sensor Hub BoosterPack with the same large list of sensors around two applications: a weather station and an inertial measurement unit (IMU). 

The weather station uses the following sensors:
  • Texas Instruments TMP007 infrared object temperature sensor (instead of the TMP006),
  • Texas Instruments OPT3001 Digital Ambient Light Sensor with High Precision Human Eye Response (instead of the Intersil ISL29023),
  • Bosch BME280 which combines thermometer, barometer and hydrometer (instead of the previous Bosch BMP180 and Sensirion SHT21).

The inertial measurement unit relies on two Bosch sensors (instead of the InvenSense MPU9150 IMU):
  • Bosch BMI160 which combines a 3-axis accelerometer and a 3-axis gyroscope,
  • Bosch BMM150 3-axis magnetometer.

Data fusion and Euler angles calculation are no longer carried out by the sensors, but by the MCU of the LaunchPad. This allows to obtain a 10 DoF IMU, or ten degrees of freedom inertial measurement unit with the altitude provided by the barometer.

​This BoosterPack has been updated with the Building Automation System Sensors BoosterPack.
Picture
Left, the Sensor Hub BoosterPack and right, the Sensors BoosterPack

Hardware

All the sensors are connected to the same I²C bus, requiring only 2 pins. Optionally, interrupts go through 5 GPIOs.

The BMM150 isn't connected to the main I²C bus, but to a secondary I²C bus managed by the BMI160. This allows the BMI160 to ensure an exact synchronisation when acquiring the 9 measures. Unfortunately, the documentation provided by Bosch is partial, and lacks both clarity and precision.

​As a consequence, Energia libraries are only available for the weather sensors, including TMP007, OPT3001 and BME280. The library is available at the GitHub repository Weather Sensors Library.
Picture

Pins Map

The BoosterPack requires 2 pins for the I²C bus and 5 GPIOs for the optional interrupts.
Picture

Conclusion

The Sensors BoosterPack is a nice update of the previous Sensor Hub BoosterPack. It provides an amazing range of sensors, very close to those featured on the SensorTag, and fits easily on the CC3200 LaunchPad for IoT applications.

However, the documentation from Bosch lacks both clarity and precision. and the libraries for the IMU sensors aren't available yet for Energia.

One year after, there is still no Energia-compatible library for the IMU sensors. I'd recommend using the BNO055 instead, which includes its own MCU to fusion data and calculate Euler angles quaternion, linear acceleration vector.

Picture

Pros

  • 7 sensors in one single BoosterPack though I²C port

Cons

  • Poor documentation for Bosch sensors
  • No Energia library for the IMU sensors

Wrap-Up

  • Perfect for a weather station
  • Fits in any IoT LaunchPad
  • No Energia-compatible library for IMU sensors

Links

  • Official Sensors BoosterPack page
  • Texas Instruments TMP007 sensor
  • Texas Instruments OPT3001 sensor
  • Bosch BME280 sensor
  • Bosch BMI160 sensor
  • Bosch BMM150 sensor
  • Weather Sensors Library for Energia
Picture

Posted: 10 Sept 2016
Edited: 12 Sept 2017, 
06 Apr 2020
Powered by Create your own unique website with customizable templates.