├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── package.json ├── readme_images ├── board.png ├── buttons.png ├── library.png ├── port.png └── tflib.png ├── serve.js ├── serve.sh ├── tf4micro-motion-kit ├── ble_file_transfer.cpp ├── ble_file_transfer.h ├── data_provider.cpp ├── data_provider.h ├── model_tester.cpp ├── model_tester.h └── tf4micro-motion-kit.ino ├── third_party ├── jquery-3.5.1.min.js ├── p5.sound.js ├── p5 │ ├── LICENSE.txt │ └── p5.js ├── p5sound │ ├── LICENSE.txt │ └── p5.sound.js └── webflow │ ├── LICENSE.txt │ ├── fui.webflow.css │ ├── mobile.fui.webflow.css │ ├── normalize.css │ ├── webflow.css │ └── webflow.js ├── web ├── .gitignore ├── FUImodel │ ├── FUIgesturesModel │ │ ├── TinyML-Gesture-Example.ino │ │ └── model.h │ ├── model.hdf5 │ ├── model.json │ ├── model.tflite │ └── model.weights.bin ├── fonts │ ├── ArchivoNarrow-Bold.ttf │ ├── ArchivoNarrow-BoldItalic.ttf │ ├── ArchivoNarrow-Italic.ttf │ ├── ArchivoNarrow-Medium.ttf │ ├── ArchivoNarrow-MediumItalic.ttf │ ├── ArchivoNarrow-Regular.ttf │ ├── ArchivoNarrow-SemiBold.ttf │ ├── ArchivoNarrow-SemiBoldItalic.ttf │ ├── InknutAntiqua-Black.ttf │ ├── InknutAntiqua-Bold.ttf │ ├── InknutAntiqua-ExtraBold.ttf │ ├── InknutAntiqua-Light.ttf │ ├── InknutAntiqua-Medium.ttf │ ├── InknutAntiqua-Regular.ttf │ ├── InknutAntiqua-SemiBold.ttf │ ├── RobotoMono-Bold.ttf │ ├── RobotoMono-BoldItalic.ttf │ ├── RobotoMono-ExtraLight.ttf │ ├── RobotoMono-ExtraLightItalic.ttf │ ├── RobotoMono-Italic-VariableFont_wght.ttf │ ├── RobotoMono-Italic.ttf │ ├── RobotoMono-Light.ttf │ ├── RobotoMono-LightItalic.ttf │ ├── RobotoMono-Medium.ttf │ ├── RobotoMono-MediumItalic.ttf │ ├── RobotoMono-Regular.ttf │ ├── RobotoMono-SemiBold.ttf │ ├── RobotoMono-SemiBoldItalic.ttf │ ├── RobotoMono-Thin.ttf │ ├── RobotoMono-ThinItalic.ttf │ ├── RobotoMono-VariableFont_wght.ttf │ ├── Syne-Bold.ttf │ ├── Syne-ExtraBold.ttf │ ├── Syne-Medium.ttf │ ├── Syne-Regular.ttf │ ├── Syne-SemiBold.ttf │ └── Syne-VariableFont_wght.ttf ├── images │ ├── FUI_16x9.gif │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── left.gif │ ├── pluck.gif │ ├── poke.gif │ ├── right.gif │ ├── twirl.gif │ └── webclip.png ├── index.html ├── js │ ├── sketch.js │ └── tf4micro-motion-kit.js ├── package.json ├── public │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ │ └── RobotoMono │ │ │ ├── RobotoMono-Bold.ttf │ │ │ └── RobotoMono-Regular.ttf │ ├── images │ │ ├── FUI_16x9.gif │ │ ├── left.gif │ │ ├── pluck.gif │ │ ├── poke.gif │ │ ├── right.gif │ │ └── twirl.gif │ ├── index.html │ ├── model.tflite │ └── sounds │ │ ├── D1.wav │ │ ├── D2.wav │ │ ├── D3.wav │ │ ├── D4.wav │ │ ├── left.wav │ │ ├── pluck.wav │ │ ├── poke.wav │ │ ├── right.wav │ │ └── twirl.wav ├── rollup.config.js ├── sounds │ ├── D1.wav │ ├── D2.wav │ ├── D3.wav │ ├── D4.wav │ ├── D5.wav │ ├── left.wav │ ├── pluck.wav │ ├── poke.wav │ ├── right.wav │ └── twirl.wav ├── src │ ├── App.svelte │ ├── components │ │ ├── ConnectButton.svelte │ │ ├── FuiPanel.svelte │ │ ├── LayoutOverlay.svelte │ │ ├── Nav.svelte │ │ ├── NotSupported.svelte │ │ ├── NotSupportedBluetooth.svelte │ │ ├── NotSupportedMobile.svelte │ │ ├── ProgressBar.svelte │ │ ├── Select.svelte │ │ └── SplashPanel.svelte │ ├── deviceInfo.js │ ├── main.js │ ├── p5 │ │ ├── index.js │ │ ├── p5_export.js │ │ └── sketch.js │ ├── scss │ │ ├── _fonts.scss │ │ ├── _vars.scss │ │ └── main.scss │ └── store.js ├── yarn-error.log └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/package.json -------------------------------------------------------------------------------- /readme_images/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/readme_images/board.png -------------------------------------------------------------------------------- /readme_images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/readme_images/buttons.png -------------------------------------------------------------------------------- /readme_images/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/readme_images/library.png -------------------------------------------------------------------------------- /readme_images/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/readme_images/port.png -------------------------------------------------------------------------------- /readme_images/tflib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/readme_images/tflib.png -------------------------------------------------------------------------------- /serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/serve.js -------------------------------------------------------------------------------- /serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/serve.sh -------------------------------------------------------------------------------- /tf4micro-motion-kit/ble_file_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/ble_file_transfer.cpp -------------------------------------------------------------------------------- /tf4micro-motion-kit/ble_file_transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/ble_file_transfer.h -------------------------------------------------------------------------------- /tf4micro-motion-kit/data_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/data_provider.cpp -------------------------------------------------------------------------------- /tf4micro-motion-kit/data_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/data_provider.h -------------------------------------------------------------------------------- /tf4micro-motion-kit/model_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/model_tester.cpp -------------------------------------------------------------------------------- /tf4micro-motion-kit/model_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/model_tester.h -------------------------------------------------------------------------------- /tf4micro-motion-kit/tf4micro-motion-kit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/tf4micro-motion-kit/tf4micro-motion-kit.ino -------------------------------------------------------------------------------- /third_party/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /third_party/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/p5.sound.js -------------------------------------------------------------------------------- /third_party/p5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/p5/LICENSE.txt -------------------------------------------------------------------------------- /third_party/p5/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/p5/p5.js -------------------------------------------------------------------------------- /third_party/p5sound/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/p5sound/LICENSE.txt -------------------------------------------------------------------------------- /third_party/p5sound/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/p5sound/p5.sound.js -------------------------------------------------------------------------------- /third_party/webflow/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/webflow/LICENSE.txt -------------------------------------------------------------------------------- /third_party/webflow/fui.webflow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/webflow/fui.webflow.css -------------------------------------------------------------------------------- /third_party/webflow/mobile.fui.webflow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/webflow/mobile.fui.webflow.css -------------------------------------------------------------------------------- /third_party/webflow/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/webflow/normalize.css -------------------------------------------------------------------------------- /third_party/webflow/webflow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/webflow/webflow.css -------------------------------------------------------------------------------- /third_party/webflow/webflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/third_party/webflow/webflow.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/FUImodel/FUIgesturesModel/TinyML-Gesture-Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/FUImodel/FUIgesturesModel/TinyML-Gesture-Example.ino -------------------------------------------------------------------------------- /web/FUImodel/FUIgesturesModel/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/FUImodel/FUIgesturesModel/model.h -------------------------------------------------------------------------------- /web/FUImodel/model.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/FUImodel/model.hdf5 -------------------------------------------------------------------------------- /web/FUImodel/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/FUImodel/model.json -------------------------------------------------------------------------------- /web/FUImodel/model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/FUImodel/model.tflite -------------------------------------------------------------------------------- /web/FUImodel/model.weights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/FUImodel/model.weights.bin -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-Bold.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-BoldItalic.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-Italic.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-Medium.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-MediumItalic.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-Regular.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-SemiBold.ttf -------------------------------------------------------------------------------- /web/fonts/ArchivoNarrow-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/ArchivoNarrow-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-Black.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-Bold.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-ExtraBold.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-Light.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-Medium.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-Regular.ttf -------------------------------------------------------------------------------- /web/fonts/InknutAntiqua-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/InknutAntiqua-SemiBold.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-ExtraLight.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-SemiBold.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /web/fonts/RobotoMono-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/RobotoMono-VariableFont_wght.ttf -------------------------------------------------------------------------------- /web/fonts/Syne-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/Syne-Bold.ttf -------------------------------------------------------------------------------- /web/fonts/Syne-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/Syne-ExtraBold.ttf -------------------------------------------------------------------------------- /web/fonts/Syne-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/Syne-Medium.ttf -------------------------------------------------------------------------------- /web/fonts/Syne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/Syne-Regular.ttf -------------------------------------------------------------------------------- /web/fonts/Syne-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/Syne-SemiBold.ttf -------------------------------------------------------------------------------- /web/fonts/Syne-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/fonts/Syne-VariableFont_wght.ttf -------------------------------------------------------------------------------- /web/images/FUI_16x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/FUI_16x9.gif -------------------------------------------------------------------------------- /web/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/favicon-32x32.png -------------------------------------------------------------------------------- /web/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/favicon.ico -------------------------------------------------------------------------------- /web/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/left.gif -------------------------------------------------------------------------------- /web/images/pluck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/pluck.gif -------------------------------------------------------------------------------- /web/images/poke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/poke.gif -------------------------------------------------------------------------------- /web/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/right.gif -------------------------------------------------------------------------------- /web/images/twirl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/twirl.gif -------------------------------------------------------------------------------- /web/images/webclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/images/webclip.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/js/sketch.js -------------------------------------------------------------------------------- /web/js/tf4micro-motion-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/js/tf4micro-motion-kit.js -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/favicon-32x32.png -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/fonts/RobotoMono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/fonts/RobotoMono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /web/public/fonts/RobotoMono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/fonts/RobotoMono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /web/public/images/FUI_16x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/images/FUI_16x9.gif -------------------------------------------------------------------------------- /web/public/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/images/left.gif -------------------------------------------------------------------------------- /web/public/images/pluck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/images/pluck.gif -------------------------------------------------------------------------------- /web/public/images/poke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/images/poke.gif -------------------------------------------------------------------------------- /web/public/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/images/right.gif -------------------------------------------------------------------------------- /web/public/images/twirl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/images/twirl.gif -------------------------------------------------------------------------------- /web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/index.html -------------------------------------------------------------------------------- /web/public/model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/model.tflite -------------------------------------------------------------------------------- /web/public/sounds/D1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/D1.wav -------------------------------------------------------------------------------- /web/public/sounds/D2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/D2.wav -------------------------------------------------------------------------------- /web/public/sounds/D3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/D3.wav -------------------------------------------------------------------------------- /web/public/sounds/D4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/D4.wav -------------------------------------------------------------------------------- /web/public/sounds/left.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/left.wav -------------------------------------------------------------------------------- /web/public/sounds/pluck.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/pluck.wav -------------------------------------------------------------------------------- /web/public/sounds/poke.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/poke.wav -------------------------------------------------------------------------------- /web/public/sounds/right.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/right.wav -------------------------------------------------------------------------------- /web/public/sounds/twirl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/public/sounds/twirl.wav -------------------------------------------------------------------------------- /web/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/rollup.config.js -------------------------------------------------------------------------------- /web/sounds/D1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/D1.wav -------------------------------------------------------------------------------- /web/sounds/D2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/D2.wav -------------------------------------------------------------------------------- /web/sounds/D3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/D3.wav -------------------------------------------------------------------------------- /web/sounds/D4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/D4.wav -------------------------------------------------------------------------------- /web/sounds/D5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/D5.wav -------------------------------------------------------------------------------- /web/sounds/left.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/left.wav -------------------------------------------------------------------------------- /web/sounds/pluck.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/pluck.wav -------------------------------------------------------------------------------- /web/sounds/poke.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/poke.wav -------------------------------------------------------------------------------- /web/sounds/right.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/right.wav -------------------------------------------------------------------------------- /web/sounds/twirl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/sounds/twirl.wav -------------------------------------------------------------------------------- /web/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/App.svelte -------------------------------------------------------------------------------- /web/src/components/ConnectButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/ConnectButton.svelte -------------------------------------------------------------------------------- /web/src/components/FuiPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/FuiPanel.svelte -------------------------------------------------------------------------------- /web/src/components/LayoutOverlay.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/LayoutOverlay.svelte -------------------------------------------------------------------------------- /web/src/components/Nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/Nav.svelte -------------------------------------------------------------------------------- /web/src/components/NotSupported.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/NotSupported.svelte -------------------------------------------------------------------------------- /web/src/components/NotSupportedBluetooth.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/NotSupportedBluetooth.svelte -------------------------------------------------------------------------------- /web/src/components/NotSupportedMobile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/NotSupportedMobile.svelte -------------------------------------------------------------------------------- /web/src/components/ProgressBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/ProgressBar.svelte -------------------------------------------------------------------------------- /web/src/components/Select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/Select.svelte -------------------------------------------------------------------------------- /web/src/components/SplashPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/components/SplashPanel.svelte -------------------------------------------------------------------------------- /web/src/deviceInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/deviceInfo.js -------------------------------------------------------------------------------- /web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/main.js -------------------------------------------------------------------------------- /web/src/p5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/p5/index.js -------------------------------------------------------------------------------- /web/src/p5/p5_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/p5/p5_export.js -------------------------------------------------------------------------------- /web/src/p5/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/p5/sketch.js -------------------------------------------------------------------------------- /web/src/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/scss/_fonts.scss -------------------------------------------------------------------------------- /web/src/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/scss/_vars.scss -------------------------------------------------------------------------------- /web/src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/scss/main.scss -------------------------------------------------------------------------------- /web/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/src/store.js -------------------------------------------------------------------------------- /web/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/yarn-error.log -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/web/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecreativelab/finger-user-interface/HEAD/yarn.lock --------------------------------------------------------------------------------