
Æ__vØ is a Pd-patch developed in the workshop AuDIYolab v.Ø happened in Telenoika in may 2011.
You can check the process here
collaborators > marco / moshe / paula / edrok
coordination > freequencies
maig 2011

auDIYolabbers!!
musa’s >> pd / codi / opencv / AVreactiva >>> http://musa.poperbu.net/
luthiers drapaires >> reciclatge / grabacions de camp / >> http://luthiersdrapaires.wordpress.com
luthiers lab >> digital skratxes / arduino / DIY Hardware >> http://www.luthierlab.com
ababol >> sessions / esdeveniments >> http://www.ababolparty.com
**** >> ******* / ******* >>
**** >> ******* / ******* >>
[bang[
|
[metro 232]
|
[random 34]
|
[ ? \
bé aquesta és la primera entrada d’aquest blog……
si vols tenir un objecte de pd q faci hello world compila’t aquest codi .c
______-_-_–_————–
#include “m_pd.h”
static t_class *helloworld_class;
typedef struct _helloworld {
t_object x_obj;
} t_helloworld;
void helloworld_bang(t_helloworld *x)
{
post(“Hello world !!”);
}
void *helloworld_new(void)
{
t_helloworld *x = (t_helloworld *)pd_new(helloworld_class);
return (void *)x;
}
void helloworld_setup(void) {
helloworld_class = class_new(gensym(“helloworld”),
(t_newmethod)helloworld_new,
0, sizeof(t_helloworld),
CLASS_DEFAULT, 0);
class_addbang(helloworld_class, helloworld_bang);
}
::::::::::::::::::
mes info aquí>>
http://sll3.wordpress.com/puredata/com-escriure-un-external-per-a-puredata/