Skip to content

Commit a73d3cc

Browse files
committed
2 parents 6487ac4 + 679c6e4 commit a73d3cc

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

ACTIVITIES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ September 2018: Performance at the [Huygens Festival](https://huygensfestival.nl
77
August 2018: CodeKlavier paper and performance will be presented at the [International Computer Music Conference](https://icmc2018.org/) in Daegu, Korea! In the proceedings you can find our first CodeKlavier published paper.
88

99
June 2018: Performance and lecture-demonstration at MuSA 2018 at IMWI Karlsruhe, Germany. Our presentation includes a special CodeKlavier "presentation mode" where we use various CodeKlavier piano techniques to live code the presentation. This event will also feature a performance of Huygbrid and a more developed version of the CKalculator.
10-
There was also a performance of Huygbrid (previously Hybrid) and CKalculator at Ephemere in Studio Loos, Netherlands.
10+
There was also a performance of Huygbrid (previously Hybrid) and CKalculator at Ephemere in Studio Loos, Netherlands. Watch the video of CKalculator [here](https://youtu.be/Ea4pUYqb8BA).
1111

1212
May 2018: Performance of two new prototypes, Hybrid and CKalculator at WORM in Rotterdam as part of the Algo~rhythms series.
1313

default_setup.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[midi]
22
port: 2
3-
device_id: 176
4-
noteoff_id: 0
3+
device_id: 144
4+
noteoff_id: 128
55

66
[snippets]
77
#Ndef(~name.next,{|pitch=420,fx=88| SinOsc.ar(456*LFTri.kr(fx).range(100, pitch)) * EnvGen.kr(Env.perc) * ev.amp}).play(0,2);(1/ev.rit).wait;}}).play(~ts, quant:0).envir = (rit: ~tremoloL, amp: 0.036);
8-
snippet1 : ~snippet1 = Ndef(\piano_fx, {|dec=40, amp=0.01, rate=1| GVerb.ar(HPF.ar(SoundIn.ar(0,2), 9), 109, dec)*LFTri.kr(rate)*amp}).play(0,2)
8+
snippet1 : ~snippet1 = Ndef(\piano_fx, {|dec=40, amp=0.01, rate=1| GVerb.ar(HPF.ar(SoundIn.ar(2,2), 9), 109, dec)*LFTri.kr(rate)*amp}).play(0,2)
99

1010

1111
mini_snippet_hi_1: Ndef(\piano_fx).map(\dec, Ndef(\krm1_d)); ~tremoloH1;

hybrid/hybrid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def ck_loop(prototype='hello world'):
479479
codeK_thread.open_port(myPort)
480480

481481
print('port', myPort)
482-
482+
483483
#go to the end of the codespace screen
484484
mapping.goDown()
485485

@@ -491,7 +491,7 @@ def ck_loop(prototype='hello world'):
491491
if msg:
492492
message, deltatime = msg
493493

494-
if message [0] != 254:
494+
if message[0] != 254 and message[0] != 208:
495495
if message[2] > 0: #only noteOn
496496
if (message[0] == device_id):
497497

0 commit comments

Comments
 (0)