Sagar Sonawane
Sagar Sonawane

Reputation: 9

Communication in wireless sensor network using nesC

I have a base station and a sensor node. I want to establish communication between these two. The base station should poll the sensor node requesting temperature data captured by the sensor node. The sensor node replies with the temperature data to the base station. I can confirm that the base station and sensor node are in relative proximity to send/receive the data.

I want to write a code in nesC which can programmatically do this. Where can I find a good guide to do this?

Specifications:

Upvotes: 0

Views: 444

Answers (1)

Djizeus
Djizeus

Reputation: 4175

You can read the TinyOS tutorials about various subjects here: http://tinyos.stanford.edu/tinyos-wiki/index.php/TinyOS_Tutorials

Oscilloscope is an example application included in TinyOS distribution that performs what you are trying to do. You can read the code in apps/Oscilloscope. See also some help on installing and using Oscilloscope here:

Upvotes: 1

Related Questions