Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Ducasse/TUIO
TUIO to control sound systems
https://github.com/Ducasse/TUIO
pharo
Last synced: about 2 months ago
JSON representation
TUIO to control sound systems
- Host: GitHub
- URL: https://github.com/Ducasse/TUIO
- Owner: Ducasse
- Created: 2018-05-08T15:41:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-22T07:59:27.000Z (over 3 years ago)
- Last Synced: 2024-10-27T16:07:05.275Z (3 months ago)
- Topics: pharo
- Language: Smalltalk
- Size: 30.3 KB
- Stars: 2
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-pharo - TUIO - A driver for TUIO. (Interaction)
README
# TUIO
[![Build Status](https://travis-ci.com/Ducasse/TUIO.svg?branch=master)](https://travis-ci.com/Ducasse/TUIO)
[![Coverage Status](https://coveralls.io/repos/github//Ducasse/CTUIO/badge.svg?branch=master)](https://coveralls.io/github//Ducasse/TUIO?branch=master)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)]()
[![Pharo version](https://img.shields.io/badge/Pharo-6.1-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-7.0-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-8.0-%23aac9ff.svg)](https://pharo.org/download)A Protocol for Table-Top Tangible User Interfaces (see http://www.tuio.org)
The TUIO protocol is encoded using the Open Sound Control format, which provides an efficient binary encoding method for the transmission of arbitrary controller data. Therefore the TUIO messages can be basically transmitted through any channel that is supported by an actual OSC implementation.
This port is based on the work of Simon Holland who published it under MIT.
## Installation
The following script installs DataFrame into the Pharo image```smalltalk
Metacello new
baseline: 'TUIO';
repository: 'github://Ducasse/TUIO/src';
load.
```