├── .gitignore ├── LICENSE ├── README.md └── res ├── MainControl ├── MainControl_cleffa.html ├── MainControl_corsola.html ├── MainControl_donphan.html ├── MainControl_espeon.html ├── MainControl_flaaffy.html ├── MainControl_nothing_connected.html ├── MainControl_one.html ├── MainControl_sticks.html ├── MainControl_two.html └── MainControl_twos.html ├── assets ├── Image_1280x1020-4_cfd24e41-e162-4bf8-8833-0ac601b6954b_1472x.webp ├── LOGO.webp ├── anc_off_icon.svg ├── anc_on_icon.svg ├── anc_transparent_icon.svg ├── arrow_right.svg ├── back.svg ├── crobat_black.webp ├── crobat_orange.webp ├── crobat_white.webp ├── donphan_black_case.webp ├── donphan_black_left.webp ├── donphan_black_right.webp ├── donphan_orange_case.webp ├── donphan_orange_left.webp ├── donphan_orange_right.webp ├── donphan_white_case.webp ├── donphan_white_left.webp ├── donphan_white_right.webp ├── ear_bass_enhance_off.svg ├── ear_bass_enhance_on.svg ├── ear_color_black_case.webp ├── ear_color_black_left.webp ├── ear_color_black_right.webp ├── ear_color_white_case.webp ├── ear_color_white_left.webp ├── ear_color_white_right.webp ├── ear_color_yellow_case.webp ├── ear_color_yellow_left.webp ├── ear_color_yellow_right.webp ├── ear_corsola_black_case.webp ├── ear_corsola_black_left.webp ├── ear_corsola_black_right.webp ├── ear_corsola_orange_case.webp ├── ear_corsola_orange_left.webp ├── ear_corsola_orange_right.webp ├── ear_corsola_white_case.webp ├── ear_corsola_white_left.webp ├── ear_corsola_white_right.webp ├── ear_one_black_case.webp ├── ear_one_black_duo.webp ├── ear_one_black_left.webp ├── ear_one_black_right.webp ├── ear_one_white_case.webp ├── ear_one_white_duo.webp ├── ear_one_white_left.webp ├── ear_one_white_right.webp ├── ear_stick_case_full.webp ├── ear_stick_case_none.webp ├── ear_stick_left.webp ├── ear_stick_right.webp ├── ear_stick_test_introduce.webp ├── ear_stick_white_duo.webp ├── ear_two_black_case.webp ├── ear_two_black_duo.webp ├── ear_two_black_left.webp ├── ear_two_black_right.webp ├── ear_two_white_case.webp ├── ear_two_white_duo.webp ├── ear_two_white_left.webp ├── ear_two_white_right.webp ├── ear_twos_black_case.webp ├── ear_twos_black_left.webp ├── ear_twos_black_right.webp ├── ear_twos_white_case.webp ├── ear_twos_white_left.webp ├── ear_twos_white_right.webp ├── espeon_black_case.webp ├── espeon_black_left.webp ├── espeon_black_right.webp ├── espeon_blue_case.webp ├── espeon_blue_left.webp ├── espeon_blue_right.webp ├── espeon_orange_case.webp ├── espeon_orange_left.webp ├── espeon_orange_right.webp ├── espeon_white_case.webp ├── espeon_white_left.webp ├── espeon_white_right.webp ├── flaffy_white_case.webp ├── flaffy_white_left.webp ├── flaffy_white_right.webp ├── gradient_image.webp ├── left-arrow-svgrepo-com.svg ├── loading.svg ├── nothing_connected.webp ├── nothing_connected2.webp ├── off_black.webp ├── off_white.webp ├── on_black.webp ├── on_white.webp ├── transparent_black.webp └── transparent_white.webp ├── favicon.ico ├── fonts ├── SpaceGrotesk-Light.otf ├── lettera_monoll_light.otf ├── lettera_monoll_medium.otf ├── lettera_monoll_regular.otf ├── manrope_medium.otf ├── manrope_regular.otf ├── manrope_semi_bold.otf ├── ndot_55.otf ├── ndot_55_bold.otf ├── ndot_57.otf ├── roboto_light.ttf ├── roboto_medium.ttf ├── roboto_medium_numbers.ttf ├── roboto_regular.ttf ├── semi_mono_medium_trial.otf ├── space_grotesk_bold.ttf ├── space_grotesk_light.ttf ├── space_grotesk_medium.ttf ├── space_grotesk_regular.ttf └── space_grotesk_semibold.ttf ├── global.css ├── icons ├── 1024x1024.png ├── 128x128.png ├── 16x16.png ├── 24x24.png ├── 256x256.png ├── 32x32.png ├── 48x48.png ├── 512x512.png └── 64x64.png ├── index.html ├── js ├── bluetooth_socket.js ├── cleffa.js ├── control.js ├── corsola.js ├── donphan.js ├── eq_cleffa.js ├── eq_corsola.js ├── eq_donphan.js ├── eq_espeon.js ├── eq_one.js ├── eq_sticks.js ├── eq_two.js ├── espeon.js ├── flaaffy.js ├── nothing_connected.js ├── one.js ├── sticks.js ├── transitions.js ├── two.js └── twos.js └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/README.md -------------------------------------------------------------------------------- /res/MainControl/MainControl_cleffa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_cleffa.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_corsola.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_corsola.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_donphan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_donphan.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_espeon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_espeon.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_flaaffy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_flaaffy.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_nothing_connected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_nothing_connected.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_one.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_sticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_sticks.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_two.html -------------------------------------------------------------------------------- /res/MainControl/MainControl_twos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/MainControl/MainControl_twos.html -------------------------------------------------------------------------------- /res/assets/Image_1280x1020-4_cfd24e41-e162-4bf8-8833-0ac601b6954b_1472x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/Image_1280x1020-4_cfd24e41-e162-4bf8-8833-0ac601b6954b_1472x.webp -------------------------------------------------------------------------------- /res/assets/LOGO.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/LOGO.webp -------------------------------------------------------------------------------- /res/assets/anc_off_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/anc_off_icon.svg -------------------------------------------------------------------------------- /res/assets/anc_on_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/anc_on_icon.svg -------------------------------------------------------------------------------- /res/assets/anc_transparent_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/anc_transparent_icon.svg -------------------------------------------------------------------------------- /res/assets/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/arrow_right.svg -------------------------------------------------------------------------------- /res/assets/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/back.svg -------------------------------------------------------------------------------- /res/assets/crobat_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/crobat_black.webp -------------------------------------------------------------------------------- /res/assets/crobat_orange.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/crobat_orange.webp -------------------------------------------------------------------------------- /res/assets/crobat_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/crobat_white.webp -------------------------------------------------------------------------------- /res/assets/donphan_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_black_case.webp -------------------------------------------------------------------------------- /res/assets/donphan_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_black_left.webp -------------------------------------------------------------------------------- /res/assets/donphan_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_black_right.webp -------------------------------------------------------------------------------- /res/assets/donphan_orange_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_orange_case.webp -------------------------------------------------------------------------------- /res/assets/donphan_orange_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_orange_left.webp -------------------------------------------------------------------------------- /res/assets/donphan_orange_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_orange_right.webp -------------------------------------------------------------------------------- /res/assets/donphan_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_white_case.webp -------------------------------------------------------------------------------- /res/assets/donphan_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_white_left.webp -------------------------------------------------------------------------------- /res/assets/donphan_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/donphan_white_right.webp -------------------------------------------------------------------------------- /res/assets/ear_bass_enhance_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_bass_enhance_off.svg -------------------------------------------------------------------------------- /res/assets/ear_bass_enhance_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_bass_enhance_on.svg -------------------------------------------------------------------------------- /res/assets/ear_color_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_black_case.webp -------------------------------------------------------------------------------- /res/assets/ear_color_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_black_left.webp -------------------------------------------------------------------------------- /res/assets/ear_color_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_black_right.webp -------------------------------------------------------------------------------- /res/assets/ear_color_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_white_case.webp -------------------------------------------------------------------------------- /res/assets/ear_color_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_white_left.webp -------------------------------------------------------------------------------- /res/assets/ear_color_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_white_right.webp -------------------------------------------------------------------------------- /res/assets/ear_color_yellow_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_yellow_case.webp -------------------------------------------------------------------------------- /res/assets/ear_color_yellow_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_yellow_left.webp -------------------------------------------------------------------------------- /res/assets/ear_color_yellow_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_color_yellow_right.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_black_case.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_black_left.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_black_right.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_orange_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_orange_case.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_orange_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_orange_left.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_orange_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_orange_right.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_white_case.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_white_left.webp -------------------------------------------------------------------------------- /res/assets/ear_corsola_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_corsola_white_right.webp -------------------------------------------------------------------------------- /res/assets/ear_one_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_black_case.webp -------------------------------------------------------------------------------- /res/assets/ear_one_black_duo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_black_duo.webp -------------------------------------------------------------------------------- /res/assets/ear_one_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_black_left.webp -------------------------------------------------------------------------------- /res/assets/ear_one_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_black_right.webp -------------------------------------------------------------------------------- /res/assets/ear_one_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_white_case.webp -------------------------------------------------------------------------------- /res/assets/ear_one_white_duo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_white_duo.webp -------------------------------------------------------------------------------- /res/assets/ear_one_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_white_left.webp -------------------------------------------------------------------------------- /res/assets/ear_one_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_one_white_right.webp -------------------------------------------------------------------------------- /res/assets/ear_stick_case_full.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_stick_case_full.webp -------------------------------------------------------------------------------- /res/assets/ear_stick_case_none.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_stick_case_none.webp -------------------------------------------------------------------------------- /res/assets/ear_stick_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_stick_left.webp -------------------------------------------------------------------------------- /res/assets/ear_stick_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_stick_right.webp -------------------------------------------------------------------------------- /res/assets/ear_stick_test_introduce.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_stick_test_introduce.webp -------------------------------------------------------------------------------- /res/assets/ear_stick_white_duo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_stick_white_duo.webp -------------------------------------------------------------------------------- /res/assets/ear_two_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_black_case.webp -------------------------------------------------------------------------------- /res/assets/ear_two_black_duo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_black_duo.webp -------------------------------------------------------------------------------- /res/assets/ear_two_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_black_left.webp -------------------------------------------------------------------------------- /res/assets/ear_two_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_black_right.webp -------------------------------------------------------------------------------- /res/assets/ear_two_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_white_case.webp -------------------------------------------------------------------------------- /res/assets/ear_two_white_duo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_white_duo.webp -------------------------------------------------------------------------------- /res/assets/ear_two_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_white_left.webp -------------------------------------------------------------------------------- /res/assets/ear_two_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_two_white_right.webp -------------------------------------------------------------------------------- /res/assets/ear_twos_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_twos_black_case.webp -------------------------------------------------------------------------------- /res/assets/ear_twos_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_twos_black_left.webp -------------------------------------------------------------------------------- /res/assets/ear_twos_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_twos_black_right.webp -------------------------------------------------------------------------------- /res/assets/ear_twos_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_twos_white_case.webp -------------------------------------------------------------------------------- /res/assets/ear_twos_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_twos_white_left.webp -------------------------------------------------------------------------------- /res/assets/ear_twos_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/ear_twos_white_right.webp -------------------------------------------------------------------------------- /res/assets/espeon_black_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_black_case.webp -------------------------------------------------------------------------------- /res/assets/espeon_black_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_black_left.webp -------------------------------------------------------------------------------- /res/assets/espeon_black_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_black_right.webp -------------------------------------------------------------------------------- /res/assets/espeon_blue_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_blue_case.webp -------------------------------------------------------------------------------- /res/assets/espeon_blue_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_blue_left.webp -------------------------------------------------------------------------------- /res/assets/espeon_blue_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_blue_right.webp -------------------------------------------------------------------------------- /res/assets/espeon_orange_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_orange_case.webp -------------------------------------------------------------------------------- /res/assets/espeon_orange_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_orange_left.webp -------------------------------------------------------------------------------- /res/assets/espeon_orange_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_orange_right.webp -------------------------------------------------------------------------------- /res/assets/espeon_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_white_case.webp -------------------------------------------------------------------------------- /res/assets/espeon_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_white_left.webp -------------------------------------------------------------------------------- /res/assets/espeon_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/espeon_white_right.webp -------------------------------------------------------------------------------- /res/assets/flaffy_white_case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/flaffy_white_case.webp -------------------------------------------------------------------------------- /res/assets/flaffy_white_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/flaffy_white_left.webp -------------------------------------------------------------------------------- /res/assets/flaffy_white_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/flaffy_white_right.webp -------------------------------------------------------------------------------- /res/assets/gradient_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/gradient_image.webp -------------------------------------------------------------------------------- /res/assets/left-arrow-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/left-arrow-svgrepo-com.svg -------------------------------------------------------------------------------- /res/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/loading.svg -------------------------------------------------------------------------------- /res/assets/nothing_connected.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/nothing_connected.webp -------------------------------------------------------------------------------- /res/assets/nothing_connected2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/nothing_connected2.webp -------------------------------------------------------------------------------- /res/assets/off_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/off_black.webp -------------------------------------------------------------------------------- /res/assets/off_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/off_white.webp -------------------------------------------------------------------------------- /res/assets/on_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/on_black.webp -------------------------------------------------------------------------------- /res/assets/on_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/on_white.webp -------------------------------------------------------------------------------- /res/assets/transparent_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/transparent_black.webp -------------------------------------------------------------------------------- /res/assets/transparent_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/assets/transparent_white.webp -------------------------------------------------------------------------------- /res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/favicon.ico -------------------------------------------------------------------------------- /res/fonts/SpaceGrotesk-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/SpaceGrotesk-Light.otf -------------------------------------------------------------------------------- /res/fonts/lettera_monoll_light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/lettera_monoll_light.otf -------------------------------------------------------------------------------- /res/fonts/lettera_monoll_medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/lettera_monoll_medium.otf -------------------------------------------------------------------------------- /res/fonts/lettera_monoll_regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/lettera_monoll_regular.otf -------------------------------------------------------------------------------- /res/fonts/manrope_medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/manrope_medium.otf -------------------------------------------------------------------------------- /res/fonts/manrope_regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/manrope_regular.otf -------------------------------------------------------------------------------- /res/fonts/manrope_semi_bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/manrope_semi_bold.otf -------------------------------------------------------------------------------- /res/fonts/ndot_55.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/ndot_55.otf -------------------------------------------------------------------------------- /res/fonts/ndot_55_bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/ndot_55_bold.otf -------------------------------------------------------------------------------- /res/fonts/ndot_57.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/ndot_57.otf -------------------------------------------------------------------------------- /res/fonts/roboto_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/roboto_light.ttf -------------------------------------------------------------------------------- /res/fonts/roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/roboto_medium.ttf -------------------------------------------------------------------------------- /res/fonts/roboto_medium_numbers.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/roboto_medium_numbers.ttf -------------------------------------------------------------------------------- /res/fonts/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/roboto_regular.ttf -------------------------------------------------------------------------------- /res/fonts/semi_mono_medium_trial.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/semi_mono_medium_trial.otf -------------------------------------------------------------------------------- /res/fonts/space_grotesk_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/space_grotesk_bold.ttf -------------------------------------------------------------------------------- /res/fonts/space_grotesk_light.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/fonts/space_grotesk_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/space_grotesk_medium.ttf -------------------------------------------------------------------------------- /res/fonts/space_grotesk_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/space_grotesk_regular.ttf -------------------------------------------------------------------------------- /res/fonts/space_grotesk_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/fonts/space_grotesk_semibold.ttf -------------------------------------------------------------------------------- /res/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/global.css -------------------------------------------------------------------------------- /res/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/1024x1024.png -------------------------------------------------------------------------------- /res/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/128x128.png -------------------------------------------------------------------------------- /res/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/16x16.png -------------------------------------------------------------------------------- /res/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/24x24.png -------------------------------------------------------------------------------- /res/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/256x256.png -------------------------------------------------------------------------------- /res/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/32x32.png -------------------------------------------------------------------------------- /res/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/48x48.png -------------------------------------------------------------------------------- /res/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/512x512.png -------------------------------------------------------------------------------- /res/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/icons/64x64.png -------------------------------------------------------------------------------- /res/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/index.html -------------------------------------------------------------------------------- /res/js/bluetooth_socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/bluetooth_socket.js -------------------------------------------------------------------------------- /res/js/cleffa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/cleffa.js -------------------------------------------------------------------------------- /res/js/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/control.js -------------------------------------------------------------------------------- /res/js/corsola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/corsola.js -------------------------------------------------------------------------------- /res/js/donphan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/donphan.js -------------------------------------------------------------------------------- /res/js/eq_cleffa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_cleffa.js -------------------------------------------------------------------------------- /res/js/eq_corsola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_corsola.js -------------------------------------------------------------------------------- /res/js/eq_donphan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_donphan.js -------------------------------------------------------------------------------- /res/js/eq_espeon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_espeon.js -------------------------------------------------------------------------------- /res/js/eq_one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_one.js -------------------------------------------------------------------------------- /res/js/eq_sticks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_sticks.js -------------------------------------------------------------------------------- /res/js/eq_two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/eq_two.js -------------------------------------------------------------------------------- /res/js/espeon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/espeon.js -------------------------------------------------------------------------------- /res/js/flaaffy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/flaaffy.js -------------------------------------------------------------------------------- /res/js/nothing_connected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/nothing_connected.js -------------------------------------------------------------------------------- /res/js/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/one.js -------------------------------------------------------------------------------- /res/js/sticks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/sticks.js -------------------------------------------------------------------------------- /res/js/transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/transitions.js -------------------------------------------------------------------------------- /res/js/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/two.js -------------------------------------------------------------------------------- /res/js/twos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/js/twos.js -------------------------------------------------------------------------------- /res/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiance-project/ear-web/HEAD/res/manifest.json --------------------------------------------------------------------------------