diff --git a/.devcontainer/devcontainer.json b/color_switcher/.devcontainer/devcontainer.json similarity index 100% rename from .devcontainer/devcontainer.json rename to color_switcher/.devcontainer/devcontainer.json diff --git a/.gitignore b/color_switcher/.gitignore similarity index 100% rename from .gitignore rename to color_switcher/.gitignore diff --git a/CLAUDE.md b/color_switcher/CLAUDE.md similarity index 100% rename from CLAUDE.md rename to color_switcher/CLAUDE.md diff --git a/Dockerfile b/color_switcher/Dockerfile similarity index 100% rename from Dockerfile rename to color_switcher/Dockerfile diff --git a/README.md b/color_switcher/README.md similarity index 100% rename from README.md rename to color_switcher/README.md diff --git a/build.sh b/color_switcher/build.sh similarity index 100% rename from build.sh rename to color_switcher/build.sh diff --git a/cmake/CMakeLists.txt b/color_switcher/cmake/CMakeLists.txt similarity index 100% rename from cmake/CMakeLists.txt rename to color_switcher/cmake/CMakeLists.txt diff --git a/cmake/cmake_config/mcu_config.cmake b/color_switcher/cmake/cmake_config/mcu_config.cmake similarity index 100% rename from cmake/cmake_config/mcu_config.cmake rename to color_switcher/cmake/cmake_config/mcu_config.cmake diff --git a/cmake/cmake_config/project_config.cmake b/color_switcher/cmake/cmake_config/project_config.cmake similarity index 100% rename from cmake/cmake_config/project_config.cmake rename to color_switcher/cmake/cmake_config/project_config.cmake diff --git a/cmake/cmake_config/sources_config.cmake b/color_switcher/cmake/cmake_config/sources_config.cmake similarity index 100% rename from cmake/cmake_config/sources_config.cmake rename to color_switcher/cmake/cmake_config/sources_config.cmake diff --git a/cmake/pico_sdk_import.cmake b/color_switcher/cmake/pico_sdk_import.cmake similarity index 100% rename from cmake/pico_sdk_import.cmake rename to color_switcher/cmake/pico_sdk_import.cmake diff --git a/docker-compose.yml b/color_switcher/docker-compose.yml similarity index 100% rename from docker-compose.yml rename to color_switcher/docker-compose.yml diff --git a/flash.sh b/color_switcher/flash.sh similarity index 100% rename from flash.sh rename to color_switcher/flash.sh diff --git a/src/APP_CLSW/cfg/APP_CLSW_cfg.c b/color_switcher/src/APP_CLSW/cfg/APP_CLSW_cfg.c similarity index 100% rename from src/APP_CLSW/cfg/APP_CLSW_cfg.c rename to color_switcher/src/APP_CLSW/cfg/APP_CLSW_cfg.c diff --git a/src/APP_CLSW/cfg/APP_CLSW_cfg.h b/color_switcher/src/APP_CLSW/cfg/APP_CLSW_cfg.h similarity index 100% rename from src/APP_CLSW/cfg/APP_CLSW_cfg.h rename to color_switcher/src/APP_CLSW/cfg/APP_CLSW_cfg.h diff --git a/src/APP_CLSW/inc/APP_CLSW.h b/color_switcher/src/APP_CLSW/inc/APP_CLSW.h similarity index 100% rename from src/APP_CLSW/inc/APP_CLSW.h rename to color_switcher/src/APP_CLSW/inc/APP_CLSW.h diff --git a/src/APP_CLSW/prg/APP_CLSW_prg.c b/color_switcher/src/APP_CLSW/prg/APP_CLSW_prg.c similarity index 100% rename from src/APP_CLSW/prg/APP_CLSW_prg.c rename to color_switcher/src/APP_CLSW/prg/APP_CLSW_prg.c diff --git a/src/APP_CLSW/prg/APP_CLSW_priv.h b/color_switcher/src/APP_CLSW/prg/APP_CLSW_priv.h similarity index 100% rename from src/APP_CLSW/prg/APP_CLSW_priv.h rename to color_switcher/src/APP_CLSW/prg/APP_CLSW_priv.h diff --git a/src/HAL_COM/cfg/HAL_COM_cfg.c b/color_switcher/src/HAL_COM/cfg/HAL_COM_cfg.c similarity index 100% rename from src/HAL_COM/cfg/HAL_COM_cfg.c rename to color_switcher/src/HAL_COM/cfg/HAL_COM_cfg.c diff --git a/src/HAL_COM/cfg/HAL_COM_cfg.h b/color_switcher/src/HAL_COM/cfg/HAL_COM_cfg.h similarity index 100% rename from src/HAL_COM/cfg/HAL_COM_cfg.h rename to color_switcher/src/HAL_COM/cfg/HAL_COM_cfg.h diff --git a/src/HAL_COM/inc/HAL_COM.h b/color_switcher/src/HAL_COM/inc/HAL_COM.h similarity index 100% rename from src/HAL_COM/inc/HAL_COM.h rename to color_switcher/src/HAL_COM/inc/HAL_COM.h diff --git a/src/HAL_COM/prg/HAL_COM_prg.c b/color_switcher/src/HAL_COM/prg/HAL_COM_prg.c similarity index 100% rename from src/HAL_COM/prg/HAL_COM_prg.c rename to color_switcher/src/HAL_COM/prg/HAL_COM_prg.c diff --git a/src/HAL_COM/prg/HAL_COM_priv.h b/color_switcher/src/HAL_COM/prg/HAL_COM_priv.h similarity index 100% rename from src/HAL_COM/prg/HAL_COM_priv.h rename to color_switcher/src/HAL_COM/prg/HAL_COM_priv.h diff --git a/src/HAL_LED/cfg/HAL_LED_cfg.c b/color_switcher/src/HAL_LED/cfg/HAL_LED_cfg.c similarity index 100% rename from src/HAL_LED/cfg/HAL_LED_cfg.c rename to color_switcher/src/HAL_LED/cfg/HAL_LED_cfg.c diff --git a/src/HAL_LED/cfg/HAL_LED_cfg.h b/color_switcher/src/HAL_LED/cfg/HAL_LED_cfg.h similarity index 100% rename from src/HAL_LED/cfg/HAL_LED_cfg.h rename to color_switcher/src/HAL_LED/cfg/HAL_LED_cfg.h diff --git a/src/HAL_LED/inc/HAL_LED.h b/color_switcher/src/HAL_LED/inc/HAL_LED.h similarity index 100% rename from src/HAL_LED/inc/HAL_LED.h rename to color_switcher/src/HAL_LED/inc/HAL_LED.h diff --git a/src/HAL_LED/prg/HAL_LED_prg.c b/color_switcher/src/HAL_LED/prg/HAL_LED_prg.c similarity index 100% rename from src/HAL_LED/prg/HAL_LED_prg.c rename to color_switcher/src/HAL_LED/prg/HAL_LED_prg.c diff --git a/src/HAL_LED/prg/HAL_LED_priv.h b/color_switcher/src/HAL_LED/prg/HAL_LED_priv.h similarity index 100% rename from src/HAL_LED/prg/HAL_LED_priv.h rename to color_switcher/src/HAL_LED/prg/HAL_LED_priv.h diff --git a/src/MCU_PIO/cfg/MCU_PIO_cfg.c b/color_switcher/src/MCU_PIO/cfg/MCU_PIO_cfg.c similarity index 100% rename from src/MCU_PIO/cfg/MCU_PIO_cfg.c rename to color_switcher/src/MCU_PIO/cfg/MCU_PIO_cfg.c diff --git a/src/MCU_PIO/cfg/MCU_PIO_cfg.h b/color_switcher/src/MCU_PIO/cfg/MCU_PIO_cfg.h similarity index 100% rename from src/MCU_PIO/cfg/MCU_PIO_cfg.h rename to color_switcher/src/MCU_PIO/cfg/MCU_PIO_cfg.h diff --git a/src/MCU_PIO/inc/MCU_PIO.h b/color_switcher/src/MCU_PIO/inc/MCU_PIO.h similarity index 100% rename from src/MCU_PIO/inc/MCU_PIO.h rename to color_switcher/src/MCU_PIO/inc/MCU_PIO.h diff --git a/src/MCU_PIO/pio/ws2812.pio b/color_switcher/src/MCU_PIO/pio/ws2812.pio similarity index 100% rename from src/MCU_PIO/pio/ws2812.pio rename to color_switcher/src/MCU_PIO/pio/ws2812.pio diff --git a/src/MCU_PIO/prg/MCU_PIO_prg.c b/color_switcher/src/MCU_PIO/prg/MCU_PIO_prg.c similarity index 100% rename from src/MCU_PIO/prg/MCU_PIO_prg.c rename to color_switcher/src/MCU_PIO/prg/MCU_PIO_prg.c diff --git a/src/MCU_PIO/prg/MCU_PIO_priv.h b/color_switcher/src/MCU_PIO/prg/MCU_PIO_priv.h similarity index 100% rename from src/MCU_PIO/prg/MCU_PIO_priv.h rename to color_switcher/src/MCU_PIO/prg/MCU_PIO_priv.h diff --git a/src/MCU_UART/cfg/MCU_UART_cfg.c b/color_switcher/src/MCU_UART/cfg/MCU_UART_cfg.c similarity index 100% rename from src/MCU_UART/cfg/MCU_UART_cfg.c rename to color_switcher/src/MCU_UART/cfg/MCU_UART_cfg.c diff --git a/src/MCU_UART/cfg/MCU_UART_cfg.h b/color_switcher/src/MCU_UART/cfg/MCU_UART_cfg.h similarity index 100% rename from src/MCU_UART/cfg/MCU_UART_cfg.h rename to color_switcher/src/MCU_UART/cfg/MCU_UART_cfg.h diff --git a/src/MCU_UART/inc/MCU_UART.h b/color_switcher/src/MCU_UART/inc/MCU_UART.h similarity index 100% rename from src/MCU_UART/inc/MCU_UART.h rename to color_switcher/src/MCU_UART/inc/MCU_UART.h diff --git a/src/MCU_UART/prg/MCU_UART_prg.c b/color_switcher/src/MCU_UART/prg/MCU_UART_prg.c similarity index 100% rename from src/MCU_UART/prg/MCU_UART_prg.c rename to color_switcher/src/MCU_UART/prg/MCU_UART_prg.c diff --git a/src/MCU_UART/prg/MCU_UART_priv.h b/color_switcher/src/MCU_UART/prg/MCU_UART_priv.h similarity index 100% rename from src/MCU_UART/prg/MCU_UART_priv.h rename to color_switcher/src/MCU_UART/prg/MCU_UART_priv.h diff --git a/src/MCU_USB/cfg/MCU_USB_cfg.c b/color_switcher/src/MCU_USB/cfg/MCU_USB_cfg.c similarity index 100% rename from src/MCU_USB/cfg/MCU_USB_cfg.c rename to color_switcher/src/MCU_USB/cfg/MCU_USB_cfg.c diff --git a/src/MCU_USB/cfg/MCU_USB_cfg.h b/color_switcher/src/MCU_USB/cfg/MCU_USB_cfg.h similarity index 100% rename from src/MCU_USB/cfg/MCU_USB_cfg.h rename to color_switcher/src/MCU_USB/cfg/MCU_USB_cfg.h diff --git a/src/MCU_USB/inc/MCU_USB.h b/color_switcher/src/MCU_USB/inc/MCU_USB.h similarity index 100% rename from src/MCU_USB/inc/MCU_USB.h rename to color_switcher/src/MCU_USB/inc/MCU_USB.h diff --git a/src/MCU_USB/prg/MCU_USB_prg.c b/color_switcher/src/MCU_USB/prg/MCU_USB_prg.c similarity index 100% rename from src/MCU_USB/prg/MCU_USB_prg.c rename to color_switcher/src/MCU_USB/prg/MCU_USB_prg.c diff --git a/src/MCU_USB/prg/MCU_USB_priv.h b/color_switcher/src/MCU_USB/prg/MCU_USB_priv.h similarity index 100% rename from src/MCU_USB/prg/MCU_USB_priv.h rename to color_switcher/src/MCU_USB/prg/MCU_USB_priv.h diff --git a/src/STD_TYPES/inc/STD_TYPES.h b/color_switcher/src/STD_TYPES/inc/STD_TYPES.h similarity index 100% rename from src/STD_TYPES/inc/STD_TYPES.h rename to color_switcher/src/STD_TYPES/inc/STD_TYPES.h diff --git a/src/SYS_ECU/cfg/SYS_ECU_cfg b/color_switcher/src/SYS_ECU/cfg/SYS_ECU_cfg similarity index 100% rename from src/SYS_ECU/cfg/SYS_ECU_cfg rename to color_switcher/src/SYS_ECU/cfg/SYS_ECU_cfg diff --git a/src/SYS_ECU/inc/SYS_ECU.h b/color_switcher/src/SYS_ECU/inc/SYS_ECU.h similarity index 100% rename from src/SYS_ECU/inc/SYS_ECU.h rename to color_switcher/src/SYS_ECU/inc/SYS_ECU.h diff --git a/src/SYS_ECU/prg/SYS_ECU.c b/color_switcher/src/SYS_ECU/prg/SYS_ECU.c similarity index 100% rename from src/SYS_ECU/prg/SYS_ECU.c rename to color_switcher/src/SYS_ECU/prg/SYS_ECU.c