├── .arduino-ci.yml ├── .github └── workflows │ ├── arduino-lint.yml │ ├── arduino_test_runner.yml │ └── jsoncheck.yml ├── LICENSE ├── README.md ├── examples └── CPUVolt │ └── CPUVolt.ino ├── keywords.txt ├── library.properties └── src ├── CPUVolt.cpp └── CPUVolt.h /.arduino-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/.arduino-ci.yml -------------------------------------------------------------------------------- /.github/workflows/arduino-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/.github/workflows/arduino-lint.yml -------------------------------------------------------------------------------- /.github/workflows/arduino_test_runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/.github/workflows/arduino_test_runner.yml -------------------------------------------------------------------------------- /.github/workflows/jsoncheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/.github/workflows/jsoncheck.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/README.md -------------------------------------------------------------------------------- /examples/CPUVolt/CPUVolt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/examples/CPUVolt/CPUVolt.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/library.properties -------------------------------------------------------------------------------- /src/CPUVolt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/src/CPUVolt.cpp -------------------------------------------------------------------------------- /src/CPUVolt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripred/CPUVolt/HEAD/src/CPUVolt.h --------------------------------------------------------------------------------