From 33270f5442ae291249226e953fbb6b379e52b4d3 Mon Sep 17 00:00:00 2001 From: Casey Halverson Date: Mon, 22 Jun 2015 10:54:44 -0700 Subject: [PATCH] changing to frequency method .frequency should always be used as it contains required band setting functions. --- examples/FMBeacon/FMBeacon.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/FMBeacon/FMBeacon.ino b/examples/FMBeacon/FMBeacon.ino index 4bfcffd..e54323a 100644 --- a/examples/FMBeacon/FMBeacon.ino +++ b/examples/FMBeacon/FMBeacon.ino @@ -22,7 +22,7 @@ void setup() { int result = radio.testConnection(); Serial.println(result,DEC); radio.initialize(); // setup radio - radio.setFrequency(446000); // set to 70 cm call frequency + radio.frequency(446000); // set to 70 cm call frequency Serial.println("Done with radio beacon setup."); }