FlatShoe / Scope

An oscilloscope in JavaScript using the Web Audio API and canvas.

Home Page:http://kevincennis.github.io/Scope/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scope

An oscilloscope in JavaScript using the Web Audio API and canvas.

Tiny little demo available here.


Usage

var canvas = document.querySelector('canvas'),
  ac = new AudioContext(),
  osc = ac.createOscillator(),
  scope = new Scope( ac, canvas );

osc.connect( scope.input );
osc.start();
scope.start();

About

An oscilloscope in JavaScript using the Web Audio API and canvas.

http://kevincennis.github.io/Scope/

License:MIT License


Languages

Language:JavaScript 100.0%