wallart

8x8 pixel display firmware
git clone https://git.woozle.org/neale/wallart.git

Neale Pickett  ·  2024-06-09

picker.h

 1#pragma once
 2
 3#include <stdint.h>
 4
 5class Picker {
 6public:
 7    Picker();
 8    bool Pick(uint8_t);
 9private:
10    int val;
11};