deviceTurned()
These examples demonstrate the translation from p5js to F#. For more information on the function itself, read the documentation on p5js.org.
Copy
module P5Reference.Events.DeviceTurned open P5.Core open P5.Color open P5.Shape let setup p5 = 0 let draw p5 value = fill p5 (Grayscale(float value)) square p5 25 25 50 let onDeviceTurned _ _ value = match value with | 255 -> 0 | _ -> 255 let subscriptions = [ OnDeviceTurned(Update onDeviceTurned) ] let run node = play node setup noUpdate draw subscriptions