├── .gitignore ├── README.md ├── examples └── SoftPWM_example │ └── SoftPWM_example.ino ├── keywords.txt ├── library.properties └── src └── SoftPWM.h /.gitignore: -------------------------------------------------------------------------------- 1 | SoftPWM.h.gch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palatis/arduino-softpwm/HEAD/README.md -------------------------------------------------------------------------------- /examples/SoftPWM_example/SoftPWM_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palatis/arduino-softpwm/HEAD/examples/SoftPWM_example/SoftPWM_example.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palatis/arduino-softpwm/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palatis/arduino-softpwm/HEAD/library.properties -------------------------------------------------------------------------------- /src/SoftPWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palatis/arduino-softpwm/HEAD/src/SoftPWM.h --------------------------------------------------------------------------------