I've added a PPMIn class which will help you decode an incoming PPM signal. This can be used for implementing a trainer port, or for building a receiver. It relies on being called by an external interrupt handler, like PCINT0/1/2 or INT0/1. This gives you the freedom to use your own, or some other interrupt handling mechanism (like the pcint library).
Another class that's been added is the ServoOut class. This can be used to control servos. It's kind of like the 'official' Servo library that comes with the Arduino IDE, but that library won't play nicely with the ArduinoRCLib. Also, I hope my implementation performs a bit better, I've done all I can to keep the interrupt handler as small as possible.