NTC 센서 4개 온도 데이터 수신
아두이노 + NTC 온도센서 온도 4개 값을 그래프로 표시합니다. int ThermistorPin = 0; int Vo, Vout; float R1 = 10000; float logR2, R2, T,VR,VRT; float T2, T3, T4; float Temp = 0; float c1 = 1.126260975e-03, c2 = 2.354310794e-04, c3 = 0.7596803406e-07; void setup() { // put your setup code here, to run once: Serial.begin(115200); } void loop() { // put your main code here, to run repeatedly: Vo = analogRead(0); Vout = Vo;..