विभाग : FABLAB : Temperature and humidity sensor project for hydroponic

As requirement of Sanjay who is the DBRT (agriculture) student. I have made a small simple project of temperature and humidity sensor for hydroponic. I did proper connections of arduino, temperature humidity sensor and relay driver.

[Target: If the temperature less than 250C then bulb will automatic start]

Material:

Sr. No.
Material Name
Qty.
1
Arduino board
1
2
Temperature and humidity sensor
1
3
Relay driver
1
4
Socket (plug)
1
5
2 pin
1
6
Wires

7
MDF Sheet



  • Testing connections and Code :



  • Programming code :
#include "DHT.h"

DHT dht;

void setup()
{
  Serial.begin(9600);
  Serial.println();
  Serial.println("Status\tHumidity (%)\tTemperature (C)\t(F)");
  pinMode(9,OUTPUT);

  dht.setup(2); // data pin 2
}

void loop()
{
  delay(dht.getMinimumSamplingPeriod());
 
  float humidity = dht.getHumidity();
  float temperature = dht.getTemperature();

  Serial.print(dht.getStatusString());
  Serial.print("\t");
  Serial.print(humidity, 1);
  Serial.print("\t\t");
  Serial.print(temperature, 1);
  Serial.print("\t\t");
  Serial.println(dht.toFahrenheit(temperature), 1);
  
 if(temperature<25)
 {
  digitalWrite(9,LOW);
 }
  else
  {
  digitalWrite(9,HIGH);

}
}

  • Implemented and installed successfully 





 




विभाग : वर्कशॉप : टाकाऊ प्लास्टिक बाटल्यांपासून साईज (150x40x40) बेंच तयार करणे

आम्ही वर्कशॉपच्या मुलानी टाकाऊ प्लास्टिक बाटल्यांपासून साईज (150x40x40) आश्रमातील social point या ठिकाणी बसणेसाठी बेंच बनवला. सुरवातीला सर्व बाटल्यांमध्ये नको असलेली वाळू, माती व खडी भरून घेतली. योग्य जागा निवडून त्या जागेमध्ये योग्य माफे टाकून आखणी केली. नियोजित काम व डिजाईननुसार 1:6 या प्रमाणे सिमेंट आणि वाळू यांचा माल तयार केला. एकूण सहा थर केले. त्यातील पहिला थर पाया होता. यावरून असे समजले की टाकाऊ प्लास्टिकच्या बाटल्यांचा पुरेपूर वापर करता येतो.

  • वाळू :                         २६ पाट्या
  • सिमेंट :           ०५ पाट्या
  • प्लास्टिक बॉटल्स :  ११४ (एका थरामध्ये प्रत्येकी १९)
  • मुरूम :            गरजेनुसार
  • वेस्टेज वाळू, खडी व माती : बॉटल्स मध्ये भरणेसाठी.



  • डिजाईन : 



  • वाळू, खडी व मातीने भरलेल्या बॉटल्स 

  • आखणी




  •      1:6  प्रमाणात सिमेंट व वाळू यांचे मिश्रण (माल)

  •      पाया व बॉटल मांडणी


  •     मुरुमचा वापर 

  •     रचनेनुसार थर रचत जाणे.



  • गरजेनुसार ओळंबा लेवल ट्यूबचा वापर करणे



  •     बेंच तयार 












विभाग : FABLAB -Practice Work : Moisture sensor

I have practiced and learnt connectivity of moisture sensor with using LCD display.  After the connection, I tested the sensor in water and mud and took readings on serial monitor in arduino software.  I have realized connectivity of sensor and LCD and I have realized this sensor is very useful.

  • Connections :

  • Readings :



  • Programming Code

#include <LiquidCrystal.h>

int SensorPin = A0;
int SensorValue = 0 ;
int soil;

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() {
  pinMode(SensorPin, INPUT);
  
  lcd.begin(16, 2);

  lcd.clear();
  
  Serial.begin(9600);
  Serial.print("soil moisture sensor");
  }

void loop() {
  
   SensorValue = analogRead(SensorPin); 
   SensorValue = constrain(SensorValue, 485, 1023);//compare Max and Min Value
   soil=map(SensorValue, 485, 1023, 0,100);// Convert Analog Value into Percentage Form
   
   Serial.print(100-soil);
   Serial.println("%");
   lcd.setCursor(0,0);
   
   lcd.print("Moisture Sensor Value:");
   lcd.setCursor(0,1);
 
   lcd.print(100-soil);
   lcd.print("%");  
  
    
 
}






विभाग : वर्कशॉप : Practice work – Cupboard (Mandani)

I have made a small cupboard, size of 15 x 9 x 18” L x B x H (Mandani) in workshop for learning fabrication work. While doing this work I have learnt and used welding, cutter, and grinding machines etc. I have used scrap material making this cupboard.

Material: L- angle (25 x 25 x 2mm cross section aria)

Also we have learnt how to measure weight of material with proper formulas.
Formula: for L angle

Cross section aria 
----------------------
             127
In that formula, we get material weight in KG. for a meter. 

  • Used Cutter Machine



  • Used Welding Machine 

  • Cupboard 








     

विभाग : FABLAB -Laser cutter task- Drillbit stand

I have made a drill bit stand with workshop students. We have drawn the design in RD works (laser cutter software) with proper measurements as drill bit size. And then cut it on laser cutter.

Used material: acrylic sheet (3mm)