Well I read not all the information on first link in the earlier post from
danage.
on this side Veyron wrote
HowToRFM12_ASK from Veyron
Veyron wrote
"Schaltet man im Menü auch RFM12 ASK external filterein, so ist es möglich an Pin 4 des
RFM12-Chips Empfangssignale zu messen. Dazu ist ein ECMD Aufruf nötig"
Durch einen kleinen Trick kann das RFM12 auch zum Schalten von Funksteckdosen verwendet werden. "
pin 4 = FFIT from the RFM12B I it is not connected ,to the jeenode.(yet)
I search for the rfm12_ask_external_filter_init() function , and I
found this in an old web buffer.
#ifdef RFM12_ASK_EXTERNAL_FILTER_SUPPORT
void
rfm12_ask_external_filter_init()
{
rfm12_prologue ();
rfm12_trans(0x82C0); // 2. PwrMngt TX off, enable whole receiver chain
rfm12_trans(0xC238); // 6. Data Filter Command
rfm12_epilogue ();
}
void
rfm12_ask_external_filter_deinit()
{
rfm12_init();
}
#endif // RFM12_ASK_EXTERNAL_FILTER_SUPPORT
So I started up de RF12demo , and connected a high impedance (crystal) earphone to
ground and pin 4 off the RFM 12B and I heard nothing as aspected,
Then I changed this two registers
rfm12_trans(0x82C0);
rfm12_trans(0xC238);
Started up RF12demo and to my suprise I heard a lot off noise, on pin 4 and when
I pressed my FS20 Remote I heard the bitstream , so something was coming trough.
There was a lot of noise , so maybe you could use it to decode FS20 with some
extra hardware .opamp or vco. (I don't no if it is good enough for FS20)
There is on the RFM12B an other output I think the quality is
better then pin4 ,it could be the RF signal before all filters and
decoders (I don't no this) , the disadvantage is that it isn't led to the sides
off the circuit-board.
When you look at the board off the rfm12 , crystal to the left,the most
top right C ,the most right connection of this c is the signal,maybe
this one could work,you need an op-amp or vco with this one.
Well it needs some more investigation.