Basic fading in and out of leds with light sensor.

Dependencies:   mbed

Committer:
mturner5
Date:
Mon Sep 19 03:24:58 2016 +0000
Revision:
0:cf7af2656659
Basic v1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mturner5 0:cf7af2656659 1 /* mbed Microcontroller Library
mturner5 0:cf7af2656659 2 * Copyright (c) 2006-2013 ARM Limited
mturner5 0:cf7af2656659 3 *
mturner5 0:cf7af2656659 4 * Licensed under the Apache License, Version 2.0 (the "License");
mturner5 0:cf7af2656659 5 * you may not use this file except in compliance with the License.
mturner5 0:cf7af2656659 6 * You may obtain a copy of the License at
mturner5 0:cf7af2656659 7 *
mturner5 0:cf7af2656659 8 * http://www.apache.org/licenses/LICENSE-2.0
mturner5 0:cf7af2656659 9 *
mturner5 0:cf7af2656659 10 * Unless required by applicable law or agreed to in writing, software
mturner5 0:cf7af2656659 11 * distributed under the License is distributed on an "AS IS" BASIS,
mturner5 0:cf7af2656659 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mturner5 0:cf7af2656659 13 * See the License for the specific language governing permissions and
mturner5 0:cf7af2656659 14 * limitations under the License.
mturner5 0:cf7af2656659 15 */
mturner5 0:cf7af2656659 16 #ifndef MBED_PINMAP_H
mturner5 0:cf7af2656659 17 #define MBED_PINMAP_H
mturner5 0:cf7af2656659 18
mturner5 0:cf7af2656659 19 #include "PinNames.h"
mturner5 0:cf7af2656659 20
mturner5 0:cf7af2656659 21 #ifdef __cplusplus
mturner5 0:cf7af2656659 22 extern "C" {
mturner5 0:cf7af2656659 23 #endif
mturner5 0:cf7af2656659 24
mturner5 0:cf7af2656659 25 typedef struct {
mturner5 0:cf7af2656659 26 PinName pin;
mturner5 0:cf7af2656659 27 int peripheral;
mturner5 0:cf7af2656659 28 int function;
mturner5 0:cf7af2656659 29 } PinMap;
mturner5 0:cf7af2656659 30
mturner5 0:cf7af2656659 31 void pin_function(PinName pin, int function);
mturner5 0:cf7af2656659 32 void pin_mode (PinName pin, PinMode mode);
mturner5 0:cf7af2656659 33
mturner5 0:cf7af2656659 34 uint32_t pinmap_peripheral(PinName pin, const PinMap* map);
mturner5 0:cf7af2656659 35 uint32_t pinmap_merge (uint32_t a, uint32_t b);
mturner5 0:cf7af2656659 36 void pinmap_pinout (PinName pin, const PinMap *map);
mturner5 0:cf7af2656659 37 uint32_t pinmap_find_peripheral(PinName pin, const PinMap* map);
mturner5 0:cf7af2656659 38
mturner5 0:cf7af2656659 39 #ifdef __cplusplus
mturner5 0:cf7af2656659 40 }
mturner5 0:cf7af2656659 41 #endif
mturner5 0:cf7af2656659 42
mturner5 0:cf7af2656659 43 #endif