A blinky variation for the mBuino with a bunch of different blink modes, deep-sleeping between iterations.

Dependencies:   Crypto RNG mbed WakeUp

Fork of mBuinoBlinky by Aron Phillips

mBuino blinky experiments.

main.cpp

Committer:
mikewebkist
Date:
2014-09-05
Revision:
3:f3e484ae4439
Parent:
2:fd6008aa85cd
Child:
4:eea1a71b9a11

File content as of revision 3:f3e484ae4439:

#include "mbed.h"
#include "RNG/Random.h"

DigitalOut LED[] = {(P0_7), (P0_8), (P0_2), (P0_20), (P1_19), (P0_17), (P0_23)};// declare 7 LEDs

float delayTime = .05;
int rndLED = 0;
Random RNG = Random();

int main()
{
    while(1)
    {
        for(int x=0; x<7; x++)
        {
            LED[x] = 1;
            wait(delayTime);
            // LED[x] = 0;
        }

        for(int x=6; x>=0; x--)
        {
            LED[x] = 0;
            wait(delayTime);
        }
        
        for(int n=0; n<128; n++) {
            for(int b=0; b<7; b++) {
                if(n & (1 << b)) {
                    LED[6 - b]=1;
                }
            }
            wait(0.05);
            for(int b=0; b<7; b++) {
                LED[b]=0;
            }
        }
        
        for(int x=0; x<32; x++) {
            rndLED = (int) RNG.getByte() % 8;
            LED[rndLED]=1;
            wait(0.1);
            LED[rndLED]=0;
        }
    }
}