Changes between Version 2 and Version 3 of IntelEdisonBlinkCPlusPlus


Ignore:
Timestamp:
Nov 22, 2014 4:13:00 PM (9 years ago)
Author:
sgk
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IntelEdisonBlinkCPlusPlus

    v2 v3  
    1919  led->dir(mraa::DIR_OUT);
    2020  for (;;) {
     21    led->write(0);
     22    usleep(300000);
    2123    led->write(1);
    22     usleep(300000);
    23     led->write(0);
    2424    usleep(300000);
    2525  }