12 lines
218 B
C++
12 lines
218 B
C++
#ifndef __DISPLAY_H__
|
|
#define __DISPLAY_H__
|
|
|
|
#include <Arduino.h>
|
|
|
|
class CProtocol;
|
|
|
|
void initOLED();
|
|
void updateOLED(const CProtocol& CtlFrame, const CProtocol& HtrFrame);
|
|
void animateOLED();
|
|
|
|
#endif // __DISPLAY_H__
|