├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── coverage.yml │ └── test.yml ├── .gitignore ├── .npmrc ├── .stylelintrc.json ├── LICENSE ├── README.md ├── crowdin.yml ├── docker ├── Dockerfile └── run.sh ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── maskable.png ├── og-image.png └── robots.txt ├── src ├── Components │ ├── App │ │ ├── images │ │ │ ├── CF_settings_black.svg │ │ │ ├── CF_settings_white.svg │ │ │ ├── icon_128.png │ │ │ ├── loading-bars.svg │ │ │ └── logo.svg │ │ ├── index.jsx │ │ └── style.scss │ ├── AppSettings │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ ├── settingsSlice.js │ │ └── style.scss │ ├── Buttonbar │ │ ├── GenericButton │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── style.scss │ ├── Changelog │ │ ├── Content │ │ │ └── index.jsx │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── style.scss │ ├── CookieConsent │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── cookieSlice.js │ │ └── index.jsx │ ├── FirmwareSelector │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── style.scss │ ├── Flash │ │ ├── CommonSettings │ │ │ ├── __tests__ │ │ │ │ └── index.test.jsx │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── CountWarning │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── Escs │ │ │ ├── Esc │ │ │ │ ├── SettingsHandler │ │ │ │ │ ├── Settings │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── index.test.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── style.scss │ │ │ ├── __tests__ │ │ │ │ └── index.test.jsx │ │ │ └── index.jsx │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── style.scss │ ├── Home │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── images │ │ │ └── bluejay_logo.png │ │ ├── index.jsx │ │ └── style.scss │ ├── Input │ │ ├── Checkbox │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── Info │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── LabeledSelect │ │ │ └── index.jsx │ │ ├── Number │ │ │ ├── __tests__ │ │ │ │ └── index.test.jsx │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── Select │ │ │ ├── __tests__ │ │ │ │ └── index.test.jsx │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ └── Slider │ │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ │ ├── index.jsx │ │ │ └── style.scss │ ├── LanguageSelection │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── languageSlice.js │ ├── Log │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── images │ │ │ └── icons │ │ │ │ └── scroll.svg │ │ ├── index.jsx │ │ ├── logSlice.js │ │ └── style.scss │ ├── MainContent │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── style.scss │ ├── MelodyEditor │ │ ├── MelodyElement │ │ │ ├── __tests__ │ │ │ │ ├── MockedAudioContext.js │ │ │ │ └── index.test.jsx │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ ├── melodiesSlice.js │ │ └── style.scss │ ├── MotorControl │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ └── style.scss │ ├── Overlay │ │ ├── index.jsx │ │ └── style.scss │ ├── PortPicker │ │ ├── CompatibilityWarning │ │ │ ├── index.jsx │ │ │ └── style.scss │ │ ├── __tests__ │ │ │ └── index.test.jsx │ │ ├── images │ │ │ └── icons │ │ │ │ ├── cf_icon_usb1_white.svg │ │ │ │ └── cf_icon_usb2_white.svg │ │ ├── index.jsx │ │ └── style.scss │ └── Statusbar │ │ ├── __tests__ │ │ └── index.test.jsx │ │ ├── index.jsx │ │ ├── statusSlice.js │ │ └── style.scss ├── Containers │ └── App │ │ ├── __tests__ │ │ └── index.test.jsx │ │ ├── configsSlice.js │ │ ├── escsSlice.js │ │ ├── index.jsx │ │ ├── mspSlice.js │ │ ├── serialSlice.js │ │ └── stateSlice.js ├── changelog.json ├── index.jsx ├── melodies.json ├── reportWebVitals.js ├── service-worker.js ├── serviceWorkerRegistration.js ├── settings.json ├── setupTests.js ├── sources │ ├── AM32 │ │ ├── __tests__ │ │ │ └── index.test.js │ │ ├── eeprom.js │ │ ├── escs.json │ │ ├── index.js │ │ ├── patterns.json │ │ └── settings.js │ ├── Blheli │ │ ├── Atmel │ │ │ ├── escs.json │ │ │ ├── index.js │ │ │ └── versions.json │ │ ├── Silabs │ │ │ ├── escs.json │ │ │ ├── index.js │ │ │ └── versions.json │ │ ├── eeprom.js │ │ ├── index.js │ │ └── settings.js │ ├── BlheliS │ │ ├── __tests__ │ │ │ └── index.test.js │ │ ├── escs.json │ │ ├── index.js │ │ ├── settings.js │ │ └── versions.json │ ├── Bluejay │ │ ├── __tests__ │ │ │ └── index.test.js │ │ ├── blacklist.json │ │ ├── eeprom.js │ │ ├── escs.json │ │ ├── index.js │ │ └── settings.js │ ├── GithubSource.js │ ├── Source.js │ ├── __tests__ │ │ └── Source.test.js │ └── index.js ├── store.js ├── translations │ ├── cs │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── de │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── en │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── es │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── fr │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── it │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── pl │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── ru │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── tr │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── uk │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ ├── zh-CN │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json │ └── zh-TW │ │ ├── common.json │ │ ├── groups.json │ │ ├── hints.json │ │ ├── log.json │ │ └── settings.json ├── utils │ ├── Errors.js │ ├── Fetch.js │ ├── FourWay.js │ ├── FourWayConstants.js │ ├── Hardware │ │ ├── Arm.js │ │ ├── Hardware.js │ │ ├── MCU.js │ │ ├── Silabs.js │ │ └── __tests__ │ │ │ └── MCU.test.js │ ├── LocalStorage.js │ ├── Msp.js │ ├── Serial.js │ ├── __tests__ │ │ ├── Errors.test.js │ │ ├── Fetch.test.js │ │ ├── FourWay.test.js │ │ ├── LocalStorage.test.js │ │ ├── Msp.test.js │ │ └── Serial.test.js │ └── helpers │ │ ├── Convert.js │ │ ├── Flash.js │ │ ├── FourWay.js │ │ ├── General.js │ │ ├── QueueProcessor.js │ │ ├── React.js │ │ ├── Settings.js │ │ └── __tests__ │ │ ├── Convert.test.js │ │ ├── Flash.test.js │ │ ├── FourWayHelper.test.js │ │ ├── General.test.js │ │ ├── QueueProcessor.test.js │ │ ├── React.test.jsx │ │ ├── Settings.test.js │ │ ├── bluejaySettingsArray.json │ │ ├── broken_checksum.hex │ │ ├── escs.json │ │ ├── invalid.hex │ │ └── valid.hex └── variables.scss └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/docker/run.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/maskable.png -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Components/App/images/CF_settings_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/images/CF_settings_black.svg -------------------------------------------------------------------------------- /src/Components/App/images/CF_settings_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/images/CF_settings_white.svg -------------------------------------------------------------------------------- /src/Components/App/images/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/images/icon_128.png -------------------------------------------------------------------------------- /src/Components/App/images/loading-bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/images/loading-bars.svg -------------------------------------------------------------------------------- /src/Components/App/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/images/logo.svg -------------------------------------------------------------------------------- /src/Components/App/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/index.jsx -------------------------------------------------------------------------------- /src/Components/App/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/App/style.scss -------------------------------------------------------------------------------- /src/Components/AppSettings/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/AppSettings/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/AppSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/AppSettings/index.jsx -------------------------------------------------------------------------------- /src/Components/AppSettings/settingsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/AppSettings/settingsSlice.js -------------------------------------------------------------------------------- /src/Components/AppSettings/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/AppSettings/style.scss -------------------------------------------------------------------------------- /src/Components/Buttonbar/GenericButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Buttonbar/GenericButton/index.jsx -------------------------------------------------------------------------------- /src/Components/Buttonbar/GenericButton/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Buttonbar/GenericButton/style.scss -------------------------------------------------------------------------------- /src/Components/Buttonbar/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Buttonbar/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Buttonbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Buttonbar/index.jsx -------------------------------------------------------------------------------- /src/Components/Buttonbar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Buttonbar/style.scss -------------------------------------------------------------------------------- /src/Components/Changelog/Content/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Changelog/Content/index.jsx -------------------------------------------------------------------------------- /src/Components/Changelog/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Changelog/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Changelog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Changelog/index.jsx -------------------------------------------------------------------------------- /src/Components/Changelog/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Changelog/style.scss -------------------------------------------------------------------------------- /src/Components/CookieConsent/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/CookieConsent/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/CookieConsent/cookieSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/CookieConsent/cookieSlice.js -------------------------------------------------------------------------------- /src/Components/CookieConsent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/CookieConsent/index.jsx -------------------------------------------------------------------------------- /src/Components/FirmwareSelector/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/FirmwareSelector/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/FirmwareSelector/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/FirmwareSelector/index.jsx -------------------------------------------------------------------------------- /src/Components/FirmwareSelector/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/FirmwareSelector/style.scss -------------------------------------------------------------------------------- /src/Components/Flash/CommonSettings/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/CommonSettings/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Flash/CommonSettings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/CommonSettings/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/CommonSettings/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/CommonSettings/style.scss -------------------------------------------------------------------------------- /src/Components/Flash/CountWarning/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/CountWarning/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/CountWarning/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/CountWarning/style.scss -------------------------------------------------------------------------------- /src/Components/Flash/Escs/Esc/SettingsHandler/Settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/Esc/SettingsHandler/Settings/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/Escs/Esc/SettingsHandler/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/Esc/SettingsHandler/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/Escs/Esc/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/Esc/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Flash/Escs/Esc/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/Esc/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/Escs/Esc/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/Esc/style.scss -------------------------------------------------------------------------------- /src/Components/Flash/Escs/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Flash/Escs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/Escs/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Flash/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/index.jsx -------------------------------------------------------------------------------- /src/Components/Flash/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Flash/style.scss -------------------------------------------------------------------------------- /src/Components/Home/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Home/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Home/images/bluejay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Home/images/bluejay_logo.png -------------------------------------------------------------------------------- /src/Components/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Home/index.jsx -------------------------------------------------------------------------------- /src/Components/Home/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Home/style.scss -------------------------------------------------------------------------------- /src/Components/Input/Checkbox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Checkbox/index.jsx -------------------------------------------------------------------------------- /src/Components/Input/Checkbox/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Checkbox/style.scss -------------------------------------------------------------------------------- /src/Components/Input/Info/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Info/index.jsx -------------------------------------------------------------------------------- /src/Components/Input/Info/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Info/style.scss -------------------------------------------------------------------------------- /src/Components/Input/LabeledSelect/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/LabeledSelect/index.jsx -------------------------------------------------------------------------------- /src/Components/Input/Number/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Number/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Input/Number/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Number/index.jsx -------------------------------------------------------------------------------- /src/Components/Input/Number/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Number/style.scss -------------------------------------------------------------------------------- /src/Components/Input/Select/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Select/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Input/Select/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Select/index.jsx -------------------------------------------------------------------------------- /src/Components/Input/Select/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Select/style.scss -------------------------------------------------------------------------------- /src/Components/Input/Slider/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Slider/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Input/Slider/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Slider/index.jsx -------------------------------------------------------------------------------- /src/Components/Input/Slider/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Input/Slider/style.scss -------------------------------------------------------------------------------- /src/Components/LanguageSelection/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/LanguageSelection/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/LanguageSelection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/LanguageSelection/index.jsx -------------------------------------------------------------------------------- /src/Components/LanguageSelection/languageSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/LanguageSelection/languageSlice.js -------------------------------------------------------------------------------- /src/Components/Log/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Log/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Log/images/icons/scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Log/images/icons/scroll.svg -------------------------------------------------------------------------------- /src/Components/Log/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Log/index.jsx -------------------------------------------------------------------------------- /src/Components/Log/logSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Log/logSlice.js -------------------------------------------------------------------------------- /src/Components/Log/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Log/style.scss -------------------------------------------------------------------------------- /src/Components/MainContent/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MainContent/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/MainContent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MainContent/index.jsx -------------------------------------------------------------------------------- /src/Components/MainContent/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MainContent/style.scss -------------------------------------------------------------------------------- /src/Components/MelodyEditor/MelodyElement/__tests__/MockedAudioContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/MelodyElement/__tests__/MockedAudioContext.js -------------------------------------------------------------------------------- /src/Components/MelodyEditor/MelodyElement/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/MelodyElement/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/MelodyEditor/MelodyElement/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/MelodyElement/index.jsx -------------------------------------------------------------------------------- /src/Components/MelodyEditor/MelodyElement/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/MelodyElement/style.scss -------------------------------------------------------------------------------- /src/Components/MelodyEditor/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/MelodyEditor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/index.jsx -------------------------------------------------------------------------------- /src/Components/MelodyEditor/melodiesSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/melodiesSlice.js -------------------------------------------------------------------------------- /src/Components/MelodyEditor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MelodyEditor/style.scss -------------------------------------------------------------------------------- /src/Components/MotorControl/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MotorControl/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/MotorControl/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MotorControl/index.jsx -------------------------------------------------------------------------------- /src/Components/MotorControl/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/MotorControl/style.scss -------------------------------------------------------------------------------- /src/Components/Overlay/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Overlay/index.jsx -------------------------------------------------------------------------------- /src/Components/Overlay/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Overlay/style.scss -------------------------------------------------------------------------------- /src/Components/PortPicker/CompatibilityWarning/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/CompatibilityWarning/index.jsx -------------------------------------------------------------------------------- /src/Components/PortPicker/CompatibilityWarning/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/CompatibilityWarning/style.scss -------------------------------------------------------------------------------- /src/Components/PortPicker/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/PortPicker/images/icons/cf_icon_usb1_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/images/icons/cf_icon_usb1_white.svg -------------------------------------------------------------------------------- /src/Components/PortPicker/images/icons/cf_icon_usb2_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/images/icons/cf_icon_usb2_white.svg -------------------------------------------------------------------------------- /src/Components/PortPicker/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/index.jsx -------------------------------------------------------------------------------- /src/Components/PortPicker/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/PortPicker/style.scss -------------------------------------------------------------------------------- /src/Components/Statusbar/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Statusbar/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Components/Statusbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Statusbar/index.jsx -------------------------------------------------------------------------------- /src/Components/Statusbar/statusSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Statusbar/statusSlice.js -------------------------------------------------------------------------------- /src/Components/Statusbar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Components/Statusbar/style.scss -------------------------------------------------------------------------------- /src/Containers/App/__tests__/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/__tests__/index.test.jsx -------------------------------------------------------------------------------- /src/Containers/App/configsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/configsSlice.js -------------------------------------------------------------------------------- /src/Containers/App/escsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/escsSlice.js -------------------------------------------------------------------------------- /src/Containers/App/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/index.jsx -------------------------------------------------------------------------------- /src/Containers/App/mspSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/mspSlice.js -------------------------------------------------------------------------------- /src/Containers/App/serialSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/serialSlice.js -------------------------------------------------------------------------------- /src/Containers/App/stateSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/Containers/App/stateSlice.js -------------------------------------------------------------------------------- /src/changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/changelog.json -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/melodies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/melodies.json -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /src/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/settings.json -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/sources/AM32/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/AM32/__tests__/index.test.js -------------------------------------------------------------------------------- /src/sources/AM32/eeprom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/AM32/eeprom.js -------------------------------------------------------------------------------- /src/sources/AM32/escs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/AM32/escs.json -------------------------------------------------------------------------------- /src/sources/AM32/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/AM32/index.js -------------------------------------------------------------------------------- /src/sources/AM32/patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/AM32/patterns.json -------------------------------------------------------------------------------- /src/sources/AM32/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/AM32/settings.js -------------------------------------------------------------------------------- /src/sources/Blheli/Atmel/escs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/Atmel/escs.json -------------------------------------------------------------------------------- /src/sources/Blheli/Atmel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/Atmel/index.js -------------------------------------------------------------------------------- /src/sources/Blheli/Atmel/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/Atmel/versions.json -------------------------------------------------------------------------------- /src/sources/Blheli/Silabs/escs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/Silabs/escs.json -------------------------------------------------------------------------------- /src/sources/Blheli/Silabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/Silabs/index.js -------------------------------------------------------------------------------- /src/sources/Blheli/Silabs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/Silabs/versions.json -------------------------------------------------------------------------------- /src/sources/Blheli/eeprom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/eeprom.js -------------------------------------------------------------------------------- /src/sources/Blheli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/index.js -------------------------------------------------------------------------------- /src/sources/Blheli/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Blheli/settings.js -------------------------------------------------------------------------------- /src/sources/BlheliS/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/BlheliS/__tests__/index.test.js -------------------------------------------------------------------------------- /src/sources/BlheliS/escs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/BlheliS/escs.json -------------------------------------------------------------------------------- /src/sources/BlheliS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/BlheliS/index.js -------------------------------------------------------------------------------- /src/sources/BlheliS/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/BlheliS/settings.js -------------------------------------------------------------------------------- /src/sources/BlheliS/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/BlheliS/versions.json -------------------------------------------------------------------------------- /src/sources/Bluejay/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Bluejay/__tests__/index.test.js -------------------------------------------------------------------------------- /src/sources/Bluejay/blacklist.json: -------------------------------------------------------------------------------- 1 | [ 2 | "v0.8" 3 | ] 4 | -------------------------------------------------------------------------------- /src/sources/Bluejay/eeprom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Bluejay/eeprom.js -------------------------------------------------------------------------------- /src/sources/Bluejay/escs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Bluejay/escs.json -------------------------------------------------------------------------------- /src/sources/Bluejay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Bluejay/index.js -------------------------------------------------------------------------------- /src/sources/Bluejay/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Bluejay/settings.js -------------------------------------------------------------------------------- /src/sources/GithubSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/GithubSource.js -------------------------------------------------------------------------------- /src/sources/Source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/Source.js -------------------------------------------------------------------------------- /src/sources/__tests__/Source.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/__tests__/Source.test.js -------------------------------------------------------------------------------- /src/sources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/sources/index.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/store.js -------------------------------------------------------------------------------- /src/translations/cs/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/cs/common.json -------------------------------------------------------------------------------- /src/translations/cs/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/cs/groups.json -------------------------------------------------------------------------------- /src/translations/cs/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/cs/hints.json -------------------------------------------------------------------------------- /src/translations/cs/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/cs/log.json -------------------------------------------------------------------------------- /src/translations/cs/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/cs/settings.json -------------------------------------------------------------------------------- /src/translations/de/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/de/common.json -------------------------------------------------------------------------------- /src/translations/de/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/de/groups.json -------------------------------------------------------------------------------- /src/translations/de/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/de/hints.json -------------------------------------------------------------------------------- /src/translations/de/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/de/log.json -------------------------------------------------------------------------------- /src/translations/de/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/de/settings.json -------------------------------------------------------------------------------- /src/translations/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/en/common.json -------------------------------------------------------------------------------- /src/translations/en/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/en/groups.json -------------------------------------------------------------------------------- /src/translations/en/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/en/hints.json -------------------------------------------------------------------------------- /src/translations/en/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/en/log.json -------------------------------------------------------------------------------- /src/translations/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/en/settings.json -------------------------------------------------------------------------------- /src/translations/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/es/common.json -------------------------------------------------------------------------------- /src/translations/es/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/es/groups.json -------------------------------------------------------------------------------- /src/translations/es/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/es/hints.json -------------------------------------------------------------------------------- /src/translations/es/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/es/log.json -------------------------------------------------------------------------------- /src/translations/es/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/es/settings.json -------------------------------------------------------------------------------- /src/translations/fr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/fr/common.json -------------------------------------------------------------------------------- /src/translations/fr/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/fr/groups.json -------------------------------------------------------------------------------- /src/translations/fr/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/fr/hints.json -------------------------------------------------------------------------------- /src/translations/fr/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/fr/log.json -------------------------------------------------------------------------------- /src/translations/fr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/fr/settings.json -------------------------------------------------------------------------------- /src/translations/it/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/it/common.json -------------------------------------------------------------------------------- /src/translations/it/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/it/groups.json -------------------------------------------------------------------------------- /src/translations/it/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/it/hints.json -------------------------------------------------------------------------------- /src/translations/it/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/it/log.json -------------------------------------------------------------------------------- /src/translations/it/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/it/settings.json -------------------------------------------------------------------------------- /src/translations/pl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/pl/common.json -------------------------------------------------------------------------------- /src/translations/pl/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/pl/groups.json -------------------------------------------------------------------------------- /src/translations/pl/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/pl/hints.json -------------------------------------------------------------------------------- /src/translations/pl/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/pl/log.json -------------------------------------------------------------------------------- /src/translations/pl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/pl/settings.json -------------------------------------------------------------------------------- /src/translations/ru/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/ru/common.json -------------------------------------------------------------------------------- /src/translations/ru/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/ru/groups.json -------------------------------------------------------------------------------- /src/translations/ru/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/ru/hints.json -------------------------------------------------------------------------------- /src/translations/ru/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/ru/log.json -------------------------------------------------------------------------------- /src/translations/ru/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/ru/settings.json -------------------------------------------------------------------------------- /src/translations/tr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/tr/common.json -------------------------------------------------------------------------------- /src/translations/tr/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/tr/groups.json -------------------------------------------------------------------------------- /src/translations/tr/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/tr/hints.json -------------------------------------------------------------------------------- /src/translations/tr/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/tr/log.json -------------------------------------------------------------------------------- /src/translations/tr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/tr/settings.json -------------------------------------------------------------------------------- /src/translations/uk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/uk/common.json -------------------------------------------------------------------------------- /src/translations/uk/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/uk/groups.json -------------------------------------------------------------------------------- /src/translations/uk/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/uk/hints.json -------------------------------------------------------------------------------- /src/translations/uk/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/uk/log.json -------------------------------------------------------------------------------- /src/translations/uk/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/uk/settings.json -------------------------------------------------------------------------------- /src/translations/zh-CN/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-CN/common.json -------------------------------------------------------------------------------- /src/translations/zh-CN/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-CN/groups.json -------------------------------------------------------------------------------- /src/translations/zh-CN/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-CN/hints.json -------------------------------------------------------------------------------- /src/translations/zh-CN/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-CN/log.json -------------------------------------------------------------------------------- /src/translations/zh-CN/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-CN/settings.json -------------------------------------------------------------------------------- /src/translations/zh-TW/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-TW/common.json -------------------------------------------------------------------------------- /src/translations/zh-TW/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-TW/groups.json -------------------------------------------------------------------------------- /src/translations/zh-TW/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-TW/hints.json -------------------------------------------------------------------------------- /src/translations/zh-TW/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-TW/log.json -------------------------------------------------------------------------------- /src/translations/zh-TW/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/translations/zh-TW/settings.json -------------------------------------------------------------------------------- /src/utils/Errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Errors.js -------------------------------------------------------------------------------- /src/utils/Fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Fetch.js -------------------------------------------------------------------------------- /src/utils/FourWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/FourWay.js -------------------------------------------------------------------------------- /src/utils/FourWayConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/FourWayConstants.js -------------------------------------------------------------------------------- /src/utils/Hardware/Arm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Hardware/Arm.js -------------------------------------------------------------------------------- /src/utils/Hardware/Hardware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Hardware/Hardware.js -------------------------------------------------------------------------------- /src/utils/Hardware/MCU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Hardware/MCU.js -------------------------------------------------------------------------------- /src/utils/Hardware/Silabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Hardware/Silabs.js -------------------------------------------------------------------------------- /src/utils/Hardware/__tests__/MCU.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Hardware/__tests__/MCU.test.js -------------------------------------------------------------------------------- /src/utils/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/LocalStorage.js -------------------------------------------------------------------------------- /src/utils/Msp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Msp.js -------------------------------------------------------------------------------- /src/utils/Serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/Serial.js -------------------------------------------------------------------------------- /src/utils/__tests__/Errors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/__tests__/Errors.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/Fetch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/__tests__/Fetch.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/FourWay.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/__tests__/FourWay.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/LocalStorage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/__tests__/LocalStorage.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/Msp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/__tests__/Msp.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/Serial.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/__tests__/Serial.test.js -------------------------------------------------------------------------------- /src/utils/helpers/Convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/Convert.js -------------------------------------------------------------------------------- /src/utils/helpers/Flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/Flash.js -------------------------------------------------------------------------------- /src/utils/helpers/FourWay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/FourWay.js -------------------------------------------------------------------------------- /src/utils/helpers/General.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/General.js -------------------------------------------------------------------------------- /src/utils/helpers/QueueProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/QueueProcessor.js -------------------------------------------------------------------------------- /src/utils/helpers/React.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/React.js -------------------------------------------------------------------------------- /src/utils/helpers/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/Settings.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/Convert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/Convert.test.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/Flash.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/Flash.test.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/FourWayHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/FourWayHelper.test.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/General.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/General.test.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/QueueProcessor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/QueueProcessor.test.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/React.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/React.test.jsx -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/Settings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/Settings.test.js -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/bluejaySettingsArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/bluejaySettingsArray.json -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/broken_checksum.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/broken_checksum.hex -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/escs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/escs.json -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/invalid.hex: -------------------------------------------------------------------------------- 1 | INVALID 2 | -------------------------------------------------------------------------------- /src/utils/helpers/__tests__/valid.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/utils/helpers/__tests__/valid.hex -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/src/variables.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylesuxx/esc-configurator/HEAD/yarn.lock --------------------------------------------------------------------------------