10 lines
171 B
C++
10 lines
171 B
C++
void setup() {
|
|
// put your setup code here, to run once:
|
|
ledcAttach(12, 50, 10);
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
ledcWrite(12, )
|
|
}
|