style: implement clang-format styling parameters

This commit is contained in:
A.M. Rowsell 2026-09-22 02:06:49 -04:00
commit f2ce83335c
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
10 changed files with 462 additions and 547 deletions

View file

@ -13,9 +13,7 @@
class NeoPixel {
public:
NeoPixel(uint8_t stringLength) : length(stringLength) {
gpioPin = LATBbits.LATB9;
};
NeoPixel(uint8_t stringLength) : length(stringLength) { gpioPin = LATBbits.LATB9; };
uint8_t setNeoPixel(uint8_t index, uint8_t red, uint8_t green, uint8_t blue);
void allPixelsOff(void);
@ -27,4 +25,3 @@ class NeoPixel {
};
#endif // NEOPIXEL_HPP