├── README.md ├── WAM.js ├── WAM2.js ├── audio ├── beat.mp3 ├── click.mp3 ├── piano-f3.mp3 └── symmetry.mp3 ├── images ├── demo.png ├── demo2.png ├── demo3.png ├── graph1.png ├── graph2.png └── graph3.png ├── index-experiment.html ├── index-experiment2.html ├── index.html ├── js ├── Tone-7.js ├── Tone.js ├── bt.js ├── nexusUI.js └── nexusUI_old.js ├── package.json ├── style.css ├── test.html ├── test2.html ├── test3.html ├── test4.html └── waveform.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/README.md -------------------------------------------------------------------------------- /WAM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/WAM.js -------------------------------------------------------------------------------- /WAM2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/WAM2.js -------------------------------------------------------------------------------- /audio/beat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/audio/beat.mp3 -------------------------------------------------------------------------------- /audio/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/audio/click.mp3 -------------------------------------------------------------------------------- /audio/piano-f3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/audio/piano-f3.mp3 -------------------------------------------------------------------------------- /audio/symmetry.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/audio/symmetry.mp3 -------------------------------------------------------------------------------- /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/images/demo.png -------------------------------------------------------------------------------- /images/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/images/demo2.png -------------------------------------------------------------------------------- /images/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/images/demo3.png -------------------------------------------------------------------------------- /images/graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/images/graph1.png -------------------------------------------------------------------------------- /images/graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/images/graph2.png -------------------------------------------------------------------------------- /images/graph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/images/graph3.png -------------------------------------------------------------------------------- /index-experiment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/index-experiment.html -------------------------------------------------------------------------------- /index-experiment2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/index-experiment2.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/index.html -------------------------------------------------------------------------------- /js/Tone-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/js/Tone-7.js -------------------------------------------------------------------------------- /js/Tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/js/Tone.js -------------------------------------------------------------------------------- /js/bt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/js/bt.js -------------------------------------------------------------------------------- /js/nexusUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/js/nexusUI.js -------------------------------------------------------------------------------- /js/nexusUI_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/js/nexusUI_old.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #000 3 | } 4 | -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/test.html -------------------------------------------------------------------------------- /test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/test2.html -------------------------------------------------------------------------------- /test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/test3.html -------------------------------------------------------------------------------- /test4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/test4.html -------------------------------------------------------------------------------- /waveform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorbf/WAM/HEAD/waveform.html --------------------------------------------------------------------------------