Re: [Tinyos-help] Use of multiple sensors

2011-10-31 Thread Luís Pereira
Hello, You need to create two components for your sensors. I will give you my example for a telosa: I added two components for the AppC.nc file: components new HamamatsuS1087ParC() as LightSensor; components new SensirionSht11C() as TempSensor; then I create two interfaces in my application

[Tinyos-help] Use of multiple sensors

2011-10-30 Thread sai manoj
Hi all, I am trying to implement a application in Tinyos-2.1.1 on Iris motes, in which I need to use Photosensor as well as Temperature sensor. I need to sense the light data and then temperature value next. Is this possible? If so how to define two different reads for 2 different sensors? --