Hello~~~~
I'm going to radio the output of a temp sensor.
The transmitter is nRF24AP1: http://www.sparkfun.com/products/8565
Receiver is Nordic ANT stick: Nordic USB ANT Stick - WRL-08840 - SparkFun Electronics
My idea is:
1)Connect pinTX of nRF24AP1 to pinTX of Arduino.
2)Arduino sends output of temp sensor to pinTX.
3)Monitor the COM port of ANT stick.
And my code:
// output of temp sensor is defined as float T (number of places is 2).
const int pinTx = 1;
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println(T);
delay(100);
}
This is my idea....
But I got nothing on the serial monitor.... =(