Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- gadgetcafe08
- Date:
- 2011-05-21
- Revision:
- 2:b26dd68e6a19
- Parent:
- 1:486592635dfd
File content as of revision 2:b26dd68e6a19:
#include "mbed.h"
PwmOut myled1(LED1);
DigitalOut myled2(LED2);
DigitalOut myled3(LED3);
DigitalOut myled4(LED4);
int main() {
int i;
int j;
int flg=0;
double akarusa=0.1;
double light_plus=0.1;
while(1) {
for(j=0;j<3;j++)
{
for(i=0;i<2;i++)
{
myled1 = 1;
myled2 = 0;
wait(0.2);
myled1 = 0;
myled2 = 1;
wait(0.2);
}
for(i=0;i<2;i++)
{
myled4 = 1;
myled3 = 0;
wait(0.2);
myled4 = 0;
myled3 = 1;
wait(0.2);
}
}
myled2 = 0;
myled3 = 0;
flg=0;
for(i=0;i<4;i++)
{
if(flg==1)
{
myled4=0;
}
myled1 = 1;
wait(0.1);
myled1 = 0;
myled2 = 1;
wait(0.1);
myled2 = 0;
myled3 = 1;
wait(0.1);
myled3 = 0;
myled4 = 1;
wait(0.1);
flg=1;
}
myled4 = 0;
for(i=0;i<5;i++)
{
myled1=0.1;
wait(0.2);
myled1=0.5;
wait(0.2);
myled1=1;
wait(0.2);
}
myled1=0;
}
}