-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
beatclock & clock inconsistencies #1196
Comments
you've highlighted a huge doc issue: the norns study is for BeatClock, which is essentially deprecated (though still works) now that the Clock library is in place. these two will not work well together. i need to dig up a proper example for midi sync with the new clock system, but i can confirm that it works (unless it's broken since release) @dndrks studies expansion material! |
great! yeah an interim example would be most appreciated. thank you. |
dope, stoked to dive into this one.
i might be missing something in the test case, but if a script is using
global clock to drive tempo in a script, MIDI clock sync through the global
clock system should “just work” — unless something in the script competes
for MIDI clock attention, using the PARAMS to switch to MIDI clock would
make the global clock take its cue from incoming MIDI and the script should
respond to any changes.
i can spin up some “this still works, right?” examples tomorrow if someone
doesn’t get them first :)
…On Sun, Sep 13, 2020 at 4:55 PM Tyler Etters ***@***.***> wrote:
great! yeah an interim example would be most appreciated. thank you.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1196 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AF5L2HHT77CQSN7JN7XUFG3SFUWVHANCNFSM4RK2U2HQ>
.
|
it's not using the global clock to drive tempo - just an arbitrary param. in the process of moving to beatclock i ended up here. i'll poke around with the global clock now. |
this is a good resource i assume? 4 months young? https://vimeo.com/416730766 |
ahh gotcha — sorry, was on the road and shouldn’t have jumped on it without
full grok :)
yep! that resource should be good! anything on
https://monome.org/docs/norns/clocks/ should be solid :)
…On Sun, Sep 13, 2020 at 5:11 PM Tyler Etters ***@***.***> wrote:
this is a good resource i assume? 4 months young?
https://vimeo.com/416730766
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1196 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AF5L2HB5ARW4LXFWFRIOVK3SFUYOXANCNFSM4RK2U2HQ>
.
|
and sorry you wasted cycles on disjointed info!!
…On Sun, Sep 13, 2020 at 5:39 PM Dan Derks ***@***.***> wrote:
ahh gotcha — sorry, was on the road and shouldn’t have jumped on it
without full grok :)
yep! that resource should be good! anything on
https://monome.org/docs/norns/clocks/ should be solid :)
On Sun, Sep 13, 2020 at 5:11 PM Tyler Etters ***@***.***>
wrote:
> this is a good resource i assume? 4 months young?
> https://vimeo.com/416730766
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#1196 (comment)>, or
> unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AF5L2HB5ARW4LXFWFRIOVK3SFUYOXANCNFSM4RK2U2HQ>
> .
>
|
it's ok! i learned a lot!! thank you so much. and yea so far |
...aaaaand it all works perfectly with the beatstep. <3 |
this issue captures one primary and one secondary issue. my goal is to sync outboard gear with midi using textbook techniques.
primary issue: irrational bpm behavior
24 ppqn
usb
sync modePARAMETERS
screen looks like this:PARAMETERS / CLOCK
screen looks like this:and everything works (meaning the beatstep pro has it's tempo synced with norns)... but it shouldn't?
expected results from the above configuration is since the
clock out
is set tono
- there should be nothing going to the beatstep. when this is set toyes
, however this happens:what is happening?
secondary issue: beatclock's bpm vs
PARAMETERS / CLOCK
's tempoexternal
PARAMETERS / CLOCK
source tomidi
.expected results is adjusting the tempo on the beatstep would update both the tempo and the the bpm. however, it only updates the tempo. i can see this is reflected in the code as
BeatClock:bpm_change(bpm)
isn't hooked up to the clock from what i can see.summary
it feels like these are two separate clocks running (there are
norns
andBeatClock
) but they are interfering with each other?The text was updated successfully, but these errors were encountered: