I made this specifically for the upcoming flash crash performance. this script is a cross between a live coding environment and a tracker - its sorta a tracker you sequence with code. the code you can sequence is any norns lua code. using code you can access any of the standard norns features (midi, osc, crow), and I’ve also added interfaces to “lite” versions of several of my own scripts (like oooooo, supertonic, amen, and mx.samples). some basic features of internorns:
- sequence pitches with text, in chords (e.g.
Cm7/Eb
) or notes (e.g.a4 eb3
) - sequence midi devices and add cc lfos
- sequence crow with pitches, automatically generating voltage/envelope
- play/rec into three stereo loops via softcut
- built-in drum synth that can be sequenced/modulated in realtime
- built-in sample player that can be quantized
- sequence notes/chords from any instrument in mx.samples
- special tape stop / start global fx
internorns works quite simply: it runs an internal sequencer that runs code. there is an internal clock that makes 4 steps per beat, and 4 beats per measure. at each step it checks to see if there is code to run in that step in the current measure and attempts to run it. code can be added to steps using the built-in functions.
See data/getting-started.lua
to get started and preview how it works. the process is music.
Requirements
- computer
- norns
- midi device (optional)
- crow (optional)
Documentation
start the internorns script on norns.
now choose an editor to live-code, I suggest usig either maiden (in the browser), visual studio code, or vim. instructions for each are below.
maiden
open up a webbrowser to http://norns.local/maiden/#edit/dust/data/internorns/getting-started.lua.
you can select any code and press ctl+enter to send that code to the norns.
note: requires latest version of maiden.
visual studio code
download visual studio code and then install the Norns REPL extension. use software like sftp drive to mount your norns on your computer. then you can directly edit ~/dust/data/internorns/getting-started.lua
.
press ctl+enter to send the current line to the norns.
vim
lines from a norns script can be quickly and easily run using vim.
to use with vim, first download wscat
- a utility for piping commands to the maiden websocket server.
wget https://github.com/schollz/wscat/releases/download/binaries/wscat
chmod +x wscat
sudo mv wscat /usr/local/bin/
then you can edit your .vimrc
file to include these lines which will automatically run
the current selected line when you press ctl+c:
1set underline
2nnoremap <C-c> <esc>:silent.w !wscat<enter>
3inoremap <C-c> <esc>:silent.w !wscat<enter>i
now whenever you use the key combo ctl+c it will send the current line in vim into maiden!
open up dust/data/internorns/getting-started.lua
in your editor to learn how to use internorns.
Install
make sure you install all of the following (or update if you already have them):
;install https://github.com/schollz/mx.samples
;install https://github.com/schollz/supertonic
;install https://github.com/schollz/internorns
then restart your norns.
https://github.com/schollz/internorns