Re: [PD] Variable in osc message

2009-04-16 Thread Luigi

Hi Ricardo,

have a close look at the help file. Probably just a "format" problem

like /route "space" 1 or something like that.


If that does not help, you should post your patch


Cheers

Luigi


Am 16.04.2009 um 08:53 schrieb Ricardo Dueñas Parada:


Hi list, just a simple question,

I am working with osc, and i have to send messages to pd, I am using  
OSCroute to route messages.


Next is happening to me: where i should be receiving the variable, i  
get this on the pd console:

error: gatom: no method for '1'

 The message is something like/route/1

I guess that the number is being mapped as a symbol and not a  
number, how can I convert it?

Or, what else can be?

Thanks.

Ricardo
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Wiimote on pure dyne

2009-04-16 Thread Alvaro
Hi,

this might not be a problem with Wiimote, but rather a special thing of using 
pre-installed system. 
You have to make what they call a NEST to save your own settings and so on.

http://code.goto10.org/projects/puredyne/wiki/DocNesting

Alvaro




- ursprüngliche Nachricht -


--

Message: 1
Date: Wed, 15 Apr 2009 14:37:01 +
From: Nicanor Garcia 
Subject: [PD] Wiimote on pure dyne
To: pd-list@iem.at
Message-ID:

Content-Type: text/plain; charset="iso-8859-1"

Hello, I just installed pure dyne linux portable distro on my USB and I'm
trying to configure it to my needs.

I need to use the Wiimote object which is an external, but I haven't been
able to do so.

When I try to change the paths or the startup settings on Pure Data and I
click Save all settings and then OK, the next time I open the window the
changes I made are gone so it wont load the external.

What can I do to change the settings?

Or how can I load this external in other way?

Thank you very much.

Nicanor Garcia O.
-- next part --
An HTML attachment was scrubbed...
URL: 

--


 ursprüngliche Nachricht Ende 

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Wiimote on pure dyne

2009-04-16 Thread Luigi

Hi wiimotarians

I wouldnt recommed that, i tried it before and you get into trouble,  
the latest when you try to compile something yourself.


Or ask dierctly someone from the pure:dyne team, what to do.

When i tried the "nesting" - feature was not implemented yet, in the  
actual version.



So alltogether i found it better - and less time-consuming - to  
install a full linux system like

sidux...

Just my recommendation


best Luigi



Am 16.04.2009 um 10:06 schrieb Alvaro:


Hi,

this might not be a problem with Wiimote, but rather a special thing  
of using pre-installed system.
You have to make what they call a NEST to save your own settings and  
so on.


http://code.goto10.org/projects/puredyne/wiki/DocNesting

Alvaro




- ursprüngliche Nachricht -


--

Message: 1
Date: Wed, 15 Apr 2009 14:37:01 +
From: Nicanor Garcia
Subject: [PD] Wiimote on pure dyne
To: pd-list@iem.at
Message-ID:

Content-Type: text/plain; charset="iso-8859-1"

Hello, I just installed pure dyne linux portable distro on my USB  
and I'm

trying to configure it to my needs.

I need to use the Wiimote object which is an external, but I haven't  
been

able to do so.

When I try to change the paths or the startup settings on Pure Data  
and I
click Save all settings and then OK, the next time I open the window  
the

changes I made are gone so it wont load the external.

What can I do to change the settings?

Or how can I load this external in other way?

Thank you very much.

Nicanor Garcia O.
-- next part --
An HTML attachment was scrubbed...
URL:

--


 ursprüngliche Nachricht Ende 

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] My first external: [fsm] finite state machine for pd

2009-04-16 Thread lsw

Hey Martin,

thanks for debugging. You're right, that sizeof() was definitely wrong,
as i was already passing sizes to the function. I wonder, why it didn't
crash on my machine while testing... ;)
I'm going to update the files in a minute.

All the best,
Lsw~

Am 16.04.2009, 06:18 Uhr, schrieb Martin Peach :


I think I found it. The function fsm_getbytes should look like this:

void * fsm_getbytes(int s) {
return getbytes(s);
}

instead of
void * fsm_getbytes(int s) {
return getbytes(sizeof(s));
}

At least now the help patch doesn't crash Pd on WinXP.

Martin

lsw wrote:

Hi Matthew,
 thanks for testing. I started pd by doubleclicking the help-file on my  
Mac without experiencing any crashes.
 Does the external crash as well, if you instantiate it manually, or is  
it just the help-file?
 I compiled the DLL with DevCPP (according to  
http://www.youngmusic.org/wiki/index.php/PD-linking-tutorial ) and  
Darwine on my Mac... might be a little weird. Could anyone be so kind  
to try to compile a win binary on a more solid setup? I think IOhannes  
Makefile should work for that.

 Thanks again,
Lsw~

Help file keeps crashing Pd on Win machine when I try to open it.   
Anyone

else?


 ___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management ->  
http://lists.puredata.info/listinfo/pd-list






___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Variable in osc message

2009-04-16 Thread Frank Barknecht
Hallo,
Ricardo Due?as Parada hat gesagt: // Ricardo Due?as Parada wrote:

> I am working with osc, and i have to send messages to pd, I am using
> OSCroute to route messages.
> 
> Next is happening to me: where i should be receiving the variable, i get
> this on the pd console:
> error: gatom: no method for '1'
> 
>  The message is something like/route/1
> 
> I guess that the number is being mapped as a symbol and not a number, how
> can I convert it?

Probably that's the reason. You can convert number-symbols to integers with
[atoi] from Zexy, or alternatively rewrite your OSC receiver setup to something
like "/route/one" or put the number into the data part of the OSC message i.e. 
"/route 1"

Ciao
-- 
Frank

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Variable in osc message

2009-04-16 Thread Ricardo Dueñas Parada
[atoi] did the job, thank you.


Ricardo


2009/4/16 Frank Barknecht 

> Hallo,
> Ricardo Due?as Parada hat gesagt: // Ricardo Due?as Parada wrote:
>
> > I am working with osc, and i have to send messages to pd, I am using
> > OSCroute to route messages.
> >
> > Next is happening to me: where i should be receiving the variable, i get
> > this on the pd console:
> > error: gatom: no method for '1'
> >
> >  The message is something like/route/1
> >
> > I guess that the number is being mapped as a symbol and not a number, how
> > can I convert it?
>
> Probably that's the reason. You can convert number-symbols to integers with
> [atoi] from Zexy, or alternatively rewrite your OSC receiver setup to
> something
> like "/route/one" or put the number into the data part of the OSC message
> i.e. "/route 1"
>
> Ciao
> --
> Frank
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] compiling in osx 10.4

2009-04-16 Thread Andres Ferrari


hello,

how I can to compile externals objects sources in mac ppc osx 10.4?

is needed any compliling software? is possible with Xcode ?

please help me

thanks!!!

Andrés Ferrari G.

http://www.myspace.com/anfex





  ¡Obtén la mejor experiencia en la web!< Descarga gratis el nuevo 
Internet Explorer 8. http://downloads.yahoo.com/ieak8/?l=e1


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] can't setup midi device - maybe alsa is missing.

2009-04-16 Thread hard off
i just installed pd-0.42-4, but i can't get midi working.  pd -listdev says
i have no midi devices.

The alsa Aconnectgui interface doesn't list pd as a midi device either, so
my guess is that i missed something while installing.

the install.txt file says to add this flag:

--enable-alsa


so, i assume that means i just type in:

./configure --enable-alsa


??


the midi device i am using is an edirol UM-1A and i works fine with
pd-extended 0.40
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] compiling in osx 10.4

2009-04-16 Thread Hans-Christoph Steiner


You need to install XCode and the whole Apple development tools.  Its  
best to use the latest version from Apple, which you can download from  
developer.apple.com, I think.


After that, then it depends on which sources you want to build.  I  
don't think anyone is really using XCode much.


.hc

On Apr 16, 2009, at 1:33 PM, Andres Ferrari wrote:




hello,

how I can to compile externals objects sources in mac ppc osx 10.4?

is needed any compliling software? is possible with Xcode ?

please help me

thanks!!!

Andrés Ferrari G.

http://www.myspace.com/anfex





 ¡Obtén la mejor experiencia en la web!< Descarga gratis el  
nuevo Internet Explorer 8. http://downloads.yahoo.com/ieak8/?l=e1



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list








Programs should be written for people to read, and only incidentally  
for machines to execute.

 - from Structure and Interpretation of Computer Programs


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] compiling in osx 10.4

2009-04-16 Thread Thomas Grill


After that, then it depends on which sources you want to build.  I  
don't think anyone is really using XCode much.




I wouldn't say that. Xcode is perfectly suited for developing and  
debugging pd externals (among other things).
I can offer an xcode template which is made to be used for flext- 
based externals.

https://svn.g.org/ext/trunk/flext/examples/xcode-template/
However, apart from the library dependence (which you could just  
delete) it should work for any Pd (and also Max/MSP) external.

gr~~~

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] Need help for presenting workshop

2009-04-16 Thread Adityo Pratomo
Hi there everybody,

My friend just told me to give a workshop about Pd here in Indonesia. Can
anybody suggests what kind of material I should present? Initially I want to
give 2 sessions in2 meetings, the first meeting will discuss the basic of
Pd, while giving a hands-on practice on making some simple instruments,
while on the second meeting I will discuss the visual side of Pd, such as
GEM, pdp and pidip. But, can anybody give more suggestion about what to
present? I suspect that this kind of workshop is the first in Indonesia, so
I just want to give everybody a good impression on this powerful software.

Thank you very much

-- 
mataharipertama.wordpress.com
kotakmakan.multiply.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list