diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..db4195b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.lnk diff --git a/arduino/AqueponicsProject/AqueponicsProject.ino b/arduino/AqueponicsProject/AqueponicsProject.ino index d2dd8ad..205afee 100644 --- a/arduino/AqueponicsProject/AqueponicsProject.ino +++ b/arduino/AqueponicsProject/AqueponicsProject.ino @@ -13,12 +13,15 @@ #include // Pin definitions -#define LAMP 8 // Pin of the lamp relay #define LED 13 // For Leonardo built in led -#define PUMP_IN 9 // Pin of the pump 1 -#define PUMP_OUT 10 // Pin of the pump 2 -#define WATER_UP 4 // Pin of the water sensor 1 -#define WATER_DOWN 5 // Pin of the water sensor 2 +// -Relays +#define PUMP_IN 2 // Pin of the pump 1 +#define PUMP_OUT 3 // Pin of the pump 2 +#define LAMP 4 // Pin of the lamp relay +#define FOG 5 // Pin of the lamp relay +// -Sensors +#define WATER_UP 9 // Pin of the water sensor 1 +#define WATER_DOWN 8 // Pin of the water sensor 2 // Time definition #define DAY_TIME 14 // Number of hours the day lasts (LAMP ON) diff --git a/arduino/AqueponicsProject/README.txt b/arduino/AqueponicsProject/README.txt index 866a724..a6743a6 100644 --- a/arduino/AqueponicsProject/README.txt +++ b/arduino/AqueponicsProject/README.txt @@ -3,4 +3,5 @@ Librairies: TimerOne https://github.com/PaulStoffregen/TimerOne -Copy after unzip inside Arduino/hardware/libraries/ \ No newline at end of file +Copy after unzip inside +C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries \ No newline at end of file diff --git a/schematics/RelayBoard.fzz b/schematics/RelayBoard.fzz index 950229b..7ec5baa 100644 Binary files a/schematics/RelayBoard.fzz and b/schematics/RelayBoard.fzz differ