Example program for the Seeed Grove shield, that uses Grove LED Bar by SeeedStudio on D5 connector (D6/D5 pins). This program raises the bar from 0 to 10.

Dependencies:   LED_Bar mbed

main.cpp

Committer:
screamer
Date:
2015-02-13
Revision:
1:1eb69ef11995
Parent:
0:2ae0ac3db9b7

File content as of revision 1:1eb69ef11995:

/* Copyright (c) 2010-2011 mbed.org, MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
* and associated documentation files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "mbed.h"
#include "LED_Bar.h"

LED_Bar bar(D6, D5);

int main() {
    int i;
    while(1) {
        for (i=0; i<=10; i++) {
            bar.setLevel(i);
            wait(0.1);
        }
    }
}