00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <stdio.h>
00028 #include <stdlib.h>
00029 #include <string.h>
00030 #include <unistd.h>
00031 #include <math.h>
00032
00033 #include "freenect_internal.h"
00034
00035
00036
00037 #define MAX_TILT_ANGLE 31
00038 #define MIN_TILT_ANGLE (-31)
00039
00040 #define GRAVITY 9.80665
00041
00042 int freenect_set_tilt_degs(freenect_device *dev, double angle)
00043 {
00044 int ret;
00045 uint8_t empty[0x1];
00046
00047 angle = (angle<MIN_TILT_ANGLE) ? MIN_TILT_ANGLE : ((angle>MAX_TILT_ANGLE) ? MAX_TILT_ANGLE : angle);
00048 angle = angle * 2;
00049
00050 ret = fnusb_control(&dev->usb_motor, 0x40, 0x31, (uint16_t)angle, 0x0, empty, 0x0);
00051 return ret;
00052 }
00053
00054 int freenect_set_led(freenect_device *dev, freenect_led_options option)
00055 {
00056 int ret;
00057 uint8_t empty[0x1];
00058 ret = fnusb_control(&dev->usb_motor, 0x40, 0x06, (uint16_t)option, 0x0, empty, 0x0);
00059 return ret;
00060 }
00061
00062 double freenect_get_tilt_degs(freenect_raw_device_state *state)
00063 {
00064 return ((double)state->tilt_angle) / 2.;
00065 }