Files
BA_DIY_Power_PCB/main/include/functions.h
der_zaske 56f6c33124 changed structer of whole Project
-Added GPIO.c
-Added ADC.c
-Added mcpwm.c
-Added all headrs for new files
-Fixed Header usage
-Fixed parsed pins only import  once
2025-01-26 01:07:40 +01:00

13 lines
172 B
C

// functions.h
#ifndef FUNCTIONS_H
#define FUNCTIONS_H
#include "ssd1306.h"
#include <stdbool.h>
bool get_Hall(int HallSensorGPIO);
SSD1306_t *configure_OLED();
#endif