16 lines
170 B
C
16 lines
170 B
C
/*
|
|
* app.h
|
|
*
|
|
* Created on: Apr 3, 2021
|
|
* Author: Think
|
|
*/
|
|
|
|
#ifndef INC_APP_H_
|
|
#define INC_APP_H_
|
|
|
|
void setup(void);
|
|
void loop(void);
|
|
|
|
|
|
#endif /* INC_APP_H_ */
|