Compiler Error 65

Table of Contents

  1. expected a ";"

expected a ";"

#include "mbed.h"

DigitalOut myled (LED1);

int main(){
    led1 = 1//The wrong line
    wait (0.2);//DASS line compiler error
}

I'm sorry. I am using a Japanese translation service so. I think there is a cryptic statement.





1 comment:

23 Mar 2013
  1. include "mbed.h"

DigitalOut myled (LED1);

int main(){ myled.write(1); wait (0.2); }