The MGC3130 is the world’s first electrical-field (E-field) based three-dimensional (3D) tracking and gesture controller
Dependents: NucleoMGC3130 i2c_master
RuntimeParameter/AirWheelDetection.h
- Committer:
- yangcq88517
- Date:
- 2015-10-07
- Revision:
- 1:621c4e9238ef
File content as of revision 1:621c4e9238ef:
#ifndef UK_AC_HERTS_SMARTLAB_MGC3130_AirWheelDetection #define UK_AC_HERTS_SMARTLAB_MGC3130_AirWheelDetection #include "Parameter.h" class AirWheelDetection: public Parameter { public: AirWheelDetection(bool enable) { setRuntimeParameterID(0x90); if (enable) setArgument0(0x20); else setArgument0(0x00); setArgument1(0x20); } }; #endif