Skip to content

analogWrite causes serial output #189

@yasharrashedi

Description

@yasharrashedi

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions