PPMEncoder
PPMEncoder copied to clipboard
Generate a PPM Signal with an Arduino
I am new to arduino programming and don't see a Mistake in the sketch, can someone help me? ` #include "PPMEncoder.h" #define OUTPUT_PIN 2 void setup() { ppmEncoder.begin(OUTPUT_PIN); } void...
Can it support multiple ppm pins? An example to illustrate the use case: ``` #include "PPMEncoder.h" #define OUTPUT_PPM_CHANNEL_AMOUNT 6 #define OUTPUT_PPM_A 10 #define OUTPUT_PPM_B 11 #define OUTPUT_PPM_C 12 #define OUTPUT_PPM_D...
Hi, Just to let you know that it does not work by default on a 8mhz pro mini, It works if i change 2 to 1 when assigning to OCR1A...