Creating a broad 433mhz "Sniffer"
hey everyone, i'm looking create "rf sniffer" sketch new device have purchased, see here: http://altelectronics.co.uk/shop/arduino/usb-rf-433-92-mhz-transceiver-module/prod_77.html an example of sketch used find devices specific same brand device below, wondering if can modify or write entirely new 1 find , display packet information of device nearby operating on 433.92mhz. code: [select] // * code example receiving data sensors made adaptive design ltd. // * you'll find more information on http://www.adaptivedesign.ie // * tested aduino ide 1.0 of later // * sketch requires: // * // * libraries in standard arduino libraries folder: // * jeelib https://github.com/jcw/jeelib #include <ports.h> #include <rf12.h> #include <avr/sleep.h> void setup () { serial.begin(115200); serial.println("\n[rf usb rrx test]"); rf12_initialize(20, rf12_433mhz, 4); //node,band,group pinmode(7, output); digitalwrite(7, high); // set led off } void loo...