arduino-softpwm
arduino-softpwm copied to clipboard
Software PWM library for Arduino
In my project I need to add both the libraries Servo.h and palatisSoftPWM.h but the problem is: multiple definition of `__vector_17' I know that I could use the Servotimer2 but...
In your example you are generating PWM signal on 20 channels and one of them is PD1 which is TX pin so I expected garbage in the terminal but there...
Hello, After i include #include to your example compilation fails: Arduino: 1.8.5 (Windows 7), Board: "Arduino Nano, ATmega328P" libraries\Servo\avr\Servo.cpp.o (symbol from plugin): In function `ServoCount': (.text+0x0): multiple definition of `__vector_11'...
It appears as if [AltSoftSerial](https://github.com/PaulStoffregen/AltSoftSerial) is trying to use the same timer as SoftPWM. PlatformIO is spitting out the following on compilation: ``` AltSoftSerial.cpp.o (symbol from plugin): In function `AltSoftSerial::read()':...
Getting this error compiling sample code: ``` SoftPWM_example:65:41: error: 'PORTC0' was not declared in this scope SOFTPWM_DEFINE_CHANNEL(14, DDRC, PORTC, PORTC0); //Arduino pin A0 ``` I used parts of examples to...