Created as a showcase project, AMAZE-28, the single-room summer house, was successfully constructed within 28 days on the grounds of the Kerala State Nirmithi Kendra. The 3D-printed building at the Kerala State Nirmithi Kendra in Thiruvananthapuram. (Photo: Shekunj) The inauguration of Kerala's inaugural 3D-printed structure, a 380-square-foot single-room summer house, is scheduled to take place on October 10 at the Kerala State Nirmithi Kendra (Kesnik) campus located in PTP Nagar, Thiruvananthapuram. Conceived as a showcase initiative, the summer house named AMAZE-28 was successfully finished within a mere 28 days. This impressive project was executed by Tvasta, a construction technology startup based in Chennai, founded by alumni of IIT-Madras, who have entered into a memorandum of understanding (MoU) with Kesnik. AMAZE-28 is perched upon a concrete foundation atop a gentle elevation within the Kesnik campus. Febi Varghese, the Director and Chief Executive Officer of...
Hi !!!!
Here we are going to learn very very simple use of Arduino, that is blinking of a LED. Here we will do simplest project using Arduino. So, here we go....
COMPONENTS REQUIRED -
- Bread Board
- Arduino UNO
- Jumper Wires
- Power Source (5V) / Battery
- Resistor (1K)
CIRCUIT PREPARATION -
Take bread board and Arduino. Connect the +5V from Arduino to the +Ve line on Bread Board and GROUND from Arduino to -Ve line on bread board.
Red Wire : +5 V
Black Wire : GROUND
Now put a LED on bread board. Connect the Anode (+ / Longer terminal) of led to the pin 13 of Arduino. Connect Cathode (- / Shorter terminal) to 1K ohm resistor and connect another terminal of resistor to the GND on breadboard.
Now our circuit is ready to work.
Our next aim is to build the code. Let's make our code.
CODE -
To download the complete code - CLICK HERE
-------------------------------------------------------------------------------------------------------
int led = 13; // led is connected to pin 13 of arduino, so it is given a name, led
void setup() // this routine runs once when you press reset:
{
pinMode(led, OUTPUT); // initialize led pin as output pin
}
void loop()
{
digitalWrite(led, HIGH); // turn the LED ON
delay(1000); // Wait for 1000 millisecond(s)
digitalWrite(led, LOW); // turn the LED OFF
delay(1000); // Wait for 1000 millisecond(s)
}
--------------------------------------------------------------------------------------------------------------------------
Yurekaaaaaaaaaaaaaaaa.. !!!!
here we go... our project is working now !!!!
SIMULATION -
Click here to see the simulation of above Project.
Comments
Post a Comment