티스토리 뷰
// the number of the LED pin
const int ledPin = 16; // 16 corresponds to GPIO16
const int ledPin2 = 17; // 17 corresponds to GPIO17
const int ledPin3 = 5; // 5 corresponds to GPIO5
// setting PWM properties
const int freq = 5000;
const int ledChannel = 0;
const int resolution = 8;
void setup(){
// configure LED PWM functionalitites
ledcSetup(ledChannel, freq, resolution);
// attach the channel to the GPIO to be controlled
ledcAttachPin(ledPin, ledChannel);
ledcAttachPin(ledPin2, ledChannel);
ledcAttachPin(ledPin3, ledChannel);
}
void loop(){
// increase the LED brightness
for(int dutyCycle = 0; dutyCycle <= 255; dutyCycle++){
// changing the LED brightness with PWM
ledcWrite(ledChannel, dutyCycle);
delay(15);
}
// decrease the LED brightness
for(int dutyCycle = 255; dutyCycle >= 0; dutyCycle--){
// changing the LED brightness with PWM
ledcWrite(ledChannel, dutyCycle);
delay(15);
}
}
반응형
'SWDesk > Firmware' 카테고리의 다른 글
[Arduino] 실수형 계산 테스트(float, double) (2) | 2024.10.11 |
---|---|
[FW] ATTiny85 PWM 예제 (0) | 2024.04.02 |
아두이노 나노 ESP32 - BLE 예제 with Advertising (0) | 2024.01.05 |
아두이노 나노 ESP32 - BLE 예제 (0) | 2024.01.03 |
아두이노 나노 ESP32 - POST Request 예제 (0) | 2023.12.28 |
반응형
250x250
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 심심풀이
- Decorator
- 절연형
- 아두이노
- Innovations&Hurdles
- 배프
- ServantClock
- 심심풀이치매방지기
- 전압
- 혁신
- Video
- Hurdles
- DYOV
- Innovations
- 치매
- 혁신과허들
- badp
- 티스토리챌린지
- 전압전류모니터링
- BSC
- 둎
- 빌리언트
- Innovation&Hurdles
- bilient
- 오블완
- arduino
- 전류
- 허들
- image
- 치매방지
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함