SuperCollider On Organelle

I released the supercollider mother (mother.scd) as part of the Organelle OS (3.x)
so its in /root/mother.scd
but you can also find it online here:

you mean the aux button?
similar procedure as others callbacks
(knobs~, notes~, ~encoder_turn, ~encoder_button, ~footswitch)

~auxfunc = {
	arg func, msg, key, vel;
	if(vel>0 , {
    	~led.value(1);
	} , {
		~led.value(0);
	};)
};

~aux.addDependant(~auxfunc);

I’ve been concentrating on Orac recently,
but I do want to return to SC once thats completed…as Ive really been enjoying messing with supercollider recently particularly the whole pdef, ndef side which I think is really cool :slight_smile:

ideally I want to do is extend Orac so that it can have a supercollider backend, this is actually not that far off, as most of Orac is actually the C++ backend, this is what handles all the parameters etc, so its “just” a matter of switching the interfacing code to talk to SC rather than PD… anyway, more experiments need to prove the concept :slight_smile:

2 Likes