From c67fdc01eb4aa9f41379cc93c41cfb214c2d9528 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Sat, 20 Jun 2015 18:02:37 +0200 Subject: [PATCH] Initial commit. Starts working on the project --- blink.ino | 29 +++++++++++++++++++++++++++++ specs | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 blink.ino create mode 100644 specs diff --git a/blink.ino b/blink.ino new file mode 100644 index 0000000..d779d9f --- /dev/null +++ b/blink.ino @@ -0,0 +1,29 @@ +/* + Blink + Turns on an LED on for one second, then off for one second, repeatedly. + + Most Arduinos have an on-board LED you can control. On the Uno and + Leonardo, it is attached to digital pin 13. If you're unsure what + pin the on-board LED is connected to on your Arduino model, check + the documentation at http://www.arduino.cc + + This example code is in the public domain. + + modified 8 May 2014 + by Scott Fitzgerald + */ + + +// the setup function runs once when you press reset or power the board +void setup() { + // initialize digital pin 13 as an output. + pinMode(13, OUTPUT); +} + +// the loop function runs over and over again forever +void loop() { + digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) + delay(1000); // wait for a second + digitalWrite(13, LOW); // turn the LED off by making the voltage LOW + delay(1000); // wait for a second +} \ No newline at end of file diff --git a/specs b/specs new file mode 100644 index 0000000..7439075 --- /dev/null +++ b/specs @@ -0,0 +1,32 @@ +Arduino compatible Mega2560 R3 ATmega2560-16AU + +joostvanoorschot [4:19 PM] +Ethernet shield Arduino + +joostvanoorschot [4:20 PM] +DHT11 Temperature and humidity sensor + +joostvanoorschot [4:21 PM] +Wifi Module Esp8266 Serial Wifi Esp-01 + +joostvanoorschot [4:21 PM] +Peristaltic Dosagepump 6v + +joostvanoorschot [4:24 PM]4:24 +5M 5050 LED Strip grow light lamp RED BLUE 8:1 for Hydroponic plants 60LEDs/M Waterproof 12V + +joostvanoorschot [4:24 PM] +ill send a list where i ordered each as well so you can get additional specs + +joostvanoorschot [4:26 PM] +http://www.aliexpress.com/snapshot/6433375358.html?orderId=65318335614115 for the grow lights +Wholesale Product Snapshot Product name is 5M 5050 LED Strip grow light lamp RED BLUE 8:1 for aquarium greenhouse Hydroponic plants 60LEDs/M Waterproof 12V + +joostvanoorschot [4:28 PM] +for the pump: http://www.bitsandparts.eu/Peristaltische_doseringspomp_6V__(Motoren_and_Drivers)-p102079.html + +joostvanoorschot [4:30 PM] +for the wifi module: http://www.bitsandparts.eu/Wifi_module_ESP8266_Serial_Wifi_ESP-01_(Breakout_boards_and_modules)-p100242.html + +joostvanoorschot [4:31 PM] +the rest of the stuff is just run of the mill stuff that you can find loads of resources on online. if you need anything else let me know! \ No newline at end of file