Files
IronOS/workspace/TS100/inc/uRender.hpp
Ben V. Brown 347968e4ef 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
2017-09-12 12:59:06 +10:00

22 lines
338 B
C++

/*
* 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_ */