Skip to content

Instantly share code, notes, and snippets.

@mikesol
Last active September 24, 2020 21:25
Show Gist options
  • Save mikesol/1d5345f85a05b84644941843709f6d6a to your computer and use it in GitHub Desktop.
Save mikesol/1d5345f85a05b84644941843709f6d6a to your computer and use it in GitHub Desktop.
PureScript Audio Behaviors Sine
module Klank.Dev where
-- new to purescript? check out https://www.purescript.org/ for learning resources!
import Prelude
import Data.Typelevel.Num (D1)
import FRP.Behavior (Behavior)
import FRP.Behavior.Audio (AudioUnit, gain', runInBrowser_, sinOsc, speaker')
scene :: Behavior Number -> Behavior (AudioUnit D1)
scene _ = pure (speaker' $ (gain' 0.5 $ sinOsc 440.0))
-- change to true if you use `microphone` above
enableMicrophone = false
-- add a mouse, keyboard or other device here if needed
main = runInBrowser_ (pure scene)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment