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

Dependencies:   mbed FXOS8700CQ MODSERIAL

Committer:
stefanrousseau
Date:
Thu Jul 28 17:21:31 2016 +0000
Revision:
56:cb42ff383dab
Parent:
55:3abf9e3f42e6
Child:
61:f6b93129f954
Changes USB UART to use MODSERIAL library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
stefanrousseau 11:e6602513730f 1 #ifndef Hardware_H_
stefanrousseau 11:e6602513730f 2 #define Hardware_H_
stefanrousseau 56:cb42ff383dab 3 #include "MODSERIAL.h"
stefanrousseau 11:e6602513730f 4 extern I2C i2c; //SDA, SCL -- define the I2C pins being used
stefanrousseau 56:cb42ff383dab 5 extern MODSERIAL pc; //UART to USB host
stefanrousseau 55:3abf9e3f42e6 6
stefanrousseau 55:3abf9e3f42e6 7 //Un-comment the definition below if you want to use the USB rx for another purpose.
stefanrousseau 55:3abf9e3f42e6 8 //otherwise the USB rx will be used to receive virtual sensor data from Avnet's
stefanrousseau 55:3abf9e3f42e6 9 //"Sensor Simulator Dashboard" utility
stefanrousseau 55:3abf9e3f42e6 10 #define USE_VIRTUAL_SENSORS
stefanrousseau 11:e6602513730f 11
stefanrousseau 11:e6602513730f 12 #endif