SlideShare a Scribd company logo
1 of 7
Download to read offline
#include <OneWire.h> 
#include <DallasTemperature.h> 
// Arduino code to run a pcr machine with a heating element, a cooling element and a ​DS18B20 
t​emperature probe. Based upon designs from ​Brian Blais 
(​http://citizensciencequarterly.com/2011/04/the­light­bulb­pcr­machine/​) and Russell Durrett 
(http://russelldurrett.com/lightbulbpcr.html)  
//code requires libraries http://www.pjrc.com/teensy/td_libs_OneWire.html 
http://milesburton.com/Dallas_Temperature_Control_Library 
//Last edited 2015 Sept 20.  
//Based on code written by Russell Durrett, red272@nyu.edu 
 
// Data wire is plugged into port 2 on the Arduino 
#define ONE_WIRE_BUS 10 //Use this for Temperature probe 
//const int thermpin = A0;//Use this for the thermistor 
const int heatpin = 3; 
const int coolpin = 9; 
 
// Setup a oneWire instance to communicate with any OneWire devices (not just Maxim/Dallas 
temperature ICs) 
OneWire oneWire(ONE_WIRE_BUS); 
 
// Pass our oneWire reference to Dallas Temperature.  
DallasTemperature sensors(&oneWire); 
 
const int hot = 95; // 95C  
const int tm = 55; // 55C 
const int elongtemp = 72; //72 
 
const int initialdenaturetime = 15; //value in sec 
const int denaturetime = 15; //value in sec 
const int annealtime = 60; //value in sec 
const int elongtime = 60; //value in sec 
const int finalelongtime = 600; //value in sec 
const int cycles = 20; //number of cycles 
 
int cyclecount = 1; 
 
void setup(){ 
  //pinMode(thermpin, INPUT); //use this for thermistor 
  pinMode(heatpin, OUTPUT); 
  pinMode(coolpin, OUTPUT); 
  analogReference(EXTERNAL); 
  Serial.begin(9600); 
  // Start up the library 
  sensors.begin(); 
} 
 
 
void loop(){ 
 
  sensors.requestTemperatures(); // Send the command to get temperatures   
  int temp = (sensors.getTempCByIndex(0)); 
 
 
//initial denaturing step 
    do { 
      //Begin PCR Reaction by heating to 95 degrees; 
      digitalWrite(heatpin, HIGH); 
      sensors.requestTemperatures(); // Send the command to get temperatures   
      temp = (sensors.getTempCByIndex(0)); 
      Serial.print("Cycle #"); 
      Serial.print(cyclecount); 
      Serial.print(" Temp = "); 
      Serial.print(temp); 
      Serial.print(", Heating Lamp ON. Target temp = "); 
      Serial.println(hot); 
    }  while (temp < hot); 
 
 
    digitalWrite(heatpin, LOW); 
    digitalWrite(coolpin, LOW); 
    //strobe bulb to maintain hot 
    for (int count = 0; count < initialdenaturetime; count = count +1){ 
      delay(1000); 
      sensors.requestTemperatures(); // Send the command to get temperatures   
      temp = (sensors.getTempCByIndex(0)); 
      if (temp < hot){ 
      digitalWrite(heatpin, HIGH); 
      } 
      else {//(temp < hot) 
      digitalWrite(heatpin, LOW); 
      } 
      Serial.print("Cycle #"); 
      Serial.print(cyclecount); 
      Serial.print(" Temp = "); 
      Serial.print(temp); 
      Serial.print(", DNA Denaturing, Target temp = "); 
      Serial.println(hot); 
    } 
    digitalWrite(heatpin, LOW); 
 
//main program   
do { 
  //denaturing step 
  do { 
    //Begin PCR Reaction by heating to 95 degrees; 
    digitalWrite(heatpin, HIGH); 
    digitalWrite(coolpin, LOW); 
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    Serial.print("Cycle #"); 
    Serial.print(cyclecount); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", Heating Lamp ON. Target temp = "); 
    Serial.println(hot); 
  }while (temp < hot); 
 
  digitalWrite(heatpin, LOW); 
  digitalWrite(coolpin, LOW); 
 
  //strobe bulb to maintain hot 
 
  for (int count = 0; count < denaturetime; count = count +1){ 
    delay(1000);   
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    if (temp < hot) 
      { 
        digitalWrite(heatpin, HIGH); 
      } 
    else 
      { 
        digitalWrite(heatpin, LOW); 
      } 
    Serial.print("Cycle #"); 
    Serial.print(cyclecount); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", DNA Denaturing. Target temp = "); 
    Serial.println(hot); 
  } 
  digitalWrite(heatpin, LOW); 
  digitalWrite(coolpin, LOW); 
   
  //Anealing step 
  
  do { 
    //cooling to Tm 
    digitalWrite(heatpin, LOW); 
    digitalWrite(coolpin, HIGH); 
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    Serial.print("Cycle #"); 
    Serial.print(cyclecount); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", Cooling to Tm. Target temp = "); 
    Serial.println(tm);   
  }while (temp > tm); 
 
  digitalWrite(heatpin, LOW); 
  digitalWrite(coolpin, LOW); 
  //strobe bulb to maintain tm 
 
  for (int count = 0; count < annealtime; count = count +1){ 
    delay(1000);   
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    if (temp < tm) 
      { 
        digitalWrite(heatpin, HIGH); 
      } 
    else 
      { 
        digitalWrite(heatpin, LOW); 
      } 
    Serial.print("Cycle #"); 
    Serial.print(cyclecount); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", DNA Annealing. Target temp = "); 
    Serial.println(tm); 
    } 
  digitalWrite(heatpin, LOW); 
  digitalWrite(coolpin, LOW); 
 
 
  //elongation step   
  do { 
    //heating to extension temp 
    digitalWrite(heatpin, HIGH); 
    digitalWrite(coolpin, LOW); 
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    Serial.print("Cycle #"); 
    Serial.print(cyclecount); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", Heating to Extension. Target temp = "); 
    Serial.println(elongtemp);   
  }while (temp < elongtemp); 
 
  //pulse to maintain extension temp 
  for (int count = 0; count < elongtime; count = count +1){ 
    delay(1000);   
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    if (temp < elongtemp) 
      { 
        digitalWrite(heatpin, HIGH); 
      } 
    else 
      { 
        digitalWrite(heatpin, LOW); 
      } 
    Serial.print("Cycle #"); 
    Serial.print(cyclecount); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", DNA Extending. Target temp = "); 
    Serial.println(elongtemp); 
    } 
  digitalWrite(heatpin, LOW); 
  digitalWrite(coolpin, LOW); 
   
  cyclecount++; 
 
  //digitalWrite(cyclespin, cyclesdonecount); 
 
}while (cyclecount < cycles); 
 
//final extension step 
 
  do { 
    //heating to extension temp 
    digitalWrite(heatpin, HIGH); 
    digitalWrite(coolpin, LOW); 
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    Serial.print("FINAL Cycle"); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", Heating to Extension. Target temp = "); 
    Serial.println(elongtemp);   
  }while (temp < elongtemp); 
 
  //pulse to maintain extension temp 
  for (int count = 0; count < finalelongtime; count = count +1){ 
    delay(1000);   
    sensors.requestTemperatures(); // Send the command to get temperatures   
    temp = (sensors.getTempCByIndex(0)); 
    if (temp < elongtemp) 
      { 
        digitalWrite(heatpin, HIGH); 
      } 
    else 
      { 
        digitalWrite(heatpin, LOW); 
      } 
    Serial.print("FINAL Cycle"); 
    Serial.print(" Temp = "); 
    Serial.print(temp); 
    Serial.print(", DNA Extending. Target temp = "); 
    Serial.println(elongtemp); 
    } 
  digitalWrite(heatpin, LOW); 
  digitalWrite(coolpin, LOW); 
 
 
Serial.print("Completed "); 
Serial.print(cycles); 
Serial.print("Run completed"); 
do{ 
digitalWrite(heatpin, LOW); 
digitalWrite(coolpin, LOW); 
}while (!(cyclecount < cycles)); 
} 
 

More Related Content

Viewers also liked

multiple input control by sms using GSM technology
multiple input control by sms using GSM technologymultiple input control by sms using GSM technology
multiple input control by sms using GSM technologySachin Singh
 
Home Automation with LinkSprite IO
Home Automation with LinkSprite IOHome Automation with LinkSprite IO
Home Automation with LinkSprite IOJingfeng Liu
 
Home automation and Digital notice board using android app
Home automation and Digital notice board using android appHome automation and Digital notice board using android app
Home automation and Digital notice board using android appRishikesh .
 
Home Automation Over Internet Project (Ev Otomasyon Projesi)
Home Automation Over Internet Project (Ev Otomasyon Projesi)Home Automation Over Internet Project (Ev Otomasyon Projesi)
Home Automation Over Internet Project (Ev Otomasyon Projesi)Birol Arslan
 
Design and implementation of home automation system u...
Design and implementation of home                         automation system u...Design and implementation of home                         automation system u...
Design and implementation of home automation system u...MUHAMMAD KHURSHID AHMAD
 
Remote street light monitoring and control system for energy conservation in ...
Remote street light monitoring and control system for energy conservation in ...Remote street light monitoring and control system for energy conservation in ...
Remote street light monitoring and control system for energy conservation in ...Instruments Universal
 
Smart home device system using arduino uno & X-Bee
Smart home device system using arduino uno & X-BeeSmart home device system using arduino uno & X-Bee
Smart home device system using arduino uno & X-Beepremdeshmane
 
Gsm based home automation
Gsm based home automationGsm based home automation
Gsm based home automationMainak Sinha
 
Design Development of Water Monitoring Systems by Using Arduino and Sensors
Design Development of Water Monitoring Systems by Using Arduino and SensorsDesign Development of Water Monitoring Systems by Using Arduino and Sensors
Design Development of Water Monitoring Systems by Using Arduino and SensorsSai Bhaskar Reddy Nakka
 
SMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICE
SMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICESMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICE
SMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICEASHOKKUMAR RAMAR
 
Smart street light management systems for street light energy conservation, a...
Smart street light management systems for street light energy conservation, a...Smart street light management systems for street light energy conservation, a...
Smart street light management systems for street light energy conservation, a...Instruments Universal
 
IoT BASED SMART HOME USING ARDUINO
IoT BASED SMART HOME USING ARDUINOIoT BASED SMART HOME USING ARDUINO
IoT BASED SMART HOME USING ARDUINOAYSHA S KABEER
 
automatic plant irrigation using aurdino and gsm technology
automatic plant irrigation using aurdino and gsm technologyautomatic plant irrigation using aurdino and gsm technology
automatic plant irrigation using aurdino and gsm technologythamil arasan
 
Pir based lighting control
Pir based lighting controlPir based lighting control
Pir based lighting controlSlidescope
 
Human presence detection based room light controller using pir2.pptx [repaired]
Human presence detection based room light controller using pir2.pptx [repaired]Human presence detection based room light controller using pir2.pptx [repaired]
Human presence detection based room light controller using pir2.pptx [repaired]nikhilsinghia
 
Security system using Arduino
Security system using ArduinoSecurity system using Arduino
Security system using ArduinoApoorv Anand
 
Wireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsWireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsSudhanshu Tripathi
 
Temperature monitoring and controling using arduino
Temperature monitoring and controling using arduinoTemperature monitoring and controling using arduino
Temperature monitoring and controling using arduinoBablu Singh
 

Viewers also liked (20)

multiple input control by sms using GSM technology
multiple input control by sms using GSM technologymultiple input control by sms using GSM technology
multiple input control by sms using GSM technology
 
Home Automation with LinkSprite IO
Home Automation with LinkSprite IOHome Automation with LinkSprite IO
Home Automation with LinkSprite IO
 
Home automation and Digital notice board using android app
Home automation and Digital notice board using android appHome automation and Digital notice board using android app
Home automation and Digital notice board using android app
 
Home security system
Home security systemHome security system
Home security system
 
Home Automation Over Internet Project (Ev Otomasyon Projesi)
Home Automation Over Internet Project (Ev Otomasyon Projesi)Home Automation Over Internet Project (Ev Otomasyon Projesi)
Home Automation Over Internet Project (Ev Otomasyon Projesi)
 
Design and implementation of home automation system u...
Design and implementation of home                         automation system u...Design and implementation of home                         automation system u...
Design and implementation of home automation system u...
 
Remote street light monitoring and control system for energy conservation in ...
Remote street light monitoring and control system for energy conservation in ...Remote street light monitoring and control system for energy conservation in ...
Remote street light monitoring and control system for energy conservation in ...
 
Smart home device system using arduino uno & X-Bee
Smart home device system using arduino uno & X-BeeSmart home device system using arduino uno & X-Bee
Smart home device system using arduino uno & X-Bee
 
Gsm based home automation
Gsm based home automationGsm based home automation
Gsm based home automation
 
Design Development of Water Monitoring Systems by Using Arduino and Sensors
Design Development of Water Monitoring Systems by Using Arduino and SensorsDesign Development of Water Monitoring Systems by Using Arduino and Sensors
Design Development of Water Monitoring Systems by Using Arduino and Sensors
 
Arduino based solar street light
Arduino based solar street lightArduino based solar street light
Arduino based solar street light
 
SMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICE
SMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICESMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICE
SMS(GSM)BASED HOME AUTOMATION SYSTEM PROJECTS-ECE/EEE/E&I/ICE
 
Smart street light management systems for street light energy conservation, a...
Smart street light management systems for street light energy conservation, a...Smart street light management systems for street light energy conservation, a...
Smart street light management systems for street light energy conservation, a...
 
IoT BASED SMART HOME USING ARDUINO
IoT BASED SMART HOME USING ARDUINOIoT BASED SMART HOME USING ARDUINO
IoT BASED SMART HOME USING ARDUINO
 
automatic plant irrigation using aurdino and gsm technology
automatic plant irrigation using aurdino and gsm technologyautomatic plant irrigation using aurdino and gsm technology
automatic plant irrigation using aurdino and gsm technology
 
Pir based lighting control
Pir based lighting controlPir based lighting control
Pir based lighting control
 
Human presence detection based room light controller using pir2.pptx [repaired]
Human presence detection based room light controller using pir2.pptx [repaired]Human presence detection based room light controller using pir2.pptx [repaired]
Human presence detection based room light controller using pir2.pptx [repaired]
 
Security system using Arduino
Security system using ArduinoSecurity system using Arduino
Security system using Arduino
 
Wireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsWireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensors
 
Temperature monitoring and controling using arduino
Temperature monitoring and controling using arduinoTemperature monitoring and controling using arduino
Temperature monitoring and controling using arduino
 

Similar to Modified_PCR_CODE in Arduino

Presentation 2 Spring 2016 FINAL fat cut (1)
Presentation 2 Spring 2016 FINAL fat cut (1)Presentation 2 Spring 2016 FINAL fat cut (1)
Presentation 2 Spring 2016 FINAL fat cut (1)Michael Vistine
 
Testing CAN network with help of CANToolz
Testing CAN network with help of CANToolzTesting CAN network with help of CANToolz
Testing CAN network with help of CANToolzAlexey Sintsov
 
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET Journal
 
Webshield internet of things
Webshield internet of thingsWebshield internet of things
Webshield internet of thingsRaghav Shetty
 
I2c interfacing raspberry pi to arduino
I2c interfacing raspberry pi to arduinoI2c interfacing raspberry pi to arduino
I2c interfacing raspberry pi to arduinoMike Ochtman
 
HOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHM
HOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHMHOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHM
HOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHMIRJET Journal
 
Industrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOTIndustrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOTAyush Chhangani
 
Gas leakage detection system
Gas leakage detection systemGas leakage detection system
Gas leakage detection systemAashiq Ahamed N
 
Report for weather pi
Report for weather piReport for weather pi
Report for weather piAsutosh Hota
 
Remote temperature monitor (DHT11)
Remote temperature monitor (DHT11)Remote temperature monitor (DHT11)
Remote temperature monitor (DHT11)Parshwadeep Lahane
 
Arduino Teaching Program
Arduino Teaching ProgramArduino Teaching Program
Arduino Teaching ProgramMax Kleiner
 
Low Cost Temperature and Humidity Estimator with Atmega8 Microcontroller
Low Cost Temperature and Humidity Estimator with Atmega8 MicrocontrollerLow Cost Temperature and Humidity Estimator with Atmega8 Microcontroller
Low Cost Temperature and Humidity Estimator with Atmega8 MicrocontrollerYogeshIJTSRD
 
Embedded system lab work
Embedded system lab workEmbedded system lab work
Embedded system lab workJIGAR MAKHIJA
 
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...IJSRD
 
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...IJSRD
 
Itsp documentation quadcopter flight controller based on kalman filters
Itsp documentation   quadcopter flight controller based on kalman filtersItsp documentation   quadcopter flight controller based on kalman filters
Itsp documentation quadcopter flight controller based on kalman filtersJyotirmaya Mahanta
 
IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019Jong-Hyun Kim
 
Maxbox starter18
Maxbox starter18Maxbox starter18
Maxbox starter18Max Kleiner
 
codesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUES
codesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUEScodesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUES
codesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUESEMERSON EDUARDO RODRIGUES
 
Internet of things laboratory
Internet of things laboratoryInternet of things laboratory
Internet of things laboratorySoumee Maschatak
 

Similar to Modified_PCR_CODE in Arduino (20)

Presentation 2 Spring 2016 FINAL fat cut (1)
Presentation 2 Spring 2016 FINAL fat cut (1)Presentation 2 Spring 2016 FINAL fat cut (1)
Presentation 2 Spring 2016 FINAL fat cut (1)
 
Testing CAN network with help of CANToolz
Testing CAN network with help of CANToolzTesting CAN network with help of CANToolz
Testing CAN network with help of CANToolz
 
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
 
Webshield internet of things
Webshield internet of thingsWebshield internet of things
Webshield internet of things
 
I2c interfacing raspberry pi to arduino
I2c interfacing raspberry pi to arduinoI2c interfacing raspberry pi to arduino
I2c interfacing raspberry pi to arduino
 
HOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHM
HOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHMHOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHM
HOME AUTOMATION SYSTEM DESIGN USING ROUND ROBIN SCHEDULING ALGORITHM
 
Industrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOTIndustrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOT
 
Gas leakage detection system
Gas leakage detection systemGas leakage detection system
Gas leakage detection system
 
Report for weather pi
Report for weather piReport for weather pi
Report for weather pi
 
Remote temperature monitor (DHT11)
Remote temperature monitor (DHT11)Remote temperature monitor (DHT11)
Remote temperature monitor (DHT11)
 
Arduino Teaching Program
Arduino Teaching ProgramArduino Teaching Program
Arduino Teaching Program
 
Low Cost Temperature and Humidity Estimator with Atmega8 Microcontroller
Low Cost Temperature and Humidity Estimator with Atmega8 MicrocontrollerLow Cost Temperature and Humidity Estimator with Atmega8 Microcontroller
Low Cost Temperature and Humidity Estimator with Atmega8 Microcontroller
 
Embedded system lab work
Embedded system lab workEmbedded system lab work
Embedded system lab work
 
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
 
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
Control of Industrial Pneumatic & Hydraulic Systems using Serial Communicatio...
 
Itsp documentation quadcopter flight controller based on kalman filters
Itsp documentation   quadcopter flight controller based on kalman filtersItsp documentation   quadcopter flight controller based on kalman filters
Itsp documentation quadcopter flight controller based on kalman filters
 
IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019
 
Maxbox starter18
Maxbox starter18Maxbox starter18
Maxbox starter18
 
codesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUES
codesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUEScodesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUES
codesys-cmt-quick-start-guide EMERSON EDUARDO RODRIGUES
 
Internet of things laboratory
Internet of things laboratoryInternet of things laboratory
Internet of things laboratory
 

Modified_PCR_CODE in Arduino