Merge branch 'wifi'

This commit is contained in:
Matthias Mitscherlich
2023-01-13 14:55:22 +01:00
8 changed files with 1900 additions and 0 deletions
+17
View File
@@ -59,6 +59,7 @@ typedef enum
class GPIO
{
public:
<<<<<<< HEAD
GPIO(int number, GPIO_Direction_t direction);
@@ -75,7 +76,23 @@ class GPIO
GPIO_Value_t value = GPIO_VALUE_LOW;
};
=======
>>>>>>> wifi
bool GPIO(int number, GPIO_Direction_t direction);
bool GPIO_setOutput(GPIO_Value_t value);
GPIO_Value_t GPIO_getInput(void);
private:
int number;
GPIO_Direction_t direction;
GPIO_Value_t value;
};
/** @} */