mirror of
https://github.com/NEBULAIR/SchoolProject.git
synced 2026-03-10 08:51:23 +00:00
Initial commit. Starts working on the project
This commit is contained in:
29
blink.ino
Normal file
29
blink.ino
Normal file
@@ -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
|
||||
}
|
||||
32
specs
Normal file
32
specs
Normal file
@@ -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!
|
||||
Reference in New Issue
Block a user