I bought a cheap 6 channel receiver compatible with the E-Sky EK2-0406A remote control (and using the same crystal as the 4 in 1 standard controller for the honey bee cp2). I found the PPM signal pin and will have it connected to the arduino for the ARCHA project.
Here are some specs of that receiver that can be found under $10.00 usd on ebay:
- Number Of Channels: 6CH
- Frequency: FM-72 Mhz
- Size: 35×22x10 mm
- Weight: 7.5 gram
- Antenna Length: 800 mm
- Operating Voltage: 4~6 V
- Current Drain: 9 mA
- Range: 800 M
- Narrow Band
- Microprocessor decoder
- High inter-modulation and interference suppression
- High adjacent channel selectivity and interference rejection
- No servo jitter when the transmitter is switched off (** however the ppm signal reading becomes erratic ** will have to build code to reject the erratic ppm signal **)
- Small dimensions and weight
- Compatible all FM / PPM transmitters
- Uses mini or standard sized crystals
Picture of the receiver: (click to enlarge)

Test rig: (click to enlarge)

Found the PPM signal! : (click to enlarge)

Close up of the PPM Signal pin (pin 7 of a chip labelled: SU06A on the back of the board): (click to enlarge)

That pin will now need to be connected to one of the digital input on the arduino controller. I connected the ppm signal to the digital pin 2 of the arduino (with also a common ground).
The following source code will display the channel values to the serial monitor: PPM_Test.pde
Here is an annotated example of what will appear on your serial console:
**********START********
449 <-Ch2
777 <-Ch3
1184 <-Ch4
561 <-Ch5
1291 <-Ch6
9355 <–Sync Frame
1206 <-Ch1
1247 <-Ch2
778 <-Ch3
1191 <-Ch4
562 <-Ch5
1289 <-Ch6
9356 <–Sync Frame
1211 <-Ch1
1244 <-Ch2
771 <-Ch3
1187 <-Ch4
557 <-Ch5
1287 <-Ch6
9359 <–Sync Frame
1199 <-Ch1
1242 <-Ch2
776 <-Ch3
1174 <-Ch4
554 <-Ch5
1287 <-Ch6
9361 <–Sync Frame
From this sample we can determine that this specific receiver have a sync frame of around 9 milliseconds (9000 microseconds).
The calibration procedure of the Firmware of the ARCHA Project will auto sense that frame length by listening to the ppm signal for around two seconds and then round the maximum value found to the nearest thousand (so 9361 would be sensed as 9000). Then another pass will verify that this value is at least 2000 microseconds higher than all the sensed channel values.
You can read more about PPM here.
Code, Hack, PPM, Projects - ARCHA, Receiver, SU/R-6FM, SunUP