Organizer Resource Person: Department of ECE Aliah University Kolkata, India
Organizer Resource Person: Department of ECE Aliah University Kolkata, India
Organizer Resource Person: Department of ECE Aliah University Kolkata, India
It is a technology associated with manufacturing of microscale devices like Sensors, Transducers, Actuators,
Gears, Pumps, Switches etc.
2.This is the main toolbar. From the left to the right: Rotate the selected part clockwise, delete the
selected part, undo and redo your last action(s), create annotations and toggle their visibility.
3.Some parts allow you to change their program. Click here to do so.
6.Choose the parts to display in the list below. I recommend choosing “All”.
8.The main work area. Drag and drop parts here to add them to your design.
Features:
•Low Voltage Operation (+2.7 V to+5.5 V)
•Calibrated Directly in °C
•10 mV/8°C Scale Factor (20 mV/8°C on TMP37)
•±2°C Accuracy OverTemperature (typ)
•±0.5°C Linearity (typ)
•Stable with Large Capacitive Loads
•Specified -40 °C to +125 °C, Operation to +150 °C
•Less than 50 µA Quiescent Current
•Shutdown Current 0.5 µA max
void setup()
{
Serial.begin(9600);
pinMode(A0,INPUT);
}
void loop()
{
float degcel=((analogRead(A0)*(5.0/1024))-0.5)/0.01;
Serial.print("Temperature=");
Serial.print(degcel);
Serial.println("degree");
delay(200);
}
TMP36 Temperature Sensor With Arduino in Tinkercad
Arduino PWM
The PWM (Pulse Width Modulation) is a method of controlling the average voltage. It is a stream of
voltage pulses that reduces the electric power supplied by the electrical signal. The effective voltage is
controlled by the width of individual pulses in a stream of voltage pulses of a PWM signal.
The common use of PWM pins includes controlling LEDs and DC Motors.
void loop(){
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, LOW);
digitalWrite(motorPin3, HIGH);
digitalWrite(motorPin4, LOW);
}
www.tinkercad.com
https://www.electronicshub.org
https://www.instructables.com
www.circuito.io
https://www.javatpoint.com/
www.github.com
www.hackster.com
References