FRDM-K64F, Avnet M14A2A, Grove Shield, to create smart home system. In use with AT&Ts M2x & Flow.

Dependencies:   mbed FXOS8700CQ MODSERIAL

Committer:
jwhammel
Date:
Wed Mar 06 21:11:49 2019 +0000
Revision:
84:fc8c9b39723a
Embedded Systems Midterm Project Spring 2019

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jwhammel 84:fc8c9b39723a 1 /* mbed Microcontroller Library
jwhammel 84:fc8c9b39723a 2 * Copyright (c) 2006-2013 ARM Limited
jwhammel 84:fc8c9b39723a 3 *
jwhammel 84:fc8c9b39723a 4 * Licensed under the Apache License, Version 2.0 (the "License");
jwhammel 84:fc8c9b39723a 5 * you may not use this file except in compliance with the License.
jwhammel 84:fc8c9b39723a 6 * You may obtain a copy of the License at
jwhammel 84:fc8c9b39723a 7 *
jwhammel 84:fc8c9b39723a 8 * http://www.apache.org/licenses/LICENSE-2.0
jwhammel 84:fc8c9b39723a 9 *
jwhammel 84:fc8c9b39723a 10 * Unless required by applicable law or agreed to in writing, software
jwhammel 84:fc8c9b39723a 11 * distributed under the License is distributed on an "AS IS" BASIS,
jwhammel 84:fc8c9b39723a 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
jwhammel 84:fc8c9b39723a 13 * See the License for the specific language governing permissions and
jwhammel 84:fc8c9b39723a 14 * limitations under the License.
jwhammel 84:fc8c9b39723a 15 */
jwhammel 84:fc8c9b39723a 16 #ifndef MBED_H
jwhammel 84:fc8c9b39723a 17 #define MBED_H
jwhammel 84:fc8c9b39723a 18
jwhammel 84:fc8c9b39723a 19 #define MBED_LIBRARY_VERSION 88
jwhammel 84:fc8c9b39723a 20
jwhammel 84:fc8c9b39723a 21 #include "platform.h"
jwhammel 84:fc8c9b39723a 22
jwhammel 84:fc8c9b39723a 23 // Useful C libraries
jwhammel 84:fc8c9b39723a 24 #include <math.h>
jwhammel 84:fc8c9b39723a 25 #include <time.h>
jwhammel 84:fc8c9b39723a 26
jwhammel 84:fc8c9b39723a 27 // mbed Debug libraries
jwhammel 84:fc8c9b39723a 28 #include "mbed_error.h"
jwhammel 84:fc8c9b39723a 29 #include "mbed_interface.h"
jwhammel 84:fc8c9b39723a 30
jwhammel 84:fc8c9b39723a 31 // mbed Peripheral components
jwhammel 84:fc8c9b39723a 32 #include "DigitalIn.h"
jwhammel 84:fc8c9b39723a 33 #include "DigitalOut.h"
jwhammel 84:fc8c9b39723a 34 #include "DigitalInOut.h"
jwhammel 84:fc8c9b39723a 35 #include "BusIn.h"
jwhammel 84:fc8c9b39723a 36 #include "BusOut.h"
jwhammel 84:fc8c9b39723a 37 #include "BusInOut.h"
jwhammel 84:fc8c9b39723a 38 #include "PortIn.h"
jwhammel 84:fc8c9b39723a 39 #include "PortInOut.h"
jwhammel 84:fc8c9b39723a 40 #include "PortOut.h"
jwhammel 84:fc8c9b39723a 41 #include "AnalogIn.h"
jwhammel 84:fc8c9b39723a 42 #include "AnalogOut.h"
jwhammel 84:fc8c9b39723a 43 #include "PwmOut.h"
jwhammel 84:fc8c9b39723a 44 #include "Serial.h"
jwhammel 84:fc8c9b39723a 45 #include "SPI.h"
jwhammel 84:fc8c9b39723a 46 #include "SPISlave.h"
jwhammel 84:fc8c9b39723a 47 #include "I2C.h"
jwhammel 84:fc8c9b39723a 48 #include "I2CSlave.h"
jwhammel 84:fc8c9b39723a 49 #include "Ethernet.h"
jwhammel 84:fc8c9b39723a 50 #include "CAN.h"
jwhammel 84:fc8c9b39723a 51 #include "RawSerial.h"
jwhammel 84:fc8c9b39723a 52
jwhammel 84:fc8c9b39723a 53 // mbed Internal components
jwhammel 84:fc8c9b39723a 54 #include "Timer.h"
jwhammel 84:fc8c9b39723a 55 #include "Ticker.h"
jwhammel 84:fc8c9b39723a 56 #include "Timeout.h"
jwhammel 84:fc8c9b39723a 57 #include "LocalFileSystem.h"
jwhammel 84:fc8c9b39723a 58 #include "InterruptIn.h"
jwhammel 84:fc8c9b39723a 59 #include "wait_api.h"
jwhammel 84:fc8c9b39723a 60 #include "sleep_api.h"
jwhammel 84:fc8c9b39723a 61 #include "rtc_time.h"
jwhammel 84:fc8c9b39723a 62
jwhammel 84:fc8c9b39723a 63 using namespace mbed;
jwhammel 84:fc8c9b39723a 64 using namespace std;
jwhammel 84:fc8c9b39723a 65
jwhammel 84:fc8c9b39723a 66 #endif
jwhammel 84:fc8c9b39723a 67