The JacquardToolkit library allows directly interfacing with the Google & Levi's Jacquard Jacket via an Android app
This library is available via JitPack. Follow the steps below to add the library to your Android project:
- Add the JitPack repository to your app's dependencies by adding the following to your root
build.gradle
file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the JacquardToolkit dependency by adding the following code to your app's
build.gradle
file:
dependencies {
implementation 'com.github.gt-etextiles-hacking.JacquardAndroid:jacquardtoolkit:1.0'
}
Provided in this repository is a demo app that can be used to understand how to utilize the library. To connect to the jacket, simply create a JacquardJacket
object and follow the example of the demo app provided.
This framework is just a small part of the project that our team at Georgia Tech has been working on. If you are interested in learning more about our project, please visit our Medium publication.
MIT