Re: [PD] Pd on Tiny Core Linux on Raspberry Pi

2018-03-07 Thread Thomas Grill
Dear all, puredata-0.48-1 is now in the PiCore repository! That's a binary build for tinycorelinux on Raspberry Pi. http://repo.tinycorelinux.net/9.x/armv6/tcz/ best, Thomas -- Thomas Grill http://g.org > Am 16.02.2018 um 23:58 schrieb Thomas Grill : > > Dear all, > i have just submitted

Re: [PD] Pd on Tiny Core Linux on Raspberry Pi

2018-03-07 Thread Chris McCormick
On 07/03/18 16:35, Thomas Grill wrote: puredata-0.48-1 is now in the PiCore repository! \o/ thanks for your time and effort getting this in! Chris. -- http://mccormick.cx/ ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->

Re: [PD] How can a signal inlet of an object know if it's receiving a signal

2018-03-07 Thread Antoine Rousseau
Long time ago I implemented [dinlet~] (in moonlib) , aka "default inlet~": when the dinlet~ isn't connected, then it reverts to its default (constant) signal value, which is given as an argument. Maybe reading the code could give you some ideas: https://github.com/MetaluNet/moonlib/blob/externals/m

[PD] puredata parameters into HTML5

2018-03-07 Thread Csaba Láng
Dear list, I would like to connect puredata with a local webpage, not necessary uploaded on a server. How can I send statistics generated by puredata into HTML5 code, so the page immediately highlights the numbers, what PD calculates? Did anyone made something like this before? Best, Popesz __

Re: [PD] puredata parameters into HTML5

2018-03-07 Thread Derek Kwan
Hello, I would have Pd talk to whatever's hosting your webpage using OSC. I wrote a piece a few years ago that had SuperCollider (but I later ported it to Pd) talking to a webpage I hosted on my computer via node.js via OSC (I think I used the 'node-osc' library in particular). So Pd talks to nod

Re: [PD] puredata parameters into HTML5

2018-03-07 Thread Christof Ressi
you can use websockets to send the data from Pd to the browser and then use JS to manipulate the DOM. Nicolas made a websockets server for Pd: https://sourceforge.net/projects/websocketserverinapatch/ For the browser side, check out: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_

Re: [PD] Porting Max MSP externals to Pure Data

2018-03-07 Thread Jamie Bullock
Hi Ed, I’d highly recommend porting to Flext rather than Pure Data. Then you have one codebase for both Max and Pd with the added benefit of Flext’s higher level C++ syntax. https://github.com/g/flext/ Jamie > On 4 Mar 2018, at 14:30, Ed Kelly via Pd-lis

Re: [PD] puredata parameters into HTML5

2018-03-07 Thread Csaba Láng
Thanks for the quick response. Will test both! Hope not a big deal, as I am not too good in javascripts. But it can change. Best, Popesz On Wed, Mar 7, 2018 at 3:19 PM, Christof Ressi wrote: > you can use websockets to send the data from Pd to the browser and then > use JS to manipulate the DO

Re: [PD] Pd on Tiny Core Linux on Raspberry Pi

2018-03-07 Thread Thomas Grill
Ah, i forgot... it would be cool for the future to have a buildable package with source included and working build scripts. Don't know when/whether i have the time for that, so if someone wants to stand in, please go for it. best, Thomas > Am 07.03.2018 um 09:35 schrieb Thomas Grill : > > Dear

Re: [PD] Pd on Tiny Core Linux on Raspberry Pi

2018-03-07 Thread Dan Wilcox
It should work with makefile.gnu in src. We still need to update the autotools setup to support the "build in place" approach beyond the halfway symlinking it does now, so I wouldn't use the configure script et al. in the package for this yet. > On Mar 7, 2018, at 12:34 PM, Thomas Grill wrote:

Re: [PD] puredata parameters into HTML5

2018-03-07 Thread Jonathan Wilkes via Pd-list
> Dear list, > I would like to connect puredata with a local webpage, not necessary uploaded > on a server. > How can I send statistics generated by puredata into HTML5 code, so the page > immediately highlights the numbers, what PD calculates? > Did anyone made something like this before? The

[PD] libpd on a car?

2018-03-07 Thread Dan Wilcox
I just realized that since you can make Android/iOS-style "apps" for cars, Pd patches could be run on a car's built-in system with libpd. Has anyone done this yet? Dan Wilcox @danomatika danomatika.com robotcowboy.com

Re: [PD] How can a signal inlet of an object know if it's receiving a signal

2018-03-07 Thread Alexandre Torres Porres
how about an inlet~ object that has a secondary outlet for control data? anybody done that as an external? well, that's something we could maybe just include in vanilla's inlet, but if there's any work torwards that direction, I can give a look and try doing a Pull Request cheers 2018-03-07 9:5

Re: [PD] How can a signal inlet of an object know if it's receiving a signal

2018-03-07 Thread Alexandre Torres Porres
by the way, here's an issue on github https://github.com/pure-data/pure-data/issues/259 I say it'd also be good to include this idea of using a float argument to set a default value, but it's also interesting if this could be set via an inlet as well, and now it seems all such enhancements would

Re: [PD] How can a signal inlet of an object know if it's receiving a signal

2018-03-07 Thread Alexandre Torres Porres
2018-03-07 15:42 GMT-03:00 Alexandre Torres Porres : > by the way, here's an issue on github > > https://github.com/pure-data/pure-data/issues/259 > which had been posted on this thread already, haha, sorry ___ Pd-list@lists.iem.at mailing list UNSUBSCR

[PD] adding outlets to [inlet~] (was How can a signal inlet of an object know if it's receiving a signal)

2018-03-07 Thread Alexandre Torres Porres
Ok, the thread was digressing, so I opened a new one... There's a suggestion to add outlets to inlet~ in: https://github.com/pure-data/ pure-data/issues/259 One of the outlets would report if a signal is connected or not (as discussed in the previous thread), the other would route control messages.

Re: [PD] Porting Max MSP externals to Pure Data

2018-03-07 Thread Ed Kelly via Pd-list
Hi Jamie, Yes, I should probably look at that - I can see the limitations of GSL vectors, platform-wise. I think I needed to wrap my head around that before unpicking the algorithms of this library though, so I'll be going through a rewrite of the rewrite before it becomes a Pd fact!Ed _-_-_-_

Re: [PD] adding outlets to [inlet~] (was How can a signal inlet of an object know if it's receiving a signal)

2018-03-07 Thread Alexandre Torres Porres
oh, and if someone out there would like to collaborate with me in an external, for easy prototyping, we could start with the current inlet~ structure as a model, but like I said, I couldn't get there, so if anyone succeeds and can send me the code, we could have some fun more easily cheers 2018-0

Re: [PD] adding outlets to [inlet~] (was How can a signal inlet of an object know if it's receiving a signal)

2018-03-07 Thread Alexandre Torres Porres
2018-03-07 20:35 GMT-03:00 Alexandre Torres Porres : > I assume that this is being set here. > > static void *vinlet_newsig(t_symbol *s) > > { > > t_vinlet *x = (t_vinlet *)pd_new(vinlet_class); > > x->x_canvas = canvas_getcurrent(); > > x->x_inlet = canvas_addinlet(x->x_canvas, &x->x_

Re: [PD] adding outlets to [inlet~] (was How can a signal inlet of an object know if it's receiving a signal)

2018-03-07 Thread oliver
Yeah, I've been still trying around and now I'm pretty sure this is where you set the type, and I'm also now assuming there's no way to carry both signals and control data in the same input as it is. This seems to require changes to the core of Pd elsewhere, right? ??? i don't think so ... [