Initial Header and source, dealing with stupid ide bugs.
This commit is contained in:
parent
a319e70d06
commit
d47dcdf828
3 changed files with 17 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
||||||
#include <Encoder.h>
|
#include <Encoder.h>
|
||||||
|
#include "src/Lanes.h"
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
|
||||||
const int Lane1Pin = 9; //Output Channel 1
|
const int Lane1Pin = 9; //Output Channel 1
|
||||||
|
|
1
src/Lanes.cpp
Normal file
1
src/Lanes.cpp
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#include "Lanes.h"
|
14
src/Lanes.h
Normal file
14
src/Lanes.h
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#ifndef Lanes_h
|
||||||
|
#define Lanes_h
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Lane {
|
||||||
|
public:
|
||||||
|
Lane(int Pin);
|
||||||
|
void output();
|
||||||
|
|
||||||
|
private:
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue