English
Language : 

LCD-14048 Datasheet, PDF (26/33 Pages) SparkFun Electronics – TeensyView Hookup Guide
/*************************************************************
*****************
TeensyViewProp.ino
Example using the TeensyView with the Teensy Prop Shield.
Marshall Taylor @ SparkFun Electronics, December 6, 2016
https://github.com/sparkfun/SparkFun_TeensyView_Arduino_Libr
ary
This enables all resources on the Teensy Prop Shield and ope
rates them with
the TeensyView.
Accelerometer data is used to drive Teensy Audio system (ben
ds pitch)
Flash is programmed with LED data at boot (note: comment ou
t flash erasor if necessary)
LED continuously reads flash file for color information (Dri
ven raw by SPI)
TeensyView continuously updated with pitch, roll, and headin
g information.
Compatible with:
Teensy 3.1 + Prop Shield
Teensy 3.2 + Prop Shield
Teensy 3.5 + Prop Shield
Teensy 3.6 + Prop Shield
Resources:
Requires the Teensy Audio library
NXPMotionSense Library
EEPROM Library
SerialFlash Library
Development environment specifics:
Arduino IDE 1.6.12
TeensyView v1.0
This code is released under the [MIT License](http://opensou
rce.org/licenses/MIT).
Please review the LICENSE.md file included with this exampl
e. If you have any questions
or concerns with licensing, please contact techsupport@spark
fun.com.
Distributed as­is; no warranty is given.
**************************************************************
****************/
//********************IMU test*******************//
#include <NXPMotionSense.h>
#include <Wire.h>
#include <EEPROM.h>
NXPMotionSense imu;
NXPSensorFusion filter;
//********************IMU test*******************//
//********************Audio test*******************//
#include <Audio.h>
#include <Wire.h>
#include <SPI.h>
Page 26 of 33