Re: [Tinyos-help] matlab shutdown when run net.tinyos.oscope.oscilloscope.main({'125'})

2007-10-27 Thread Cadet John W. Barron
://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help -- V/R C/Col John W. Barron cadet Wing Commander

[Tinyos-help] Data Viewing

2007-09-25 Thread John W. Barron
With all the PrintF questions, I was wondering... How does everyone view their data. If I send a Message_t to serail what are my options besides hex? I mostly send PrintF messages to serail and read the Comm port with Windows Hyperterminal. I KNOW there are better ways, but how to decode

Re: [Tinyos-help] Data Viewing

2007-09-25 Thread Cadet John W. Barron
the messages it transmits into ascii. Its probably going to change in the near future though, so keep a look out. http://www.tinyos.net/tinyos-2.x/doc/html/tutorial/lesson15.html Kevin On 9/25/07, John W. Barron [EMAIL PROTECTED] wrote: With all the PrintF questions, I was wondering... How

Re: [Tinyos-help] nested events

2007-08-28 Thread John W. Barron
What are you trying to accomplish with the nesting? John Quoting Kevin Klues [EMAIL PROTECTED]: This is invalid nesc syntax. See the tinyos programming guide found here... http://csl.stanford.edu/~pal/pubs/tinyos-programming.pdf Kevin On 8/28/07, sara k [EMAIL PROTECTED] wrote: Hi All,

[Tinyos-help] Snooping Not Complete

2007-08-13 Thread John W. Barron
I have a heavily modified version of MultihopOscilloscope. Using the snooping event data is received and stored to Train a Neural Network for fault detection. Everything works, but snooping is sometimes erratic. With several nodes TXing, random nodes will not snoop messages from ALL nodes.

Re: [Tinyos-help] Tmote Sky Sensors for TinyOS 2.0

2007-08-08 Thread John W. Barron
Some sensor interfaces are under tos/platforms/telosb check the .platform file there (some are also in the telosa folder). The Sht11 is tos/platforms/telosa/sht11 (temp/hum). john Quoting Hassan Naqvi [EMAIL PROTECTED]: Hi all, I am trying to port my application of sensing Hunidity,

Re: [Tinyos-help] Environment Variables (path is empty in tinyos) !!!!

2007-08-03 Thread John W. Barron
Although this page is for Ubuntu it has good info on env, also can allow you to switch between diff versions of tos on the fly http://5secondfuse.com/tinyos/install.html john Quoting mejda chouaieb [EMAIL PROTECTED]: Hello, all ? Now I am studying Lesson 1 of TinyOS 2.x tutorial. I have

[Tinyos-help] 2.0.2 Snooping

2007-08-02 Thread John W. Barron
I have a heavily modified version of MultihopOscilloscope for tmote sky with TOS 2.0.1 that uses CTP but needs neighboring nodes to snoop information transmitted to the base station. To get this to work in 2.0.1 I disable the chip's address decoding. I tried the same code after installing

[Tinyos-help] PrintF with Float Problems

2007-06-14 Thread John W. Barron
I am trying send a Float using TOS 2.x Printf. %d modifier works for ints, but %f %F %e %E and many others I have tried will not send a float or double number. the code: printf(%f , x) where x is a float will only return : f also, I can truncate the float with the (int)x modifier but in this