#include #include /*************************************************** /MINDS-i Calibration. mymindsi.com / /Radio Test Calibration / /This Radio Test Calibration code is used to test /and adjust your Radio transmitter and to establish /the signal that your radio is sending. /***************************************************/ int val; void setup() { Serial.begin(9600); //start a serial connection } void loop() { val = getRadio(2); //read the value being sent on pin 2 Serial.println(val); //send a string or value on the serial connection }