Re: [PD] How to talk to the Raspberry 4 GPIO and a multiple object question ?

2021-09-22 Thread Joseph Larralde
the serial console in raspbian lite's config file because it was causing glitches in the serial communication. Now it's working fine with a 115200 baudrate. Hope this helps, I can provide a few more details about this method if necessary. Joseph Larralde -- freelance developer www.jose

Re: [PD] pduino / comport / raspberry

2021-02-28 Thread Joseph Larralde
Hi Alexandre and Roman, Le 28/02/2021 à 20:05, pd-list-requ...@lists.iem.at a écrit : Date: Sun, 28 Feb 2021 19:46:36 +0100 From: Roman Haefeli To:pd-list@lists.iem.at Subject: Re: [PD] pduino / comport / raspberry Message-ID:<9f55d9bdefe73a9d993790cdd0d5221dc21eabfb.ca...@gmail.com> Content-Typ

Re: [PD] split number into digits

2021-01-17 Thread Joseph Larralde
Hi list, To elaborate on Claude's answer, here is how I would do it in vanilla : #N canvas 355 282 450 300 12; #X obj 214 124 % 10; #X obj 96 126 / 10; #X obj 182 91 t f f; #X floatatom 182 32 5 0 0 0 - - -; #X obj 96 148 i; #X obj 96 172 sel 0; #X obj 214 147 list append; #X obj 214 170 t a a;

Re: [PD] [pd] sending lists via [comport]

2020-01-29 Thread Joseph Larralde
You could also consider using [mrpeach/slipenc] and [mrpeach/slipdec] around the [comport] object, which allows you to perform OSC style communication using [mrpeach/packOSC] and [mrpeach/unpackOSC]. Just check the examples in the mrpeach library. Le 29/01/2020 à 11:00, pd-list-requ...@lists.i

Re: [PD] patcher scripting using $0 ?

2019-04-10 Thread Joseph Larralde
g using $0 ? Message-ID: Content-Type: text/plain; charset="utf-8" On 10.04.19 02:35, Joseph Larralde wrote: Looks like I still need to catch up with latest pd improvements. so much to read, so little time:-) Indeed :) I suppose digging in the list archive would have given me the answer

Re: [PD] patcher scripting using $0 ?

2019-04-09 Thread Joseph Larralde
To:pd-list@lists.iem.at Subject: Re: [PD] patcher scripting using $0 ? Message-ID:<2baa166a-d028-2c7c-a33a-48b7e4528...@iem.at> Content-Type: text/plain; charset="utf-8" On 09.04.19 16:26, Joseph Larralde wrote: For example : I have a "soundbank" abstraction, which I init

[PD] patcher scripting using $0 ?

2019-04-09 Thread Joseph Larralde
I'm currently writing some GUI abstractions which have their appearance initialized by arguments. I'm using patcher scripting to achieve this. I wonder if there is a way to target a top-level patch in another way than using its patch name ... Being able to use $0 in the destination name would b

Re: [PD] Implementing compressor as a patch?

2019-04-08 Thread Joseph Larralde
ll the magic happens. cheers Em seg, 8 de abr de 2019 às 09:01, Joseph Larralde mailto:joseph.larra...@gmail.com>> escreveu: I implemented an external based on this excellent paper in my lib "jl" (which is available on deken, see the source here : https://github.com/josep

Re: [PD] Implementing compressor as a patch?

2019-04-08 Thread Joseph Larralde
I implemented an external based on this excellent paper in my lib "jl" (which is available on deken, see the source here : https://github.com/josephlarralde/jl.pd.lib) It's called [sidechain~]. I'm happy enough with it to use it in concert. Le 08/04/19 à 13:32, pd-list-requ...@lists.iem.at a éc

Re: [PD] Displaying text

2019-02-01 Thread Joseph Larralde
Hi Martin, As Maximiliano suggests, Inscore, which I tried a bit in the past, is a good solution that will even allow you to generate (not too complex) scores on-the-fly. Personnally I would go for the following scenario : Pd talking to a Node.js application via OSC (UDP), and the Node appli

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
t I would start with simply copying the array data and profile. Gesendet: Donnerstag, 08. November 2018 um 16:50 Uhr Von: "Joseph Larralde" An: "Christof Ressi" , Pd-List Betreff: Re: [PD] [PD-announce] jl lib Hmmm, that's what I was fearing. In my c++ lib I read the

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
ember 2018 um 14:40 Uhr Von: "Lucas Cordiviola" An: "Joseph Larralde" , "pd-list@lists.iem.at" Betreff: Re: [PD] [PD-announce] jl lib On 11/8/2018 10:00 AM, Joseph Larralde wrote:Hi Lucas, Thanks a lot for the hints ! I'm curious to know how you comp

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
Le 08/11/18 à 14:40, Lucas Cordiviola a écrit : pd-lib-builder is ready to use 32 and 64 bit Pds if they are in the default location: 32bit: /C:\Program Files (x86)\pd/ 64bit: /C:\Program Files\pd/ If you like you can specify any other dir when calling make: /make PDDIR=your/path/to/pd/ On Msy

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
PD ANNOUNCE Subject: Re: [PD] [PD-announce] jl lib Message-ID: Content-Type: text/plain; charset="utf-8" On 11/7/2018 1:07 PM, Joseph Larralde wrote: I'd be glad to hear any kind of feedback if you give it a try. Hi Joseph, Some feedback: I tried compi

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
t: Re: [PD] [PD-announce] jl lib Message-ID: Content-Type: text/plain; charset="utf-8" I’d love to try on Linux 64 What is stut~ a stutter? On Wed, Nov 7, 2018 at 11:16 AM Joseph Larralde wrote: Hi everyone here, Recently I released a lib for pd vanilla which is now availabl

[PD] [PD-announce] jl lib

2018-11-07 Thread Joseph Larralde
Hi everyone here, Recently I released a lib for pd vanilla which is now available through deken as "jl". Thanks to everyone who made this possible, deken and pd-lib-builder really ease the process ! FYI, the jl library contains a collection of sound generators (sample players, fm, and granular

Re: [PD] pd external c++ example

2018-06-04 Thread Joseph Larralde
rom 'int' to 't_atomtype' for 6th argument EXTERN t_class *class_new(t_symbol *name, t_newmethod newmethod, is you're 6th argument a '0'? looks like in C++ you can't pass an int where an enum (t_atomtype) is expected. try to pass 'A_NULL' in

[PD] pd external c++ example

2018-06-03 Thread Joseph Larralde
Hi list, Some time ago I wrote a bunch of pd externals in C++, some using flext, some by tweaking xcode projects until they worked. Yesterday I've been trying the examples from the pure-data/externals-howto github repo, with the idea in mind to write my own clean pd library. The first example