Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: L152RE_USBDevice STM32_USB48MHz Watchdog mbed
LightSaber.h
- Committer:
- nightmechanic
- Date:
- 2016-03-26
- Revision:
- 4:7e4bb0c29d3b
- Parent:
- 3:0c2d9355ed8c
File content as of revision 4:7e4bb0c29d3b:
//#define __SERIAL_DEBUG__ #define NUM_OF_COLORS 4 #define LED_PWM_PERIOD 5 //msec #define NORM_LIGHT_INTENS (15*LED_PWM_PERIOD * 1000)/100 //in usec = 30% of LED_PWM_PERIOD #define LOW_LIGHT_INTENS (7*LED_PWM_PERIOD * 1000)/100 //in usec = 15% of LED_PWM_PERIOD #define BUTTON_PRESS_THR 5 #define BUTTON_RELEASE_THR 10 #define VBAT_AVG_LEN 8 #define VBAT_THR 34000 //about 3.15V per cell #define VBAT_HYST 1000 #define MPU_BUFFER_LEN 100 #define MPU_DATA_STABLE 1000 #define MPU_AVG_LEN 16 #define ACCEL_THR 4000 //1g #define YPR_THR 450 //45 degrees #define TRUE true #define FALSE false typedef enum { BLUE = 0, GREEN, PURPLE, RED } color_type; // function prototypes bool motion_sensor_init(); bool motion_update_data(MPU_data_type * new_data); void mpu_calc_avg(MPU_data_type * MPU_data,int mpu_pointer, MPU_data_type * MPU_avg_data, int avg_len); void init_color(int *new_color, int pulsewidth); void change_color(color_type new_color, int new_pulsewidth); bool sound_player(const int sound_table[][6], int table_lines);