doc: renamed project
This commit is contained in:
committed by
Sylvan Arnold
parent
244e516bd8
commit
32618389d1
31
pico-sensor/src/oled.h
Normal file
31
pico-sensor/src/oled.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright (c) 2023, Erich Styger
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MAIN_OLED_H_
|
||||
#define MAIN_OLED_H_
|
||||
|
||||
#include "platform.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if PL_CONFIG_USE_BUTTONS
|
||||
#include "buttons.h"
|
||||
#include "McuDebounce.h"
|
||||
|
||||
void OLED_OnButtonEvent(BTN_Buttons_e button, McuDbnc_EventKinds kind);
|
||||
#endif
|
||||
|
||||
void OLED_SendText(const char *text);
|
||||
|
||||
void OLED_Init(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* MAIN_OLED_H_ */
|
||||
Reference in New Issue
Block a user