-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Closed
Description
I'm using ESP8266-07 and IDE ARDUINO 1.6.1 - 2015.03.10 (built from source)
digitalWrite works great!
tested analogWrite with pin 4 and 13, analogWrite causes following serial output (every second) and nothing happens on LED:
wdt reset
load 0x40100000, len 30336, room 16
tail 0
chksum 0x84
load 0x3ffe8000, len 2404, room 8
tail 12
chksum 0xfa
ho 0 tail 12 room 4
load 0x3ffe8970, len 1444, room 12
tail 8
chksum 0x1f
csum 0x1f
rl
my sketch:
int led = 4;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
analogWrite(led, 10);
delay(1000);
analogWrite(led, 100);
delay(1000);
}
Metadata
Metadata
Assignees
Labels
No labels