Difference between revisions of "Team:UGent Belgium/Hardware"

(Prototype team page)
 
m
 
(36 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
{{Team:UGent_Belgium/header}}
 +
{{Team:UGent_Belgium/CSS}}
 +
{{Team:UGent_Belgium/customCSS}}
 +
{{Team:UGent_Belgium/menu}}
 +
<html >
 +
<br><br>
 +
</html>
 
{{UGent_Belgium}}
 
{{UGent_Belgium}}
 
<html>
 
<html>
  
 +
<div class="container">
 +
  <section class="header container">
 +
    <nav class="col-xs-5">
 +
      <div class="sketch-container">
 +
      <img src="https://static.igem.org/mediawiki/2016/e/ee/T--UGent_Belgium--hardwareOverview.PNG" class="img-responsive" />
 +
        <img src="http://www.nanoteam888.com/borrowta/images/magnifier.png" class="img-responsive" id="magnifier"/>
 +
   
 +
      </div>
 +
      <img src="https://static.igem.org/mediawiki/2016/6/65/T--UGent_Belgium--white.png" class="img-responsive" id="detail-image"/>
 +
      </nav>
 +
  </section>
 +
  <section class="content col-xs-offset-5 col-xs-7">
 +
    <h1> Hardware </h1> <br>
 +
    <section id="no-highlight">
 +
    <h2>Overview </h2>
 +
    <p> An experimental setup to monitor and control the humidity and temperature of a container is developed. The different hardware components will be elaborately discussed in what follows.</p>
 +
    </section>
 +
    <section id="sensor-highlight">
 +
    <h2>Sensor </h2>
 +
    <p> In order to quantify the environmental conditions as well as possible, a combined humidity/temperature sensor is used to gather this information. Two different sensors are tested for this project, the DHT11 and DHT22 sensor. Both sensors are similar but the DHT22 provides a better accuracy and a larger measuring range. The humidity is sensed with a polymer that changes conductivity with the humidity and the temperature is obtained via a basic thermistor. This basic design makes these sensors both accurate and low cost. The measurements are transmitted to a Raspberry Pi microprocessor via an one-wire communication protocol.
 +
    </p>
 +
    </section>
  
<div class="column full_size judges-will-not-evaluate">
+
    <section id="humidifier-highlight">
<h3>★  ALERT! </h3>
+
    <h2>Humidifier </h2>
<p>This page is used by the judges to evaluate your team for the<a href="https://2016.igem.org/Judging/Awards"> Best Hardware award</a>. </p>
+
    <p> The humidity is controlled with an ultrasound air humidifier which disperses an ultra-fine mist of water droplets in the air to increase the humidity. This mist is directed via PVC piping to the actual container that holds the dewpal collectors. This piping gives time for the droplets to evaporate and adds to the humidity in the chamber.</p>
 +
    </section>
 +
    <section id="relay-highlight">
 +
    <h2>Relay module </h2>
 +
    <p> The humidifier is constructed for manual control and in order for the controller to actuate this humidifier, a relay module is used to disconnect the humidifier from the power supply when the desired humidity is reached. This electrically operated switch receives a low voltage signal from a Raspberry Pi microprocessor and closes the higher voltage circuit powering the humidifier.</p>
 +
    </section>
 +
    <section id="microprocessor-highlight">
 +
    <h2>Microprocessor</h2>
 +
    <p>At the heart of our do-it-yourself humidistat lies the Raspberry Pi microprocessor. This microprocessor performs a handful of tasks. On the software side it executes a closed-loop control algorithm to control the humidity of the humidistat and writes the temperature, humidity and humidifier actions to CSV files for further analysis. On the hardware side, it communicates with the sensor and actuates the relay module.</p>
 +
    </section>
 +
    <section id="housing-highlight">
 +
    <!-- <p> Housing </p> -->
 +
    </section>
 +
  </section>
  
 
+
  </section>
<p> Delete this box in order to be evaluated for this medal. See more information at <a href="https://2016.igem.org/Judging/Pages_for_Awards/Instructions"> Instructions for Pages for awards</a>.</p>
+
 
</div>
 
</div>
 +
</html>
 +
{{Team:UGent_Belgium/footer}}
 +
<html>
 +
<script>
 +
var highlight_sections;
 +
var magnifier;
 +
var detail_image;
 +
var highlight_position_table = {
 +
 
 +
  "no-highlight" : [{
 +
    "display" : "block",
 +
    "left" : "0%",
 +
    "top"  : "100%"
 +
  }, "https://static.igem.org/mediawiki/2016/6/65/T--UGent_Belgium--white.png"],
 +
  "sensor-highlight" : [{
 +
    "display" : "block",
 +
    "left" : "30%",
 +
    "top" : "0%"
 +
  }, "https://static.igem.org/mediawiki/2016/b/b1/%27T--UGent_Belgium--sensor.PNG"],
  
 +
  "humidifier-highlight" : [{
 +
    "display" : "block",
 +
    "left" : "40%",
 +
    "top" : "45%"
 +
  }, "https://static.igem.org/mediawiki/2016/c/c9/%27T--UGent_Belgium--humid.PNG"],
 +
  "relay-highlight" : [{
 +
    "display" : "block",
 +
    "left" : "10%",
 +
    "top" : "30%"
 +
  }, "https://static.igem.org/mediawiki/2016/a/a4/%27T--UGent_Belgium--relay.PNG"],
 +
"microprocessor-highlight" : [{
 +
    "display" : "block",
 +
    "left" : "7%",
 +
    "top" : "7%"
 +
  }, "https://static.igem.org/mediawiki/2016/9/9d/%27T--UGent_Belgium--MCU.PNG"]
 +
}
 +
$(document).ready(function() {
 +
    highlight_sections = $("section.content>section");
 +
    magnifier = $(".header #magnifier");
 +
    detail_image = $(".header #detail-image");
 +
    highlight_sections.hover(
 +
      function( element ) {
 +
        moveHighlightTo( $(this).attr("id") );
 +
      },
 +
      function( element ) {
 +
        $(this).css("background-color", "transparent");
 +
      });
 +
});
  
 
+
function moveHighlightTo(name) {
<div class="column full_size">
+
  var entry = highlight_position_table[name][0]
 
+
  if( entry ) {
 
+
    for( var prop in entry ) {
 
+
      magnifier.css(prop, entry[prop]);
<p>iGEM is about making teams of students making synthetic biology projects. We encourage teams to work with parts and build biological devices in the lab. But we are inclusive and want all teams to work on many other types of problems in synbio. Robotic assembly, microfluidics, low cost equipment and measurement hardware are all areas ripe for innovation in synbio. </p>
+
    }
 
+
  }
<p>
+
  var detail_image_src = highlight_position_table[name][1];
Teams who are interested in working with hardware as a side project are encouraged to apply for the hardware award.  
+
  detail_image.attr("src", detail_image_src);
</p>
+
}
 
+
</script>
<h5>Inspiration</h5>
+
<script type="text/javascript" src="https://2016.igem.org/Template:Team:UGent_Belgium/JS?
<p>You can look at what other teams did to get some inspiration! <br />
+
action=raw&ctype=text/javascript"></script>
Here are a few examples:</p>
+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<ul>
+
<li><a href="https://2015.igem.org/Team:TU_Delft">2015 TU Delft  </a></li>
+
<li><a href="https://2015.igem.org/Team:TU_Darmstadt">2015 TU Darmstadt</a></li>
+
<li><a href="https://2015.igem.org/Team:Cambridge-JIC">2015 Cambridge JIC</a></li>
+
</ul>
+
 
+
</div>
+
 
+
 
+
 
+
 
</html>
 
</html>

Latest revision as of 22:08, 19 October 2016

Bootstrap 101 Template



Hardware


Overview

An experimental setup to monitor and control the humidity and temperature of a container is developed. The different hardware components will be elaborately discussed in what follows.

Sensor

In order to quantify the environmental conditions as well as possible, a combined humidity/temperature sensor is used to gather this information. Two different sensors are tested for this project, the DHT11 and DHT22 sensor. Both sensors are similar but the DHT22 provides a better accuracy and a larger measuring range. The humidity is sensed with a polymer that changes conductivity with the humidity and the temperature is obtained via a basic thermistor. This basic design makes these sensors both accurate and low cost. The measurements are transmitted to a Raspberry Pi microprocessor via an one-wire communication protocol.

Humidifier

The humidity is controlled with an ultrasound air humidifier which disperses an ultra-fine mist of water droplets in the air to increase the humidity. This mist is directed via PVC piping to the actual container that holds the dewpal collectors. This piping gives time for the droplets to evaporate and adds to the humidity in the chamber.

Relay module

The humidifier is constructed for manual control and in order for the controller to actuate this humidifier, a relay module is used to disconnect the humidifier from the power supply when the desired humidity is reached. This electrically operated switch receives a low voltage signal from a Raspberry Pi microprocessor and closes the higher voltage circuit powering the humidifier.

Microprocessor

At the heart of our do-it-yourself humidistat lies the Raspberry Pi microprocessor. This microprocessor performs a handful of tasks. On the software side it executes a closed-loop control algorithm to control the humidity of the humidistat and writes the temperature, humidity and humidifier actions to CSV files for further analysis. On the hardware side, it communicates with the sensor and actuates the relay module.