1
0
forked from me/IronOS

Fillout settings functions

Settings menu works
Movement working & TMP calibrated
Tip reading sensibily
Accuracy seems ok
Trimmed down overshoot by biasing integral
Saving to flash working, detailed idle
Sleep mode
Description scrolls
Building for DFU working
Motion detection update
Use manual alg instead, using highpass filter, then sum current change vs rolling average
Re-shuffle the pwm code organisation
This commit is contained in:
Ben V. Brown
2017-08-30 21:42:01 +10:00
parent a766d1d779
commit 347968e4ef
335 changed files with 314954 additions and 41703 deletions

View File

@@ -0,0 +1,21 @@
/*
* uRender.h
*
* Created on: 30Aug.,2017
* Author: Ben V. Brown
*/
#ifndef URENDER_HPP_
#define URENDER_HPP_
#include "stm32f1xx_hal.h"
class uRender {
public:
void render(uint8_t* bufferOut);
private:
uint8_t x_start,x_end,width,height;
uint8_t localBuffer[96*16/2];//local storage buffer
};
#endif /* URENDER_HPP_ */