Last active
September 24, 2020 21:25
-
-
Save mikesol/1d5345f85a05b84644941843709f6d6a to your computer and use it in GitHub Desktop.
PureScript Audio Behaviors Sine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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