Pd-extendd used to add almost all libraries to your path by default. Pd vanilla does not and deken installed the library but does not add the library to your path.
You can either add a [declare -stdlib zexy] to the patch in question, add the path to the zexy folder in your path preferences, or if the lib is in the extras folder add the lib to the startup path via “-lib zexy”.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On Feb 1, 2016, at 3:20 PM, pd-list-request@lists.iem.at wrote:
From: Rick Snow <ricksnow@gmail.com mailto:ricksnow@gmail.com> Subject: [PD] using zexy/unpack with pd vanilla 46.7 on osx? Date: February 1, 2016 at 2:05:46 PM MST To: Pd-list@lists.iem.at mailto:Pd-list@lists.iem.at
Hi list,
I am trying to use the [arduino] object and manipulate PWM. It looks like setting a pin to PWM mode involves using the zexy/unpack object. I've used Deken to download the zexy library but this object still cannot be created (or I do not know how to do it at the moment). I've also tried pulling it out of the pd-extended Resources/extra/zexy folder and then putting it in a folder linked to the patch with [declare -path] but this doesn't seem to work either. Renaming the zexy/unpack.pd_darwin as Zunpack.pd_darwin also didn't work but I had a feeling that it wouldn't be that easy...!
Has anyone else used this object with vanilla 46.7 and osx?
Any advice?
Thanks! Rick
Note that [declare] does not take effect when you put the object in — you have to save and reopen the patch.
On Mon, Feb 1, 2016 at 10:30 PM, Dan Wilcox danomatika@gmail.com wrote:
Pd-extendd used to add almost all libraries to your path by default. Pd vanilla does not and deken installed the library but does not add the library to your path.
You can either add a [declare -stdlib zexy] to the patch in question, add the path to the zexy folder in your path preferences, or if the lib is in the extras folder add the lib to the startup path via “-lib zexy”.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On Feb 1, 2016, at 3:20 PM, pd-list-request@lists.iem.at wrote:
*From: *Rick Snow ricksnow@gmail.com *Subject: **[PD] using zexy/unpack with pd vanilla 46.7 on osx?* *Date: *February 1, 2016 at 2:05:46 PM MST *To: *Pd-list@lists.iem.at
Hi list,
I am trying to use the [arduino] object and manipulate PWM. It looks like setting a pin to PWM mode involves using the zexy/unpack object. I've used Deken to download the zexy library but this object still cannot be created (or I do not know how to do it at the moment). I've also tried pulling it out of the pd-extended Resources/extra/zexy folder and then putting it in a folder linked to the patch with [declare -path] but this doesn't seem to work either. Renaming the zexy/unpack.pd_darwin as Zunpack.pd_darwin also didn't work but I had a feeling that it wouldn't be that easy...!
Has anyone else used this object with vanilla 46.7 and osx?
Any advice?
Thanks! Rick
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Mon, 2016-02-01 at 22:48 -0500, Matt Barber wrote:
Note that [declare] does not take effect when you put the object in — you have to save and reopen the patch.
True. [declare] from current git master (and next Pd release) loads libraries and adds paths immediately. No need to reload patch anymore.
Credit goes to IOhannes.
Roman
On Mon, 2016-02-01 at 20:30 -0700, Dan Wilcox wrote:
You can either add a [declare -stdlib zexy] to the patch in question,
Actually, in the case of zexy you need:
[declare -stdlib zexy -stdpath zexy]
because zexy comes with an external library _and_ abstractions. You can test with [dirac~] (external) and [cart2sph] (abstraction).
Roman