Notice
Recent Posts
Recent Comments
Creative Code
07_Analog_Read-(2) 조명센서밝기에 따른 led밝기 조절 본문
#define V0 5.0
#define unit V0/1024
#define R1 10000.0
const int led_0 = 3;
const int analogPin = A0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(led_0,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int analogValue = analogRead(analogPin);
float V2 = analogValue * unit;
Serial.println(analogValue);
analogWrite(led_0,map(analogValue,170,1023,0,255));
}
'Arduino(C,C++)' 카테고리의 다른 글
09_tone (0) | 2023.08.11 |
---|---|
08_joystick (0) | 2023.08.11 |
07_Analog_Read (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 |