Re: [chuck-users] => now

2020-02-11 Thread herman verbaeten
ay it backwards (reverse). Cheers, herman Van: chuck-users-boun...@lists.cs.princeton.edu namens Mario Buoninfante Verzonden: dinsdag 11 februari 2020 13:22 Aan: ChucK Users Mailing List Onderwerp: Re: [chuck-users] => now in the example before I wrote 0.5::

Re: [chuck-users] => now

2020-02-11 Thread Mario Buoninfante
chuck to do the nex thing on the list? e.g. >> read the incoming message? >> >> Cheers, >> >> Herman >> >> >> >> >> >> >> ---------- >> *Van:* chuck-users-boun...@lists.cs.princeton.edu < >> chuck-users-boun

Re: [chuck-users] => now

2020-02-11 Thread Mario Buoninfante
up chuck to do the nex thing on the list? e.g. > read the incoming message? > > Cheers, > > Herman > > > > > > > -- > *Van:* chuck-users-boun...@lists.cs.princeton.edu < > chuck-users-boun...@lists.cs.princeton.edu> namens Mario Buoninfante < > mario.buoninfa...@

Re: [chuck-users] => now

2020-02-11 Thread herman verbaeten
inceton.edu namens Mario Buoninfante Verzonden: dinsdag 11 februari 2020 11:07 Aan: ChucK Users Mailing List Onderwerp: Re: [chuck-users] => now to be a bit more precise, when you have something like min => now; your program waits for a MIDI event in order to advance, but the ChucK time

Re: [chuck-users] => now

2020-02-11 Thread Mario Buoninfante
to be a bit more precise, when you have something like min => now; your program waits for a MIDI event in order to advance, but the ChucK time is still running. Anyway, more info in the link I shared :) On Tue, 11 Feb 2020 at 11:03, Mario Buoninfante wrote: > Hi Herman, > > You can use Events/MI

Re: [chuck-users] => now

2020-02-11 Thread Mario Buoninfante
Hi Herman, You can use Events/MIDI/HID to advance in time. Have a look at this chapter if you want to know more about it https://en.flossmanuals.net/chuck/_full/#events In a nutshell what happens is that a MIDI event is received and that turns into a *trigger*, so your program advances in time. Ot

[chuck-users] => now

2020-02-11 Thread herman verbaeten
Hi, I'm trying to understand what's really happening in chuck. I thought i did untill i saw some exemples of midi. Normaly you can only feed time or duration into now ( e.g. 10::ms => now) But in case you are awaiting a midi-in message you write : MidiIn min; while (true) { min => now } So in