Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread IOhannes m zmoelnig
On 2016-01-19 00:42, Miller Puckette wrote: > OK... the support should be in git thank you very much. while i find the API very elegant, i have one question: will existing externals with loadbang functionality now start banging three times during their life-cycle? a first test with iemlib's

[PD] flatgui on windows with latest vanilla

2016-01-19 Thread Anton Woldhek
Hi, I'm trying to load flatgui (i got a copy from pd-extended) with pd-vanilla on windows. I get "flatgui: cannot load library" error. Is anybody else able to load it? I am trying to run: http://www.monologx.com/ecosystem/ with pd vanilla. Thanks! Anton

[PD] Bluetooth button control

2016-01-19 Thread schafferdavid
Hi,  I'd like to know if anyone out there has ever used a Bluetooth button to remotely control pd. I would like to use several of those on a theatre set to trigger individual sounds. Thank you. D.S ___ Pd-list@lists.iem.at mailing list

Re: [PD] pd for c.h.i.p.

2016-01-19 Thread me.grimm
the audio input looks awesome: http://docs.getchip.com/#microphone-and-audio-input just "scrape and slice" and "solder blob" :) On Tue, Jan 19, 2016 at 2:56 PM, Alexandre Torres Porres wrote: > I was getting it today, but it turned out that the 9$ board was overtaxed > in

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread Andy Farnell
+ 1 Some behaviour congruent with POSIX signals has always been on my wishlist. Those (admittedly rare) occasions when some unrecoverable IO blockage happens it would be nice to rescue the patch. cheers, Andy On Tue, Jan 19, 2016 at 08:22:13AM -0800, Miller Puckette wrote: > Good, thanks.

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread IOhannes m zmölnig
On 01/19/2016 08:35 PM, Jonathan Wilkes via Pd-list wrote: >> Next: for people who are trying to close OS resources when Pd quits, I'm > thinking there should be a fourth phase, "LB_PANIC", which objects should > not respond to by passing messages but only closing resources. > What's a situation

Re: [PD] pd for c.h.i.p.

2016-01-19 Thread katja
Congratulations, if you get it today. The kickstarter blog doesn't provide technical info. Better look here: http://docs.getchip.com/#introduction It says that CHIP runs a Debian system. You can install package puredata through Synaptic (is pre-installed), or through command apt-get. I bet it's

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread Miller Puckette
Sort of. I think it's a bad idea to go through and close all the windows (sometimes closing a window takes time) - but just send objects a message in case they need to get off some resource. I don't have any examples to hand, except a rather lame one: sending an all-notes-off message to some

[PD] pd for c.h.i.p.

2016-01-19 Thread Alexandre Torres Porres
hi, I'm getting my c.h.i.p. in the mail today, anybody else is checking this new board? https://www.kickstarter.com/projects/1598272670/chip-the-worlds-first-9-computer My greatest interest is, of course, installing Pd in it, I wonder if anyone else is compiling Pd for it and if there are plans

Re: [PD] pd for c.h.i.p.

2016-01-19 Thread tim vets
it seems there is: https://chip.hackster.io/11802/c-h-i-p-midi-arpeggiating-synth-e311ab?ref=similar_id=15019=0 2016-01-19 19:04 GMT+01:00 Alexandre Torres Porres : > hi, I'm getting my c.h.i.p. in the mail today, anybody else is checking > this new board? > > >

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread Jonathan Wilkes via Pd-list
> Next: for people who are trying to close OS resources when Pd quits, I'm thinking there should be a fourth phase, "LB_PANIC", which objects should not respond to by passing messages but only closing resources. What's a situation where Pd currently won't close its resources upon quitting?

Re: [PD] pd for c.h.i.p.

2016-01-19 Thread Alexandre Torres Porres
I was getting it today, but it turned out that the 9$ board was overtaxed in customs to a total of 160 brazilian reais (that's about 40$ tax on a 9$ thing, yeah...) so I'm asking them nicely to please not screw me that much and so hard and revise the price I have to pay... it might be another

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread IOhannes m zmölnig
On 01/19/2016 10:00 AM, IOhannes m zmoelnig wrote: > On 2016-01-19 00:42, Miller Puckette wrote: >> > OK... the support should be in git > thank you very much. ok. so the new and shiny iemguts-0.2 [1] features both [initbang] and [closebang]. these will magically start working as soon as use

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread Jonathan Wilkes via Pd-list
> so one from the new millenium: locking a network ressource (e.g. an gigabit IP-camera that saturates the the network once it's told to start delivering frames). What happens currently if you click in the terminal on a Pd instance that's using that network resource? Is LB_PANIC a public

Re: [PD] pd for c.h.i.p

2016-01-19 Thread Peter Nyboer
Yes, I'm using it. Here’s an example I cooked up https://www.hackster.io/11802/c-h-i-p-midi-arpeggiating-synth-e311ab I’ve also had the unique privilege of putting a variation of this synth on 8 CHIPs and using a 9th to act

Re: [PD] Bluetooth button control

2016-01-19 Thread Dan Wilcox
If the button appears as a keybaord and sends key events, you cna use [key]. Otherwise, I’d write a script (in python maybe) that would read the button using something like the bluez library and forward events to pd using a network socket. Dan Wilcox @danomatika

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread IOhannes m zmölnig
On 01/19/2016 10:00 AM, IOhannes m zmoelnig wrote: > a first test with iemlib's [init] exhibits triggers on initbang and > loadbang, but not on closebang...i might miss something though found the culprit: canvas_closebang() never gets called when deleting an abstraction. attached patch fixes

Re: [PD] closebang and initbang in Vanilla

2016-01-19 Thread Miller Puckette
Good, thanks. Next: for people who are trying to close OS resources when Pd quits, I'm thinking there should be a fourth phase, "LB_PANIC", which objects should not respond to by passing messages but only closing resources. cheers Miller On Tue, Jan 19, 2016 at 02:07:32PM +0100, IOhannes m