Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 744 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 744 Bytes

Useage

fungus <steps> <division>

# eg: 16 steps with 4 steps to a beat
fungus 16 4
  • s soft hit
  • regular hit
  • d loud hit
  • j, k to go down / up a track
  • h, l to go left / right
  • m to toggle mute
  • '+' bpm++
  • '-' bpm--

These apply to the current track:

  • c to clear any beat on the current step
  • C to clear the whole track

Cross compiling

THIS ONLY WORKS ON armv7 PIs: 2/3/4/zero2 etc.

  • build the container
    docker build -t pi .
    
  • run it, the --user stuff is so the binary isnt owned by root
    docker run -v $PWD:/src --user $(id -u):$(id -g) --rm -ti pi cargo build --target=armv7-unknown-linux-gnueabihf
    
  • your executable is in target/armv7-unknown-linux-gnueabihf/debug