Skip to main content

Tactigon Gear SDK to connect to Tactigon Skin wereable platform

Project description

Tactigon Gear SDK

The tactigon team

WARNING!!!

This project is now discontinued, please refer to the new Tactigon Gear

This package enables the wearable device Tactigon Skin to connect to your python project using Bluetooth Low Energy.

SDK version: 3.0.4

Content

1. Architecture

Tactigon Gear environment has the following architecture:

Server is located on the cloud and it is manteined by Next Industries s.r.l. Server has a web interface where you can handle your profile and your data (models and gestures)

Provided Tactigon Gear SDK is the implementation of Tactigon Gear environment client side

Tactigon Gear SDK is used for collecting new raw data, send the data to server, ask server to train a model using the raw data, and download the model from server. Finally use the model for testing real-time gesture recognition.

2. Prerequisites

In order to use the Tactigon Gear SDK the following prerequisites needs to be observed:

  • Python version: following versions has been used and tested. It is STRONGLY recommended to use these ones depending on platform.

    • Win10: 3.8.7
    • Linux: 3.8.5
    • Mac osx: 3.8.8
    • Raspberry: 3.7.3
  • It is recommended to create a dedicated python virtual environment and install the packages into the virtual environment:

    • python -m venv venv
    • pip install tgear-sdk
  • Depending on your installation (Linux, Raspberry, Mac users) you may need to use python3 and pip3 instead of python and pip respectively

3. User registration

In order to perform new training and download them you need to register on following web side: https://www.thetactigon.com/ai/web/.

  • Click on "Register"
  • Enter a valid email address and click "Send"
  • After a few minutes you will receive a confirmation email with a Registration link
  • Click on the Registration link
  • To complete the registration:
    • Set your password (both the e-mail address and the password can be changed in a second time)
    • Choose a “Display Name”
    • Accept specified terms and conditions
    • Click “confirm” button

Once registration is done you can go to Profile section and click on Json File button to download file user_data.json:

  • Login in
  • Go to the profile page by clicking on the top right profile button.
  • In this page click on “Json File” button to find json file with user_id and auth_key
  • Click on “Save file” button to download in your pc

The use of this file is described later in this doc.

For security reasons, passwords are stored on our server in encrypted form. If you forgot your password it is not possible to recover it; you need to set a new one, starting from this page. A password reset link will be sent to the e-mail address you provide, which must match the one previously set in your user profile.

4. Tactigon Skin

4.1. Status led

Tactigon Skin led indicates current fucntional state:

  • when not paired to any device it rotates red/green/blue led
  • when paired (connected to PC/raspberry/smartphone) but not transmitting any data, blue led blinks
  • when paired and transmitting data, grean led blinks

5. Tactigon Gear SDK General example

When using TGear SDK the following steps are needed:

# Import library
import time
from os import path
from datetime import datetime 
from tgear_sdk import TGear_Engine
from tgear_sdk.models import HAL, RealTimeConfig, Voice, TGear_Pipes_Name, AudioSource, TSpeechObject, TSpeechCommand, TSpeech, HotWord, TGear_Connection_Status

def main():
  # initialize config objects
  hal = Hal(BLE_RIGHT_ADDRESS="MAC:ADDRESS:RIGHT:DEVICE", BLE_RIGHT_NAME="TACTI", BLE_RIGHT_ENABLE=True, 
            BLE_RIGHT_ADDRESS="", BLE_RIGHT_NAME="", BLE_RIGHT_ENABLE=False)

  real_time = RealTimeConfig(MODEL_NAME_RIGHT="MODEL_R")

  voice = Voice(model="path/to/model", scorer="path/to/scorer")

  # initialize tgear_engine
  tgear = TGear_Engine(hal, real_time, voice)

  # configure tgear_engine to use right tskin and trasmit gesture, angle, button and voice data
  tgear.config("RIGHT", gesture_pipe_en=True, angle_pipe_en=True, button_pipe_en=True, voice_pipe_en=True)

  # get end of pipe to collect sent data
  gesture = tgear.get_pipe("RIGHT", TGear_Pipes_Name.GEST)
  angle = tgear.get_pipe("RIGHT", TGear_Pipes_Name.ANGLE)
  button = tgear.get_pipe("RIGHT", TGear_Pipes_Name.BUTTON)
  voice_pipe = tgear.get_pipe("RIGHT", TGear_Pipes_Name.VOICE)

  TICK_PERIOD_MS = 100
  tick = datetime.now()

  g = None
  a = None
  b = None

  # start sending
  tgear.start()

  while True:
    _, right_conn = tgear.connection_status()
    if right_conn != TGear_Connection_Status.CONNECTED:
        print("Wait for connection")
        time.sleep(0.5)
        continue
    
    if gesture and gesture.poll():
      g = gesture.recv()

    if angle and angle.poll():
      a = angle.recv()

    if button and button.poll():
      b = button.recv()

    delta = datetime.now() - tick

    if delta.total_seconds() < TICK_PERIOD_MS/1000:
        continue

    tick = datetime.now()

    print("gesture:", g, "| angle:", a, "| button:", b)

    if b == [1]:
      print("stop")
      break
    elif b == [4]:
      print("Voice")
      tgear.select_voice("RIGHT")

      tspeech_cmd = TSpeechCommand.listen(
        TSpeechObject([
          TSpeech(
            [HotWord("draw")],
            children=TSpeechObject(
              [
                TSpeech(
                  [HotWord("circle")]
                ),
                TSpeech(
                  [HotWord("cone")]
                ),
              ]
            )
          ),
        ])
      )

      voice_pipe.send(tspeech_cmd)
      result = None

      if voice_pipe.poll(20):
        result = voice_pipe.recv()

      else:
        voice_pipe.send(
            TSpeechCommand.stop()
        )

      print("Voice results:", result)
      tgear.select_sensors("RIGHT")

      while gesture.poll():
        g = gesture.recv()

      while angle.poll():
        a = angle.recv()

      while button.poll():
        b = button.recv()

    g = None
    a = None
    b = None

  tgear.stop()

if __name__ == "__main__":
  main()

6. Tactigon Gear CLI instructions

To run the Tactigon Gear CLI open a command window (cmd/powerShell in Windows, terminal windows for all the others O.S.), move to installation folder and run the python script cli.py with the following command:

  • python cli.py

The following menu will appear:

Gear SDK Client, select an option:
Enter 0 to test server connection
Enter 1 to data collection
Enter 2 to send data to server
Enter 3 to train a new model
Enter 4 to download a model from server
Enter 5 to simple gesture recognition
Type anything to EXIT

Regardless of choosen menu item, system is ready to use when showing message reportind succesfully connection to Tactigon Skin. Succesfully connection is also confirmed by Tactigon Skin led (see next paragraph)

Before start using the SDK user needs to change the config files according to his needs.

Linux/raspberry users: if working in SSH shell you may need to specify a DISPLAY with something like this:

  • export DISPLAY=:0.0

6.1. Tactigon Gear CLI config files

Before using the SDK some general information must be set in the two following config files:

  • user_data.json : Locally store login information. Need to match credentials on the server side

    {
     "user_name": "joe",
     "auth_key": "_abcde123456__"
    }
    
  • hal.json : This config file store all necessary hardware related information

    {
    "BLE_RIGHT_ADDRESS": "BE:A5:7F:47:54:65", # Tactigon Right BLE Address (See Find Tactigon BLE Address section)
    "BLE_LEFT_ADDRESS": "BE:A5:7F:47:54:65",  # Tactigon Left BLE Address (See Find Tactigon BLE Address section)
    "BLE_RIGHT_ENABLE" : "True",  # Tactigon Right enable flag
    "BLE_LEFT_ENABLE" : "True",   # Tactigon Left enable flag
    "SERIAL_COM_PORT": "COM3",  # No need to change - debug 
    "NUM_SAMPLE": 10,           # No need to change - debug
    "INTERFACE" : "Bluetooth"   # No need to change - debug
    }
    
  • client.json : This config file store http client related information

    {
    "SERVER_URL": "https://tgear.eu.pythonanywhere.com", # Tactigon Gear Server IP Address
    "TRAINING_SESSIONS": ["26_02_2021_1", "26_02_2021_2"], # list of session to upload (see Training section)
    "MODEL_SESSIONS": ["26_02_2021_1", "26_02_2021_2"], # list of session for model building (see Model Building section)
    "MODEL_GESTURES": ["circle", "square"], # list of gestures recognized by the model (see Model Building section)
    "MODEL_NAME": "MODEL_RIGHT", # name assigned to the requested model (see Model Building section)
    "MODEL_DATA_PATH": "data/models/",  # No need to change
    "USER_DATA_PATH": "config_files/user_data.json",  # No need to change
    "RES": {                    # No need to change - debug 
      "user": " ",              # No need to change - debug 
      "password": " ",          # No need to change - debug  
      "status": "unsuccessful"  # No need to change - debug 
    }
    

6.2. Tactigon Gear CLI training session

  • Before running a training session the /config_files/data_collection.json data must be edited:

    • data_collection.json : This config file store all necessary information for data collection
    {
    "RAW_DATA_PATH": "./data/raw/",     # path where you want to store raw data - no need to change
    "GESTURE_NAME": ["square_cw","circle_acw"],   # list of gestures you want to record
    "SESSION_INFO": "19_02_2021_A",     # recording session information
    "HAND": "RIGHT"                     # which hand is going to be used (right/left)
     }
    
  • Turn ON the Tactigon used for the training session

  • Run the main.py python script

  • Select option 1 Enter 1 for data collection

  • Wait for te Tactigon to be connected and activate gesture recognition by pressing button 4 on the Tactigon

  • Follow console instructions to train all the gestures entered in the data_collection.json config file

  • At the end of the training select option 8 Enter 9 for EXIT to exit the client

6.3. Tactigon Gear CLI Training Data Upload

Once user has run one or more training session (even with different gesture sets), training data can be uploaded to the server and used later on to generate a Model. To do that follow the instructions below:

  • Edit the "TRAINING_SESSIONS" field int theclient.json config file including all the sessions that user wants to upload to the server. Session are indicated by the "SESSION_INFO" field in the data_collection.json config file used during training.
  • Run the main.py python script
  • Check server connection select option 0 Enter 0 to test server connection
  • Select option 2 Enter 2 to send data to server
  • Enter 9 for EXIT to exit the client

6.4. Tactigon Gear CLI Model Building Instructions

  • Edit the "MODEL_SESSIONS" field int theclient.json config file including all the sessions that user wants to use for building the model. Session are indicated by the "SESSION_INFO" field in the data_collection.json config file used during training.
  • Edit the "MODEL_GESTURES" field int theclient.json config file including all the gestures that the model has to recognize.
  • Edit the "MODEL_NAME" field int theclient.json config file to assign a name to the generated model.
  • Run the main.py python script
  • Check server connection select option 0 Enter 0 to test server connection
  • Select option 3 Enter 3 to train a new model
  • A new model is created on server side and stored to DataBase
  • Enter for EXIT to exit the client

6.5. Tactigon Gear CLI Model Download Instructions

  • Edit the "MODEL_NAME" field int theclient.json config file to select the model to download from server.
  • Select option 4 Enter 4 to download model from server

6.6. Tactigon Gear CLI Gesture Recognition Setup and Test

  • Before using the gesture recognition feature the /config_files/real_time.json data must be edited:

    • real_time.json : This config file store the models name used by the gesture recognition engine
    {
    "MODEL_NAME_RIGHT": "MODEL_RIGHT",  # name of the model used for right hand gesture recognition
    "MODEL_NAME_LEFT": "MODEL_LEFT",    # name of the model used for left hand gesture recognition
    "MODEL_PATH": "data/models/" # No need to change
     }
    
  • Run the cli.py python script

  • Select option 5 Enter 5 for simple gesture recognition

  • Recognized gestures will be printed on the terminal

  • Enter 9 for EXIT to exit the client

Appendix

The Tactigon Gear SDK architecture:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tgear-sdk-3.0.5.tar.gz (369.2 kB view hashes)

Uploaded Source

Built Distribution

tgear_sdk-3.0.5-py3-none-any.whl (372.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page