All Projects → lab11 → socitrack

lab11 / socitrack

Licence: Apache-2.0 license
A wearable platform for social interaction studies

Programming Languages

c
50402 projects - #5 most used programming language
assembly
5116 projects
matlab
3953 projects
python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to socitrack

IoT-iBeacon
An Ionic app for indoor localization and navigation using BLE iBeacons.
Stars: ✭ 39 (+143.75%)
Mutual labels:  localization, ble
powerblade
1 in² AC power meter
Stars: ✭ 50 (+212.5%)
Mutual labels:  university-project, ble
Odas
ODAS: Open embeddeD Audition System
Stars: ✭ 435 (+2618.75%)
Mutual labels:  tracking, localization
contiki-uwb
Contiki OS, Glossy and Crystal port for the DecaWave EVB1000 and DWM1001 platforms featuring the DW1000 UWB transceiver
Stars: ✭ 22 (+37.5%)
Mutual labels:  localization, uwb
Polypoint
Indoor localization based on the DecaWave DW1000.
Stars: ✭ 119 (+643.75%)
Mutual labels:  localization, ble
Dynamic robot localization
Point cloud registration pipeline for robot localization and 3D perception
Stars: ✭ 339 (+2018.75%)
Mutual labels:  tracking, localization
Odas web
A desktop visualization GUI for the ODAS library
Stars: ✭ 78 (+387.5%)
Mutual labels:  tracking, localization
csv-localizer
Command Line Interface that convert CSV file to iOS, Android or JSON localizable strings
Stars: ✭ 84 (+425%)
Mutual labels:  localization
notebookJS
notebookJS: seamless JavaScript integration in Python Notebooks
Stars: ✭ 149 (+831.25%)
Mutual labels:  interaction
I18N-Portable
Simple and cross platform internationalization/translations for Xamarin and .NET
Stars: ✭ 102 (+537.5%)
Mutual labels:  localization
ReactZooApp
ReactZooApp
Stars: ✭ 33 (+106.25%)
Mutual labels:  interaction
ridesharing-ios
Ridesharing driver & rider sample apps using HyperTrack SDK
Stars: ✭ 97 (+506.25%)
Mutual labels:  tracking
yolo deepsort
Fast MOT base on yolo+deepsort, support yolo3 and yolo4
Stars: ✭ 47 (+193.75%)
Mutual labels:  tracking
learnrxjs
Русскоязычная документация RxJS
Stars: ✭ 20 (+25%)
Mutual labels:  localization
m2.TrackingLink
Magento2. Extension add Tracking Url in Shipment Email.
Stars: ✭ 35 (+118.75%)
Mutual labels:  tracking
go-l10n
Lightweight yet powerful continuous localization solution for Go, based on Serge and Plurr.
Stars: ✭ 32 (+100%)
Mutual labels:  localization
Mobile Phone Tracking
This repository is source code for some of the attacks defined in this paper (https://arxiv.org/pdf/1703.02874v1.pdf). Not all attacks will be available. Please read the README.md
Stars: ✭ 20 (+25%)
Mutual labels:  tracking
ngx-translate-module-loader
Highly configurable and flexible translations loader for @ngx-translate/core
Stars: ✭ 31 (+93.75%)
Mutual labels:  localization
gtm-guidelines
A collection of best practices for your daily Google Tag Manager routine
Stars: ✭ 39 (+143.75%)
Mutual labels:  tracking
learn flutter theme
Learn flutter theme in this project
Stars: ✭ 30 (+87.5%)
Mutual labels:  localization

SociTrack

SociTrack is a system for using ultra-wideband RF time-of-flight processing to perform indoor ranging and localization. It incorporates the SquarePoint module, containing a DecaWave DW1000 radio for UWB packet transmission and timestamping. This module provides node-to-node ranges over an I2C interface which can then be stored locally or transmitted externally.

If you would be interested in incorporating the SociTrack system or TotTag devices into your future research, please fill out this Interest Form

Hardware

The SociTrack system is composed of several hardware pieces. At its core is the SquarePoint module, a 30mm x 15mm PCB that encompasses all of the core ranging hardware and firmware. SquarePoint is provided as an EAGLE board that allows for direct integration as a design block as part of the Lab11 EAGLE library. One example of a project that uses the SquarePoint module is the TotTag, which comprises an all-in-one tracking and localization system for mobile nodes. The TotTag hardware includes three UWB antennas and a Bluetooth Low Energy (BLE) radio, plus a battery charging circuit, SD card for data logging, accelerometer, USB connectivity, and integrated sensor fusion. TotTag is able to provide ranges and position estimates directly to a mobile phone application in real-time and can be configured on-the-fly using a simple user interface over Summon.

SquarePoint

SquarePoint, an EAGLE design block for UWB ranging, includes the following components:

  • DecaWave DW1000 UWB radio
  • STMicroelectronics STM32F091CCU6 MCU
  • RF switch

The MCU contains all of the necessary code to control the DW1000 and run the ranging protocol. This module provides a simple abstraction layer for quick integration with a carrier board over an I2C interface without having to worry about any underlying implementation details.

TotTag

TotTag Front

The TotTag is a self-contained PCB which utilizes SquarePoint to provide ranging data for human interaction tracking. It includes:

  • The SquarePoint module
  • 3 UWB antennas
  • Nordic Semiconductors nRF52840 BLE radio
  • 3.3V LDO designed to be used with 4.2V LiPo batteries
  • Battery charge management controller
  • SD card holder
  • microUSB connector including FTDI FT232R for debugging
  • 3-axis accelerometer

The TotTag is designed to be a device that can be used as a ranging anchor, a mobile tag, or a hybrid combination of both. It offers both infrastructure-free and infrastructure-based network processing and allows for centimeter-accurate, multi-day deployments. Both the schematic and board design are open-source and can be found in the hardware/tottag folder; a suitable 3D printable case is also provided in hardware/cad/tottag-case.

Software

The SociTrack software is freely available as an open-source Git repository. When cloning this repository, be sure to do

git clone --recursive https://github.com/lab11/socitrack.git

or to later run

git submodule init && git submodule sync

so that all submodules are cloned as well. All of the supporting libraries and build tools are in submodules for the various hardware platforms used in this project.

SquarePoint

Found in software/squarepoint, the core firmware that enables the SquarePoint module to work includes all of the logic implementing our custom ranging protocol on top of the DecaWave DW1000 UWB radio. It makes use of frequency and antenna diversity and leverages both one-way and two-way ToF ranging to achieve efficient and reliable ranging in various environments. The firmware architecture supports multiple runtime modalities that can be selected on-the-fly; currently, we officially support:

  • Standard: the full ranging protocol, using maximal diversity to achieve highly-reliable ranging measurements over 30 different channels.
  • Calibration: automatically triggered by our calibration scripts, allowing for automated board-specific calibration functions which are then applied to future ranging measurements.

TotTag

The TotTag code, located in software/tottag, implements a BLE application that uses the SquarePoint module as an I2C slave and provides for external BLE connectivity. It exposes BLE services to configure and enable the device, to set the current time to enable accurate timestamping of ranging data, as well as to access ranging data in real-time.

Mobile App and BLE

The tools in the software/tottag/mobile_app directory interact with TotTag and read data across the BLE interface. They uses the Summon app (Google Play, App Store) to easily access and interact with the TotTag devices. The target website must be configured in the TotTag code and can be hosted on a personal domain; we recommend the use of a link shortener to reduce the BLE advertisement length.

Linux Development

This project requires the GNU ARM Embedded Toolchain. Please be aware that the some Linux distros provide out-of-date versions of this tool; as such, we strongly recommend that you install the newest version directly from ARM.

Related Publications

  • Andreas Biri, Neal Jackson, Lothar Thiele, Pat Pannuto, and Prabal Dutta. 2020. SociTrack: Infrastructure-Free Interaction Tracking through Mobile Sensor Networks. In The 26th Annual International Conference on Mobile Computing and Networking (MobiCom ’20), September 21–25, 2020, London, United Kingdom. ACM, New York, NY, USA, 14 pages. https://doi.org/10.1145/3372224.3419190

  • Andreas Biri, Pat Pannuto, and Prabal Dutta. 2019. Demo Abstract: Tot-Ternary - A Wearable Platform for Social Interaction Tracking. In The 18th International Conference on Information Processing in Sensor Networks (co-located with CPS-IoT Week 2019) (IPSN ’19), April 16-18, 2019, Montreal, QC, Canada. ACM, New York, NY, USA, 2 pages. https://doi.org/10.1145/3302506.3312486

  • Benjamin Kempke, Pat Pannuto, Bradford Campbell, and Prabal Dutta. 2016. Surepoint: Exploiting ultra wideband flooding and diversity to provide robust, scalable, high-fidelity indoor localization. In Proceedings of the 14th ACM Conference on Embedded Network Sensor Systems (SenSys ’16), November 14-16, 2016, Stanford, CA, USA. ACM, New York, NY, USA, 13 pages. https://doi.org/10.1145/2994551.2994570

  • Benjamin Kempke, Pat Pannuto, and Prabal Dutta. 2015. Polypoint: Guiding indoor quadrotors with ultra-wideband localization. In Proceedings of the 2nd International Workshop on Hot Topics in Wireless (HotWireless ’15), September 11, 2015, Paris, France. ACM, New York, NY, USA, 5 pages. https://doi.org/10.1145/2799650.2799651

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].