Difference between revisions of "Saurabh Kushwaha"

From (art)scienceblr
Jump to: navigation, search
 
(8 intermediate revisions by one user not shown)
Line 1: Line 1:
 +
 
==Introduction==
 
==Introduction==
 
'''Humans''' always try to extend their limit of sensing the surrounding or a system, through different means of tools. [[wikipedia:Sensors|Sensors]] are one of those tools which humans use to extend their limits of sensing. Now those sensor can use in the [[wikipedia:probes|probes]] or in [[wikipedia:detectors|detectors]] to gather information or work on a certain activity. Science always fascinates me; the experiments, achievements, laws and possibilities assures me that there will be a future, full of amazing concepts. I enjoy the process of experiment and it allows me to learn.  I try to develop tools which are operated hand operated as it supports the villagers who can't afford electricity costs. Few of my projects are hydraulic crane, color changing fountain, oil trapping filter, and creating fog in a bottle. Recently I discovered [[wikipedia:Arduino|Arduino]] and sensors like [[wikipedia:LDR|LDR]], [[wikipedia:Air pollution sensor|Air pollution sensor]],[http://www.instructables.com/id/Air-Pollution-Detector/]. I have been spending my time to understand it and come up with new products.  
 
'''Humans''' always try to extend their limit of sensing the surrounding or a system, through different means of tools. [[wikipedia:Sensors|Sensors]] are one of those tools which humans use to extend their limits of sensing. Now those sensor can use in the [[wikipedia:probes|probes]] or in [[wikipedia:detectors|detectors]] to gather information or work on a certain activity. Science always fascinates me; the experiments, achievements, laws and possibilities assures me that there will be a future, full of amazing concepts. I enjoy the process of experiment and it allows me to learn.  I try to develop tools which are operated hand operated as it supports the villagers who can't afford electricity costs. Few of my projects are hydraulic crane, color changing fountain, oil trapping filter, and creating fog in a bottle. Recently I discovered [[wikipedia:Arduino|Arduino]] and sensors like [[wikipedia:LDR|LDR]], [[wikipedia:Air pollution sensor|Air pollution sensor]],[http://www.instructables.com/id/Air-Pollution-Detector/]. I have been spending my time to understand it and come up with new products.  
Line 79: Line 80:
 
====Connecting Headers to the Board====
 
====Connecting Headers to the Board====
 
Follow the diagram below, to make necessary connections.
 
Follow the diagram below, to make necessary connections.
[[File:Saurabh ECG Arduino Circuit Diagram.jpeg|300px|thumb|left|ECG-Arduino Circuit Diagram]]
+
<gallery widths=240px heights=240px perrow=2 mode="packed-hover">
[[File:Saurabh ECG Complete Diagram.jpeg|300px|thumb|right|ECG-Arduino ]]
+
[[File:Body.png|350px|thumb|centre|Typical Sensor Placements]]
+
  
 +
File:Saurabh ECG Arduino Circuit Diagram.jpeg|ECG-Arduino Circuit Diagram
 +
File:Saurabh ECG Complete Diagram.jpeg|ECG-Arduino
 +
File:Body.png|Typical Sensor Placements
  
 +
</gallery>
  
  
Line 92: Line 95:
 
====Uploading the Sketch====
 
====Uploading the Sketch====
  
[[File:ECG Arduino Coding.jpeg|300px|thumb|left|Upload sketch to Arduino UNO]]
+
[[File:ECG Arduino Coding.jpeg|300px|thumb|centre|Upload sketch to Arduino UNO]]
  
 
The example sketch can be found here [http://www.instructables.com/id/ECG-Monitoring-System-by-Using-Arduino-or-AD8232/?ALLSTEPS].  
 
The example sketch can be found here [http://www.instructables.com/id/ECG-Monitoring-System-by-Using-Arduino-or-AD8232/?ALLSTEPS].  
  
  
 +
==Turbidity Meter==
  
  
 +
'''Turbidity''' is the cloudiness or haziness of a fluid caused by large numbers of individual particles that are generally invisible to the naked eye, similar to smoke in air. The measurement of [[wikipedia:turbidity|turbidity]] is a key test of water quality.
  
  
 +
====Concept====
  
  
 +
[[File:Saurabh_Turbidity Meter Concept.jpeg|150px|thumb|right|LDR Circuit Diagram|[[wikipedia:Turbidity|Turbidity]]'']]
  
  
 +
The turbidity of [[wikipedia:water|water]] creates a blockage for the [[wikipedia:light|light]] which passing through it. This deflection of light which passing through the sample water determines how much the water is clear.
  
  
 +
====Hardware Requirements:====
  
  
 +
LDR Sensor
  
 +
Light Source (Laser Beam)
  
 +
Resistor
  
 +
Arduino
  
 +
Connecting Wire
  
 +
Cup
  
==Turbidity Meter==
+
Bread Board
  
  
'''Turbidity''' is the cloudiness or haziness of a fluid caused by large numbers of individual particles that are generally invisible to the naked eye, similar to smoke in air. The measurement of [[wikipedia:turbidity|turbidity]] is a key test of water quality.
+
====Software Requirement:====
  
 +
Arduino IDE
  
====Concept====
 
  
 +
====Construction Of Turbidity Meter====
  
The turbidity of [[wikipedia:water|water]] creates a blockage for the [[wikipedia:light|light]] which passing through it. This deflection of light which passing through the sample water determines how much the water is clear.
 
  
  
====Hardware Requirements:====
+
<gallery widths=240px heights=240px perrow=2 mode="packed-hover">
  
 +
File:Ldr-circuit-arduino.jpg|LDR Circuit Diagram
 +
File:D.jpg|Turbidity Meter
  
LDR Sensor  
+
File:Saurabh_LDR Sensor.jpg|LDR Sensor Connection
 +
File:Saurabh Milkwater Solution.jpg|The solution Contain milk 1:10 water
  
 +
File:Saurabh_Turbidity Meter.jpeg|Turbidity Meter
 +
File:Saurabh Lake Water.jpg|The Solution Contain Lake Water Sample
  
Light Source (Laser Beam)
+
</gallery>
  
 +
====Arduino Program:====
  
Resistor
 
  
 +
int sensorPin = A0; // select the input pin for ldr
  
Arduino
+
int sensorValue = 0; // variable to store the value coming from the sensor
  
 +
void setup() {
  
Connecting Wire
+
Serial.begin(9600); //sets serial port for communication
  
 +
}
  
Cup
+
void loop() {
  
 +
sensorValue = analogRead(sensorPin); // read the value from the sensor
  
Bread Board
+
Serial.println(sensorValue); //prints the values coming from the sensor on the screen
  
 +
delay(100);
  
====Software Requirement:====
+
}
  
  
Arduino IDE
 
  
 +
====Quantify the Reading====
  
====Connection of LDR with Arduino:====
 
  
 +
<gallery widths=240px heights=240px perrow=2 mode="packed-hover">
 +
File:LDR SerialMonitor.png|LDR Sensor Connection
 +
File:Graph.png||Reading on Graph
 +
</gallery>
  
 +
====Line Graph====
  
[[File:Ldr-circuit-arduino.jpg|300px|thumb|left|LDR Circuit Diagram]]
+
Through the help of third party app (D3) and using HTML (Brackets) I try to generate a Line Map of the Data coming through the Sensor.
[[File:Saurabh_Turbidity Meter.jpeg|300px|thumb|right|Turbidity Meter]]
+
[[File:Saurabh_LDR Sensor.jpg|300px|thumb|centre|LDR Sensor Connection]]
+
  
 +
<gallery widths=240px heights=240px perrow=2 mode="packed-hover">
 +
File:Saurabh_Line Graph.png|Line Graph on WebPage
 +
File:Saurabh_Brackets.png|Using of HTML code and D3
 +
File:Saurabh_Brackets1.png|Data Sheet
  
 +
</gallery>
  
====Arduino Program:====
+
==Cyborg & Posthuman==
  
 +
===Cyborg===
 +
 +
 +
[[File:Saurabh Cyborg.jpg|150px|thumb|right|Cyborg]]
 +
 +
 +
'''cy·borg''', [[wikipedia:Cyborg|Cyborg]] is basically half human and half machine. In my perspective its more like'''Cyborg''' have a heart of the human and body of machine, which gives felling and creates a boundary between [[wikipedia:Robot|Robot]]robot and [[wikipedia:Cyborg|Cyborg]].
 +
 +
===PostHuman===
 +
 +
 +
[[File:Posthumans.jpg|150px|thumb|left|leonardo da vinci glider ]]
 +
 +
 +
'''Post-human''' or [[wikipedia:Posthuman |Posthuman ]], are those who reached beyond the humans, now it could be in the sense of knowledge or entity or in different ways. i feel somewhere [[wikipedia:Leonardo da vinci |Leonardo da vinci]] knowledge is way more advance from the humans in that era, which according to me make him Posthuman
 +
 +
 +
===Future Watch===
 +
 +
10 years from now, who should a watch look like? '''Skip''' is a watch of future. Its works basically on the Split-Screen technology, which given 3 different screens of the watch, through which a person can do multiple things like health Statics information, travelling information, security, hologramic refection, time & date, tagging of your position, GPS and a 360 degree camera.
 +
<gallery widths=200px heights=200px mode="packed-hover">
 +
File:Saurabh Split.jpg|'''Split''' ''A Watch''
 +
File:Saurabh_Watch.jpg||3D Model of the Watch
 +
</gallery>
 +
 +
 +
 +
==Observing the city==
 +
 +
 +
===Bangalore Air Pollution===
 +
 +
As we know how rapidly Bangalore developing, people who0 were staying nearby cities start moving toward Bangalore and because of that population of Bangalore increased drastically. Everyone wants to develop, according to a report more than +60lakh of vehicles registered on the road of Bangalore and thus increasing the Temperature and Air Pollution of the city. A report confirms that more than 280 ppm pollution reading in air is drastic for human health[http://www.thehindu.com/news/cities/bangalore/bangalore-wakes-up-to-polluted-air/article6541860.ece]. But we still don’t care, here[http://aqicn.org/city/bangalore/] is a live map which record and tell how much air pollution is in Bangalore right now.
 +
 +
 +
===Mapping===
 +
 +
A group of people keep eyes on the major part of the city and record the Air pollution and the particles in the air, so that everyone can aware what they inhaling in those areas and what precaution they can take it[http://aqicn.org/city/bangalore/] [http://www.newindianexpress.com/cities/bengaluru/2016/apr/15/At-40%C2%B0C-Hebbal-Stretch-Hottest-in-the-Bengaluru-924444.html].
 +
[[File:Saurabh_Air Pollution.png|300px|thumb|centre|'''Bangalore Air Pollution Map''' ]]
 +
 +
The rapid increasing of air pollution, start changing the climate of the city. The report shows that every year +5 degree Celsius increasing.
 +
 +
[[File:Saurabh_Bangalore Temperature .png|300px|thumb|centre|'''Bangalore Air Pollution Map''' ]]
 +
 +
==Data Visualisation==
 +
 +
Mapping a given data in visual representation is enhancing its appeal to its audience, but mapping a live streaming data is kind of tough but very helpful. If you ever seen a heartbeat monitoring system its map a live data coming from the patient. I also tried to represent a data through visuals by the help of Arduino and Processing. I wrote a code for potentiometer and send to Arduino and through the help of processing I record the data representation by changing the voltage going inside the potentiometer.
 +
 +
<gallery widths=200px heights=200px perrow=2 mode="packed-hover">
 +
File:Saurabh_potentiometer.png|'''Code for Potentiometer'''
 +
File:Saurabh_Data_Visual_Processing.png|'''Data Visualization on Processing'''
 +
File:Saurabh_Data_Visual_Processing1.png|'''Data Visualization on Processing'''
 +
File:Saurabh_Data_Visual_Processing2.png|'''Data Visualization on Processing'''
 +
File:Saurabh_Data_Visual_Processing3.png|'''Data Visualization on Processing'''
 +
</gallery>
 +
 +
 +
 +
==LOGGING LIVE DATA==
 +
 +
===ARDUINO DATA===
 +
 +
 +
Often, we lose the data which coming from the Arduino and cant able to use in future. To solve this problem I used a third party app, which saves the data coming from the serial monitor in Excel Sheet directly. Now, I have the data which I can use in future.
 +
 +
<gallery widths=200px heights=200px perrow=1 mode="packed-hover">
 +
File:Saurabh_CoolTerm.png|'''Data saving on CoolTerm'''
 +
</gallery>
 +
 +
====VISUAL REPRESENTATION====
 +
 +
Represent the Data which I collected in the form of visual representation through the help of D3.
 +
 +
<gallery widths=200px heights=200px perrow=1 mode="packed-hover">
 +
File:Saurabh_DataSheet.png|'''Data saving as .tsv file on NotePad'''
 +
File:Saurabh_D3Code.png|'''D3 Line Representation Coding'''
 +
File:Saurabh_DataVisiual.png|'''Line Graph Of The Data'''
 +
</gallery>
 +
 +
 +
==SHIELD==
 +
 +
[[File:IMG 3877.JPG|150px|thumb|left|Shield]]
 +
 +
 +
 +
 +
 +
'''Shields''' [https://www.arduino.cc/en/Main/arduinoShields] are boards that can be plugged on top of the Arduino PCB extending its capabilities. The different shields follow the same philosophy as the original toolkit: they are easy to mount, and cheap to produce.
 +
 +
 +
 +
 +
 +
 +
===SHIELD WITH ARDUINO===
 +
 +
[[File:Saurabh_Tiny-stripboard-shield.jpg|150px|thumb|right|Shield]]
 +
 +
 +
 +
As we working with '''Arduino'''[https://www.arduino.cc/] sometimes we have to extend its limit for using more sensor or its capabilities. Shield helps to give that Arduino that boost up; it’s placed upon the Arduino and fits there. I never used Shield before so this is the first time for me to learn how to make a Shield from PCB and place upon the Arduino and add sensors to it.
 +
 +
 +
====GAS SENSOR WITH SHIELD====
 +
 +
 +
'''Gas Sensor'''[https://www.engineersgarage.com/insight/how-gas-sensor-works] are very important sensor in present time.  Small like a nose, gas sensors spontaneously react to the gas present, thus keeping the system updated about any alterations that occur in the concentration of molecules at gaseous state. I tried to place Three Gas sensor on the top of the shield and collect  the live data coming through these sensor.
 +
<gallery widths=200px heights=200px perrow=2 mode="packed-hover">
 +
File:Airquality_sensor.JPG|'''Airquality_sensor'''
 +
File:Sdcardmodule.JPG|'''SD SLOT TO RECORD THE LIVE DATA'''
 +
File:Entirecircuit.JPG|'''SD MODULE WITH GAS SENSOR'''
 +
File:Akshay serialSD.png|'''GAS SENSOR READING'''
 +
</gallery>
 +
 +
====3D MODEL OF ARDUINO WITH GAS SENSOR====
 +
 +
This ''3D Model'' is the casing for the '''Arduino''' with '''Gas Sensor'''. I placed it in the surrounding, for the better understanding, how it going to look in real situation. This model made in Fusion 360[http://www.autodesk.com/products/fusion-360/overview].
 +
[[File:Saurabh_Arduino_casing.57.jpg|350px|thumb|centre|3D Casing Of Arduino with Gas Sensor]]
 +
 +
 +
 +
==AQUAPONIC==
 +
 +
 +
'''Aquaponic'''[] 'Aqua' 'Ponic', it’s a merge of two systems, aquaculture (raising fish) and hydroponics (the soil-less growing of plants) that grows fish and plants together in one integrated system. The fish waste provides an organic food source for the growing plants and the plants provide a natural filter for the water the fish live in. The third participants are the microbes (nitrifying bacteria) and composting red worms that thrive in the growing media. They do the job of converting the ammonia from the fish waste first into nitrites, then into nitrates and the solids into vermicompost that that are food for the plants. [[File:NEW.AQS-Cycle.jpg|200px|thumb|centre|Aquaponic system]]
 +
 +
 +
 +
===WHY AQUAPONIC===
 +
 +
I come up with this concept of ''smart garden'', but later when I discuss my idea about smart garden to my classmates and teacher, they asked me one thing why people need this smart garden, what benefits or in which way they can use it for. These questions kinda stuck in my mind and I start questioning to myself why I need this smart garden and why people take it. As I’m free to use sensor and Arduino, I started searching the sensors related to gardening and what ways I can make a smart garden. There is not much sensor present in market when it comes to Gardening or farming. Humidity sensor, moisture sensor, temperature and few more sensors but hardly any sensor to measure the nitrogen and other gases present in soil and if there are any sensor related to that, they are expensive or hard to build at home. So, I decided to take my idea one step further and build a system which doesn’t need so many sensors and works by itself, while searching related to these kind of system. I come up with '''hydroponic''' which ''mimics'' the ''nature'' and totally rely on itself.
 +
 +
=== IDEATION===
 +
 +
 +
I was planning a system which doesn’t need water supply from outside and if it needs it going to take by itself. The Arduino and the IR sensor come to play a role at this place. Now I tried to ideate the whole system in which I can place the sensors and a aquaponics. So it not takes much space and fit easy on table.
 +
 +
 +
=== 3D VISUALIZATION===
 +
 +
The 3D visualization is just for to see how the product going to look in real life. Its helps to understand the dimension and  a better visualization where should it be kept. [[File:Aquaponic_3D_Model.jpg|400px|thumb|centre|Aquaponic system]]
 +
 +
 +
=== PROCESS TOWARD MAKING AQUAPONIC ===
 +
 +
==== MATERIALS====
 +
 +
Acrylic sheets
 +
 +
Wood
 +
 +
Pipe
 +
 +
Plastic jar
 +
 +
Water pump
 +
 +
Arduino
 +
 +
IR sensor
 +
 +
Led
 +
 +
Wire
 +
 +
====HANDWORK====
 +
 +
<gallery widths=300px heights=300px perrow=1 mode="packed-hover">
 +
File:GLASS_WORK.jpg|'''Acrylic box'''
 +
File:IMG_20170408_074331_014.jpg|'''Fixing The Aquarium'''
 +
</gallery>
 +
 +
====CODE FOR ARDUINO====
 +
 +
int ledpin1 = 13;
 +
 +
int ledpin2 = 12;
 +
 +
int sensorPin = A0;
 +
 +
int sensorValue = 0;
  
int sensorPin = A0; // select the input pin for ldr
 
int sensorValue = 0; // variable to store the value coming from the sensor
 
 
void setup() {
 
void setup() {
Serial.begin(9600); //sets serial port for communication
+
 
 +
// put your setup code here, to run once:
 +
 
 +
pinMode (13,OUTPUT);
 +
 
 +
pinMode (12,OUTPUT);
 +
 
 +
Serial.begin(9600);
 +
 
 +
 
 
}
 
}
 +
 
void loop() {
 
void loop() {
sensorValue = analogRead(sensorPin); // read the value from the sensor
+
 
Serial.println(sensorValue); //prints the values coming from the sensor on the screen
+
sensorValue = analogRead(sensorPin);
delay(100);
+
 +
Serial.println(sensorValue);
 +
 
 +
if (sensorValue > 30 && sensorValue < 200){
 +
 
 +
digitalWrite (13,HIGH);
 +
 
 
}
 
}
 +
 
 +
else
 +
 
 +
{
 +
 
 +
digitalWrite(13,LOW);
 +
 
 +
}
 +
   
 +
if (sensorValue > 20 && sensorValue <30)
 +
 
 +
{
 +
   
 +
digitalWrite (12,HIGH);
 +
 
 +
}
 +
 +
   
 +
else
 +
   
 +
{
 +
   
 +
digitalWrite (12,LOW);
 +
   
 +
}
 +
 
 +
}
 +
  
 +
===REAL SCALE PRODUCT===
  
  
====Reading:====
+
<gallery widths=200px heights=200px perrow=3 mode="packed-hover">
 +
File:AQUAPONIC1.jpg|'''AQUAPONIC'''
 +
File:IMG_20170408_155058_075.jpg|'''CONTAINER TO KEEP EXTRA WATER'''
 +
File:IMG_20170408_154721_701.jpg|'''IR SENSOR CASING'''
 +
File:IMG_20170408_154844_308.jpg|'''TOP VIEW OF THE AQUAPONIC'''
 +
File:IMG_20170408_154920_471.jpg|'''WATER MOTOR PUMP THE DIRTY WATER IN CONTAINER'''
 +
</gallery>

Latest revision as of 00:09, 10 April 2017

Introduction

Humans always try to extend their limit of sensing the surrounding or a system, through different means of tools. Sensors are one of those tools which humans use to extend their limits of sensing. Now those sensor can use in the probes or in detectors to gather information or work on a certain activity. Science always fascinates me; the experiments, achievements, laws and possibilities assures me that there will be a future, full of amazing concepts. I enjoy the process of experiment and it allows me to learn. I try to develop tools which are operated hand operated as it supports the villagers who can't afford electricity costs. Few of my projects are hydraulic crane, color changing fountain, oil trapping filter, and creating fog in a bottle. Recently I discovered Arduino and sensors like LDR, Air pollution sensor,[1]. I have been spending my time to understand it and come up with new products.


Detector

A device for detecting the presence of electromagnetic waves or of radioactivity


Sensors

Basic

A Sensor is an electronic component, module, or subsystem whose purpose is to detect events or changes in its environment and send the information to other electronics, frequently a computer processor. A sensor is always used with other electronics, whether as simple as a light or as complex as a computer.


Simulation through Sensor

UltraSonic Sensor with Unity
Simulating a situation through the help of a sensor is not kind of difficult, but when you have little information about Arduino and sensors then might yes, it’s kind of difficult because it’s my first time combining Unity with Arduino. As I wanted that my audience can able to play a video game without touching the keyboard. As I know how to make simple games on Unity, I decided to make my own game and then take a sensor and combine its input as a character controller. Ping Pong is one of those classic games which used to play a lot in 90s and we still love to play it. By using Unity, I make a replica of that game with some twist and as an input data I used Ultrasonic sensor. Ultrasonic sensor act like a Bat in the game, by bring the hand closer and further you can change the position of the bat for hitting the ball.




ECG Sensor

The AD8232,[2] is a neat little chip used to measure the
(ECG) Electrocardiography Sensor
electrical activity of the heart. This electrical activity can be charted as an ECG or Electrocardiogram. Electrocardiography is used to help diagnose various heart conditions.


Arduino Based ECG (Electrocardiography) sensor

Understanding the ECG

In general terms, lets look at what an ECG is representing and how we’re able to sense it. The ECG is separated into two basic Intervals, the PR Interval and the QT Interval,


PR Interval

The PR interval is the initial wave generated by an electrical impulse traveling from the right atrium to the left. The right atrium is the first chamber to see an electrical impulse.


QT Interval

The QRS is a complex process that generates the signature “beep” in cardiac monitors. During QRS both ventricles begin to pump.

Connecting the Hardware

Hardware :

1)Arduino Uno/Mega/Nano 2)ECG Module (AD8232) 3)ECG Electrodes - 3 pieces 4)ECG Electrode Connector -3.5 mm 5)Power supply 6)Connecting Wires


Software Requirement :

Arduino IDE Pin Connections Arduino 3.3V--------Sensor 3.3V pin


Arduino pin 10-------L0+


Arduino pin 11-------L0-


Arduino (A1)--------Output


Arduino Gnd --------Gnd


Connecting Headers to the Board

Follow the diagram below, to make necessary connections.




Uploading the Sketch

Upload sketch to Arduino UNO

The example sketch can be found here [3].


Turbidity Meter

Turbidity is the cloudiness or haziness of a fluid caused by large numbers of individual particles that are generally invisible to the naked eye, similar to smoke in air. The measurement of turbidity is a key test of water quality.


Concept


The turbidity of water creates a blockage for the light which passing through it. This deflection of light which passing through the sample water determines how much the water is clear.


Hardware Requirements:

LDR Sensor

Light Source (Laser Beam)

Resistor

Arduino

Connecting Wire

Cup

Bread Board


Software Requirement:

Arduino IDE


Construction Of Turbidity Meter

Arduino Program:

int sensorPin = A0; // select the input pin for ldr

int sensorValue = 0; // variable to store the value coming from the sensor

void setup() {

Serial.begin(9600); //sets serial port for communication

}

void loop() {

sensorValue = analogRead(sensorPin); // read the value from the sensor

Serial.println(sensorValue); //prints the values coming from the sensor on the screen

delay(100);

}


Quantify the Reading

Line Graph

Through the help of third party app (D3) and using HTML (Brackets) I try to generate a Line Map of the Data coming through the Sensor.

Cyborg & Posthuman

Cyborg

Cyborg


cy·borg, Cyborg is basically half human and half machine. In my perspective its more likeCyborg have a heart of the human and body of machine, which gives felling and creates a boundary between Robotrobot and Cyborg.

PostHuman

leonardo da vinci glider


Post-human or Posthuman , are those who reached beyond the humans, now it could be in the sense of knowledge or entity or in different ways. i feel somewhere Leonardo da vinci knowledge is way more advance from the humans in that era, which according to me make him Posthuman


Future Watch

10 years from now, who should a watch look like? Skip is a watch of future. Its works basically on the Split-Screen technology, which given 3 different screens of the watch, through which a person can do multiple things like health Statics information, travelling information, security, hologramic refection, time & date, tagging of your position, GPS and a 360 degree camera.


Observing the city

Bangalore Air Pollution

As we know how rapidly Bangalore developing, people who0 were staying nearby cities start moving toward Bangalore and because of that population of Bangalore increased drastically. Everyone wants to develop, according to a report more than +60lakh of vehicles registered on the road of Bangalore and thus increasing the Temperature and Air Pollution of the city. A report confirms that more than 280 ppm pollution reading in air is drastic for human health[4]. But we still don’t care, here[5] is a live map which record and tell how much air pollution is in Bangalore right now.


Mapping

A group of people keep eyes on the major part of the city and record the Air pollution and the particles in the air, so that everyone can aware what they inhaling in those areas and what precaution they can take it[6] [7].

Bangalore Air Pollution Map

The rapid increasing of air pollution, start changing the climate of the city. The report shows that every year +5 degree Celsius increasing.

Bangalore Air Pollution Map

Data Visualisation

Mapping a given data in visual representation is enhancing its appeal to its audience, but mapping a live streaming data is kind of tough but very helpful. If you ever seen a heartbeat monitoring system its map a live data coming from the patient. I also tried to represent a data through visuals by the help of Arduino and Processing. I wrote a code for potentiometer and send to Arduino and through the help of processing I record the data representation by changing the voltage going inside the potentiometer.


LOGGING LIVE DATA

ARDUINO DATA

Often, we lose the data which coming from the Arduino and cant able to use in future. To solve this problem I used a third party app, which saves the data coming from the serial monitor in Excel Sheet directly. Now, I have the data which I can use in future.

VISUAL REPRESENTATION

Represent the Data which I collected in the form of visual representation through the help of D3.


SHIELD

Shield



Shields [8] are boards that can be plugged on top of the Arduino PCB extending its capabilities. The different shields follow the same philosophy as the original toolkit: they are easy to mount, and cheap to produce.




SHIELD WITH ARDUINO

Shield


As we working with Arduino[9] sometimes we have to extend its limit for using more sensor or its capabilities. Shield helps to give that Arduino that boost up; it’s placed upon the Arduino and fits there. I never used Shield before so this is the first time for me to learn how to make a Shield from PCB and place upon the Arduino and add sensors to it.


GAS SENSOR WITH SHIELD

Gas Sensor[10] are very important sensor in present time. Small like a nose, gas sensors spontaneously react to the gas present, thus keeping the system updated about any alterations that occur in the concentration of molecules at gaseous state. I tried to place Three Gas sensor on the top of the shield and collect the live data coming through these sensor.

3D MODEL OF ARDUINO WITH GAS SENSOR

This 3D Model is the casing for the Arduino with Gas Sensor. I placed it in the surrounding, for the better understanding, how it going to look in real situation. This model made in Fusion 360[11].

3D Casing Of Arduino with Gas Sensor


AQUAPONIC

Aquaponic[] 'Aqua' 'Ponic', it’s a merge of two systems, aquaculture (raising fish) and hydroponics (the soil-less growing of plants) that grows fish and plants together in one integrated system. The fish waste provides an organic food source for the growing plants and the plants provide a natural filter for the water the fish live in. The third participants are the microbes (nitrifying bacteria) and composting red worms that thrive in the growing media. They do the job of converting the ammonia from the fish waste first into nitrites, then into nitrates and the solids into vermicompost that that are food for the plants.
Aquaponic system


WHY AQUAPONIC

I come up with this concept of smart garden, but later when I discuss my idea about smart garden to my classmates and teacher, they asked me one thing why people need this smart garden, what benefits or in which way they can use it for. These questions kinda stuck in my mind and I start questioning to myself why I need this smart garden and why people take it. As I’m free to use sensor and Arduino, I started searching the sensors related to gardening and what ways I can make a smart garden. There is not much sensor present in market when it comes to Gardening or farming. Humidity sensor, moisture sensor, temperature and few more sensors but hardly any sensor to measure the nitrogen and other gases present in soil and if there are any sensor related to that, they are expensive or hard to build at home. So, I decided to take my idea one step further and build a system which doesn’t need so many sensors and works by itself, while searching related to these kind of system. I come up with hydroponic which mimics the nature and totally rely on itself.

IDEATION

I was planning a system which doesn’t need water supply from outside and if it needs it going to take by itself. The Arduino and the IR sensor come to play a role at this place. Now I tried to ideate the whole system in which I can place the sensors and a aquaponics. So it not takes much space and fit easy on table.


3D VISUALIZATION

The 3D visualization is just for to see how the product going to look in real life. Its helps to understand the dimension and a better visualization where should it be kept.
Aquaponic system


PROCESS TOWARD MAKING AQUAPONIC

MATERIALS

Acrylic sheets

Wood

Pipe

Plastic jar

Water pump

Arduino

IR sensor

Led

Wire

HANDWORK

CODE FOR ARDUINO

int ledpin1 = 13;

int ledpin2 = 12;

int sensorPin = A0;

int sensorValue = 0;

void setup() {

// put your setup code here, to run once:

pinMode (13,OUTPUT);

pinMode (12,OUTPUT);

Serial.begin(9600);


}

void loop() {

sensorValue = analogRead(sensorPin);

Serial.println(sensorValue);

if (sensorValue > 30 && sensorValue < 200){

digitalWrite (13,HIGH);

}

else

{

digitalWrite(13,LOW);

}

if (sensorValue > 20 && sensorValue <30)

{

digitalWrite (12,HIGH);

}


else

{

digitalWrite (12,LOW);

}

}


REAL SCALE PRODUCT