const byte L_C = A0;
const byte L_F = 11;
void setup() {
// put your setup code here, to run once:
pinMode(L_F, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
analogWrite(L_F, analogRead(L_C));
}
const byte L_C = A0;
const byte L_F = 11;
void setup() {
// put your setup code here, to run once:
pinMode(L_F, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
analogWrite(L_F, analogRead(L_C));
}