Initial Header and source, dealing with stupid ide bugs.

This commit is contained in:
KaraBun 2022-12-22 21:09:56 -05:00
parent a319e70d06
commit d47dcdf828
3 changed files with 17 additions and 0 deletions

View File

@ -1,4 +1,6 @@
#include <Encoder.h>
#include "src/Lanes.h"
#include <Arduino.h>
const int Lane1Pin = 9; //Output Channel 1

1
src/Lanes.cpp Normal file
View File

@ -0,0 +1 @@
#include "Lanes.h"

14
src/Lanes.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef Lanes_h
#define Lanes_h
class Lane {
public:
Lane(int Pin);
void output();
private:
};
#endif