├── .gitignore ├── LICENSE ├── README.md ├── lib ├── bldc_uart │ ├── arduino_uart_wrapper.cpp │ ├── arduino_uart_wrapper.h │ ├── bldc_interface.c │ ├── bldc_interface.h │ ├── bldc_interface_uart.c │ ├── bldc_interface_uart.h │ ├── buffer.c │ ├── buffer.h │ ├── crc.c │ ├── crc.h │ ├── datatypes.h │ ├── packet.c │ ├── packet.h │ ├── vesc_uart.c │ └── vesc_uart.h ├── color_palletes │ ├── color_palletes.cpp │ └── color_palletes.h ├── color_shifting_logic │ ├── color_shifting.cpp │ └── color_shifting.h ├── colors_conversions │ ├── hsv_to_rgb.cpp │ └── hsv_to_rgb.h ├── led_strip_apa102 │ ├── led_strip_apa102.cpp │ └── led_strip_apa102.h └── vesc_standby_lights │ ├── breathing_lights.cpp │ ├── breathing_lights.h │ ├── cie1931.h │ ├── generate_random_hue.cpp │ └── generate_random_hue.h ├── src └── main.cpp ├── synchronized_lighting.jpg └── synchronized_lighting_new.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/README.md -------------------------------------------------------------------------------- /lib/bldc_uart/arduino_uart_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/arduino_uart_wrapper.cpp -------------------------------------------------------------------------------- /lib/bldc_uart/arduino_uart_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/arduino_uart_wrapper.h -------------------------------------------------------------------------------- /lib/bldc_uart/bldc_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/bldc_interface.c -------------------------------------------------------------------------------- /lib/bldc_uart/bldc_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/bldc_interface.h -------------------------------------------------------------------------------- /lib/bldc_uart/bldc_interface_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/bldc_interface_uart.c -------------------------------------------------------------------------------- /lib/bldc_uart/bldc_interface_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/bldc_interface_uart.h -------------------------------------------------------------------------------- /lib/bldc_uart/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/buffer.c -------------------------------------------------------------------------------- /lib/bldc_uart/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/buffer.h -------------------------------------------------------------------------------- /lib/bldc_uart/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/crc.c -------------------------------------------------------------------------------- /lib/bldc_uart/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/crc.h -------------------------------------------------------------------------------- /lib/bldc_uart/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/datatypes.h -------------------------------------------------------------------------------- /lib/bldc_uart/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/packet.c -------------------------------------------------------------------------------- /lib/bldc_uart/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/packet.h -------------------------------------------------------------------------------- /lib/bldc_uart/vesc_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/vesc_uart.c -------------------------------------------------------------------------------- /lib/bldc_uart/vesc_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/bldc_uart/vesc_uart.h -------------------------------------------------------------------------------- /lib/color_palletes/color_palletes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/color_palletes/color_palletes.cpp -------------------------------------------------------------------------------- /lib/color_palletes/color_palletes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/color_palletes/color_palletes.h -------------------------------------------------------------------------------- /lib/color_shifting_logic/color_shifting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/color_shifting_logic/color_shifting.cpp -------------------------------------------------------------------------------- /lib/color_shifting_logic/color_shifting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/color_shifting_logic/color_shifting.h -------------------------------------------------------------------------------- /lib/colors_conversions/hsv_to_rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/colors_conversions/hsv_to_rgb.cpp -------------------------------------------------------------------------------- /lib/colors_conversions/hsv_to_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/colors_conversions/hsv_to_rgb.h -------------------------------------------------------------------------------- /lib/led_strip_apa102/led_strip_apa102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/led_strip_apa102/led_strip_apa102.cpp -------------------------------------------------------------------------------- /lib/led_strip_apa102/led_strip_apa102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/led_strip_apa102/led_strip_apa102.h -------------------------------------------------------------------------------- /lib/vesc_standby_lights/breathing_lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/vesc_standby_lights/breathing_lights.cpp -------------------------------------------------------------------------------- /lib/vesc_standby_lights/breathing_lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/vesc_standby_lights/breathing_lights.h -------------------------------------------------------------------------------- /lib/vesc_standby_lights/cie1931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/vesc_standby_lights/cie1931.h -------------------------------------------------------------------------------- /lib/vesc_standby_lights/generate_random_hue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/vesc_standby_lights/generate_random_hue.cpp -------------------------------------------------------------------------------- /lib/vesc_standby_lights/generate_random_hue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/lib/vesc_standby_lights/generate_random_hue.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/src/main.cpp -------------------------------------------------------------------------------- /synchronized_lighting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/synchronized_lighting.jpg -------------------------------------------------------------------------------- /synchronized_lighting_new.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fadh3r/synchronized_lighting_for_vesc/HEAD/synchronized_lighting_new.zip --------------------------------------------------------------------------------