Notice
Recent Posts
Recent Comments
Creative Code
07_Analog_Read 본문
#define V0 5.0
#define unit V0/1024
#define R1 10000.0
const int analogPin = A0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
int analogValue = analogRead(analogPin); // analogpin에 연결했을때
float V2 = analogValue * unit;
float R2 = V2 * R1 / (V0 - V2);
Serial.print(analogValue);
Serial.print(", ");
Serial.print(analogValue * unit);
Serial.print("V,");
Serial.println(R2);
delay(300);
}
'Arduino(C,C++)' 카테고리의 다른 글
08_joystick (0) | 2023.08.11 |
---|---|
07_Analog_Read-(2) 조명센서밝기에 따른 led밝기 조절 (0) | 2023.08.11 |
EX03_binary_led_interrupt -(2) (2,3번핀이 아닌 다른핀에 버튼을 연결할때) (0) | 2023.08.11 |
06_SW_INPUT_interrupt(스위치누를때마다 led on/off) (0) | 2023.08.11 |
EX03_binary_led_interrupt -(1) (버튼누를 때마다 다음 이진수 led출력) (0) | 2023.08.11 |