mbed_example / Mbed OS BusOut_HelloWorld

Fork of BusOut_HelloWorld by Mbed

Committer:
sarahmarshy
Date:
Sat Jun 24 18:44:55 2017 -0500
Revision:
4:b07a5ecb7618
Parent:
2:f979089a5ca0
"Update mbed-os"

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbedAustin 2:f979089a5ca0 1 /* mbed Example Program
mbedAustin 2:f979089a5ca0 2 * Copyright (c) 2006-2014 ARM Limited
mbedAustin 2:f979089a5ca0 3 *
mbedAustin 2:f979089a5ca0 4 * Licensed under the Apache License, Version 2.0 (the "License");
mbedAustin 2:f979089a5ca0 5 * you may not use this file except in compliance with the License.
mbedAustin 2:f979089a5ca0 6 * You may obtain a copy of the License at
mbedAustin 2:f979089a5ca0 7 *
mbedAustin 2:f979089a5ca0 8 * http://www.apache.org/licenses/LICENSE-2.0
mbedAustin 2:f979089a5ca0 9 *
mbedAustin 2:f979089a5ca0 10 * Unless required by applicable law or agreed to in writing, software
mbedAustin 2:f979089a5ca0 11 * distributed under the License is distributed on an "AS IS" BASIS,
mbedAustin 2:f979089a5ca0 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbedAustin 2:f979089a5ca0 13 * See the License for the specific language governing permissions and
mbedAustin 2:f979089a5ca0 14 * limitations under the License.
mbedAustin 2:f979089a5ca0 15 */
mbed_official 0:717993c337df 16 #include "mbed.h"
mbed_official 0:717993c337df 17
mbed_official 0:717993c337df 18 BusOut myleds(LED1, LED2, LED3, LED4);
mbed_official 0:717993c337df 19
mbed_official 0:717993c337df 20 int main() {
mbed_official 0:717993c337df 21 while(1) {
mbed_official 0:717993c337df 22 for(int i=0; i<16; i++) {
mbed_official 0:717993c337df 23 myleds = i;
mbed_official 0:717993c337df 24 wait(0.25);
mbed_official 0:717993c337df 25 }
mbed_official 0:717993c337df 26 }
mbed_official 0:717993c337df 27 }