add ui, change project struct

This commit is contained in:
Sheikah
2023-01-23 16:39:02 +08:00
parent 5f59f9412a
commit df4db6d8c4
150 changed files with 931 additions and 741 deletions

View File

@@ -0,0 +1,13 @@
// Rotary encoder library for Arduino.
#include "hardware.h"
#include "tim.h"
#ifndef rotary_h
#define rotary_h
uint8_t
EC11_init(void);
// Process pin(s)
uint16_t EC11_DIR(void);
uint16_t EC11_COUNT(void);
#endif