EVERYTHING FROM THE OTHER REPO

This commit is contained in:
2026-07-29 03:36:26 +03:00
parent 6777ea96db
commit 92a6ae42f5
4426 changed files with 1696506 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef FAN_PWM_H
#define FAN_PWM_H
/* Sets the pwm speed of the robots fan device */
void set_fanPWM(int pwm);
#endif
+16
View File
@@ -0,0 +1,16 @@
#ifndef TROPOSHPERE_API_H
#define TROPOSHPERE_API_H
typedef struct{
void (*setFanSpeed)(int pwm);
} Troposphere_API;
extern const Troposphere_API troposphere_api;
#endif