Cubic Hand project for EECS 249A course.

Dependencies:   MMA8451Q TSI cc3000_hostdriver_mbedsocket NVIC_set_all_priorities mbed Multi_WS2811

Committer:
joseoyola
Date:
Mon Dec 15 23:55:15 2014 +0000
Revision:
56:f95ec9baa4cb
Parent:
40:bdd949fc3bc2
Changes to LedCube.h and LedCube.cpp; ; Renamed ledCube.h and ledCube.cpp to LedCube.h and LedCube.cpp, added documentation to both, added logic to move cube to allow changing size regardless of current position.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
robertbui 40:bdd949fc3bc2 1 #pragma once
robertbui 40:bdd949fc3bc2 2
robertbui 39:e90071c1535a 3 struct CubeUpdateParameters
robertbui 39:e90071c1535a 4 {
robertbui 39:e90071c1535a 5 int size;
robertbui 39:e90071c1535a 6 int deltaX;
robertbui 39:e90071c1535a 7 int deltaY;
robertbui 39:e90071c1535a 8 int deltaZ;
robertbui 39:e90071c1535a 9 float hue;
robertbui 39:e90071c1535a 10 };