Created
March 30, 2020 04:14
-
-
Save jpliew/a4ac749a610395059b853736349e3f7c to your computer and use it in GitHub Desktop.
Tutorial 4 - 1C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int analogInPin = A0; // Analog input pin that the potentiometer is attached to | |
int btnPin = 2; | |
int buzzerPin = 6; | |
bool toggle =false; | |
void setup() { | |
Serial.begin(9600); | |
pinMode(buzzerPin, OUTPUT); | |
} | |
void loop() | |
{ | |
int rawvoltage= analogRead(analogInPin); | |
float millivolts= rawvoltage * (5000/1023.0); | |
float kelvin= (millivolts/10); | |
Serial.print(millivolts); | |
Serial.print(" mV\t"); | |
Serial.print(kelvin); | |
Serial.print(" Kelvin\t"); | |
float celsius= kelvin - 273.15; | |
float f = (celsius * 1.8) + 32; | |
if(digitalRead(btnPin) == HIGH) { | |
toggle=!toggle; | |
digitalWrite(buzzerPin, HIGH); | |
delay(500); | |
digitalWrite(buzzerPin, LOW); | |
} | |
if(!toggle) { | |
Serial.print(celsius); | |
Serial.println(" Celsius"); | |
} | |
else { | |
Serial.print(f); | |
Serial.println(" Farenheit"); | |
} | |
delay(300); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment