├── .github └── workflows │ └── dotnetcore.yml ├── .gitignore ├── CONTRIBUTING.md ├── ChromaSDK ├── ChromaSDK.cs └── ChromaSDK.csproj ├── LICENSE ├── LedDashboard.sln ├── LedDashboard ├── Animations │ ├── Basic │ │ └── basic1.txt │ └── LeagueOfLegends │ │ ├── Champions │ │ ├── Ahri │ │ │ ├── e_cast.txt │ │ │ ├── q_end.txt │ │ │ ├── q_start.txt │ │ │ ├── r_left.txt │ │ │ ├── r_right.txt │ │ │ └── w_cast.txt │ │ ├── Azir │ │ │ ├── e_cast.txt │ │ │ ├── q_cast.txt │ │ │ ├── r_cast.txt │ │ │ └── w_cast.txt │ │ ├── Ezreal │ │ │ ├── e_cast.txt │ │ │ ├── q_cast.txt │ │ │ ├── r_channel.txt │ │ │ ├── r_launch.txt │ │ │ └── w_cast.txt │ │ ├── Jax │ │ │ ├── e_cast_loop.txt │ │ │ ├── e_recast_end.txt │ │ │ ├── q_cast.txt │ │ │ ├── w_cast_end.txt │ │ │ └── w_cast_loop.txt │ │ ├── TwistedFate │ │ │ ├── q_cast.txt │ │ │ ├── r_cast.txt │ │ │ ├── r_cast_line.txt │ │ │ └── w_loop.txt │ │ ├── Velkoz │ │ │ ├── q_recast.txt │ │ │ ├── q_start.txt │ │ │ ├── r_loop.txt │ │ │ ├── w_cast.txt │ │ │ └── w_close.txt │ │ └── Xerath │ │ │ ├── e_cast.txt │ │ │ ├── q_charge.txt │ │ │ ├── q_retract.txt │ │ │ ├── r_launch.txt │ │ │ ├── r_open.txt │ │ │ └── w_cast.txt │ │ └── Items │ │ ├── FarsightAlteration │ │ └── activation.txt │ │ ├── HeraldEye │ │ ├── anim_1.txt │ │ ├── anim_2.txt │ │ ├── anim_3.txt │ │ └── anim_4.txt │ │ ├── OracleLens │ │ └── activation.txt │ │ └── Redemption │ │ ├── impact.txt │ │ └── start.txt ├── App.config ├── AudioEngine.cs ├── ChromaAppInfo.xml ├── Gradient.cs ├── HSVColor.cs ├── KeyUtils.cs ├── KeyboardKey.cs ├── KeyboardLayout.cs ├── LEDModule.cs ├── Led.cs ├── LedDashboard.csproj ├── LedDashboard.csproj.old ├── LedManager.cs ├── Lib │ ├── CChromaEditorLibrary64.dll │ ├── RazerChroma.Net.dll │ ├── RazerChromaFrameEngine.dll │ └── Readme.txt ├── LightController.cs ├── LightControllerType.cs ├── LightZone.cs ├── Main.cs ├── MainUI.cs ├── Modules │ ├── BasicAnimation │ │ └── AnimationModule.cs │ ├── BlinkWhite │ │ └── BlinkWhiteModule.cs │ ├── Common │ │ ├── Animation.cs │ │ ├── AnimationLoader.cs │ │ └── KeyboardHookService.cs │ ├── FourierAudioLED │ │ ├── FFTUtil.cs │ │ └── FourierAudioLED.cs │ └── LeagueOfLegends │ │ ├── ChampionAttribute.cs │ │ ├── ChampionModule.cs │ │ ├── ChampionModules │ │ ├── AhriModule.cs │ │ ├── AzirModule.cs │ │ ├── Common │ │ │ └── AbilityModes.cs │ │ ├── EzrealModule.cs │ │ ├── JaxModule.cs │ │ ├── TwistedFateModule.cs │ │ ├── UdyrModule.cs │ │ ├── VelKozModule.cs │ │ └── XerathModule.cs │ │ ├── HUDModule.cs │ │ ├── ItemAttribute.cs │ │ ├── ItemCooldownController.cs │ │ ├── ItemModule.cs │ │ ├── ItemModules │ │ ├── FarsightAlterationModule.cs │ │ ├── HeraldEyeModule.cs │ │ ├── OracleLensModule.cs │ │ ├── RedemptionModule.cs │ │ └── WardingTotemModule.cs │ │ ├── ItemUtils.cs │ │ ├── LeagueOfLegendsModule.cs │ │ ├── Model │ │ ├── AbilityCooldown.cs │ │ ├── AbilityKey.cs │ │ ├── AbilityLoadout.cs │ │ ├── ActivePlayer.cs │ │ ├── Champion.cs │ │ ├── ChampionAttributes.cs │ │ ├── ChampionCosts.cs │ │ ├── ChampionStats.cs │ │ ├── Event.cs │ │ ├── GameState.cs │ │ ├── Item.cs │ │ ├── ItemAttributes.cs │ │ ├── ManaCost.cs │ │ ├── Rune.cs │ │ ├── Score.cs │ │ ├── SpellInformation.cs │ │ └── SummonerSpellLoadout.cs │ │ └── WebRequestUtil.cs ├── ProcessListenerService.cs ├── RazerChromaController.cs ├── Resources │ └── keyboardLayout.json ├── SACNController.cs ├── TaskRunner.cs ├── Utils.cs ├── UtilsLED.cs └── packages.config ├── README.md ├── repo ├── img-death.png ├── img-oom.png ├── led-designer.gif └── video-gif.gif └── riot.txt /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChromaSDK/ChromaSDK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/ChromaSDK/ChromaSDK.cs -------------------------------------------------------------------------------- /ChromaSDK/ChromaSDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/ChromaSDK/ChromaSDK.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LICENSE -------------------------------------------------------------------------------- /LedDashboard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard.sln -------------------------------------------------------------------------------- /LedDashboard/Animations/Basic/basic1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/Basic/basic1.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/e_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/e_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/q_end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/q_end.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/q_start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/q_start.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/r_left.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/r_left.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/r_right.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/r_right.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/w_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ahri/w_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Azir/e_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Azir/e_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Azir/q_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Azir/q_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Azir/r_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Azir/r_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Azir/w_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Azir/w_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/e_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/e_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/q_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/q_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/r_channel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/r_channel.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/r_launch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/r_launch.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/w_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Ezreal/w_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Jax/e_cast_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Jax/e_cast_loop.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Jax/e_recast_end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Jax/e_recast_end.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Jax/q_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Jax/q_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Jax/w_cast_end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Jax/w_cast_end.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Jax/w_cast_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Jax/w_cast_loop.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/q_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/q_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/r_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/r_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/r_cast_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/r_cast_line.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/w_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/TwistedFate/w_loop.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/q_recast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/q_recast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/q_start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/q_start.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/r_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/r_loop.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/w_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/w_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/w_close.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Velkoz/w_close.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/e_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/e_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/q_charge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/q_charge.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/q_retract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/q_retract.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/r_launch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/r_launch.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/r_open.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/r_open.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/w_cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Champions/Xerath/w_cast.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/FarsightAlteration/activation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/FarsightAlteration/activation.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_1.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_2.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_3.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/HeraldEye/anim_4.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/OracleLens/activation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/OracleLens/activation.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/Redemption/impact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/Redemption/impact.txt -------------------------------------------------------------------------------- /LedDashboard/Animations/LeagueOfLegends/Items/Redemption/start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Animations/LeagueOfLegends/Items/Redemption/start.txt -------------------------------------------------------------------------------- /LedDashboard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/App.config -------------------------------------------------------------------------------- /LedDashboard/AudioEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/AudioEngine.cs -------------------------------------------------------------------------------- /LedDashboard/ChromaAppInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/ChromaAppInfo.xml -------------------------------------------------------------------------------- /LedDashboard/Gradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Gradient.cs -------------------------------------------------------------------------------- /LedDashboard/HSVColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/HSVColor.cs -------------------------------------------------------------------------------- /LedDashboard/KeyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/KeyUtils.cs -------------------------------------------------------------------------------- /LedDashboard/KeyboardKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/KeyboardKey.cs -------------------------------------------------------------------------------- /LedDashboard/KeyboardLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/KeyboardLayout.cs -------------------------------------------------------------------------------- /LedDashboard/LEDModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LEDModule.cs -------------------------------------------------------------------------------- /LedDashboard/Led.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Led.cs -------------------------------------------------------------------------------- /LedDashboard/LedDashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LedDashboard.csproj -------------------------------------------------------------------------------- /LedDashboard/LedDashboard.csproj.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LedDashboard.csproj.old -------------------------------------------------------------------------------- /LedDashboard/LedManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LedManager.cs -------------------------------------------------------------------------------- /LedDashboard/Lib/CChromaEditorLibrary64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Lib/CChromaEditorLibrary64.dll -------------------------------------------------------------------------------- /LedDashboard/Lib/RazerChroma.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Lib/RazerChroma.Net.dll -------------------------------------------------------------------------------- /LedDashboard/Lib/RazerChromaFrameEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Lib/RazerChromaFrameEngine.dll -------------------------------------------------------------------------------- /LedDashboard/Lib/Readme.txt: -------------------------------------------------------------------------------- 1 | Place CChromaEditorLibrary64 inside bin folder to build from source -------------------------------------------------------------------------------- /LedDashboard/LightController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LightController.cs -------------------------------------------------------------------------------- /LedDashboard/LightControllerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LightControllerType.cs -------------------------------------------------------------------------------- /LedDashboard/LightZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/LightZone.cs -------------------------------------------------------------------------------- /LedDashboard/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Main.cs -------------------------------------------------------------------------------- /LedDashboard/MainUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/MainUI.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/BasicAnimation/AnimationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/BasicAnimation/AnimationModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/BlinkWhite/BlinkWhiteModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/BlinkWhite/BlinkWhiteModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/Common/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/Common/Animation.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/Common/AnimationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/Common/AnimationLoader.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/Common/KeyboardHookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/Common/KeyboardHookService.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/FourierAudioLED/FFTUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/FourierAudioLED/FFTUtil.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/FourierAudioLED/FourierAudioLED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/FourierAudioLED/FourierAudioLED.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionAttribute.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/AhriModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/AhriModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/AzirModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/AzirModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/Common/AbilityModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/Common/AbilityModes.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/EzrealModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/EzrealModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/JaxModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/JaxModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/TwistedFateModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/TwistedFateModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/UdyrModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/UdyrModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/VelKozModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/VelKozModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ChampionModules/XerathModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ChampionModules/XerathModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/HUDModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/HUDModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemAttribute.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemCooldownController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemCooldownController.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemModules/FarsightAlterationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemModules/FarsightAlterationModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemModules/HeraldEyeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemModules/HeraldEyeModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemModules/OracleLensModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemModules/OracleLensModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemModules/RedemptionModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemModules/RedemptionModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemModules/WardingTotemModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemModules/WardingTotemModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/ItemUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/ItemUtils.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/LeagueOfLegendsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/LeagueOfLegendsModule.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/AbilityCooldown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/AbilityCooldown.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/AbilityKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/AbilityKey.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/AbilityLoadout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/AbilityLoadout.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/ActivePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/ActivePlayer.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/Champion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/Champion.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/ChampionAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/ChampionAttributes.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/ChampionCosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/ChampionCosts.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/ChampionStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/ChampionStats.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/Event.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/GameState.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/Item.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/ItemAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/ItemAttributes.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/ManaCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/ManaCost.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/Rune.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/Rune.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/Score.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/SpellInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/SpellInformation.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/Model/SummonerSpellLoadout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/Model/SummonerSpellLoadout.cs -------------------------------------------------------------------------------- /LedDashboard/Modules/LeagueOfLegends/WebRequestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Modules/LeagueOfLegends/WebRequestUtil.cs -------------------------------------------------------------------------------- /LedDashboard/ProcessListenerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/ProcessListenerService.cs -------------------------------------------------------------------------------- /LedDashboard/RazerChromaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/RazerChromaController.cs -------------------------------------------------------------------------------- /LedDashboard/Resources/keyboardLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Resources/keyboardLayout.json -------------------------------------------------------------------------------- /LedDashboard/SACNController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/SACNController.cs -------------------------------------------------------------------------------- /LedDashboard/TaskRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/TaskRunner.cs -------------------------------------------------------------------------------- /LedDashboard/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/Utils.cs -------------------------------------------------------------------------------- /LedDashboard/UtilsLED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/UtilsLED.cs -------------------------------------------------------------------------------- /LedDashboard/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/LedDashboard/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/README.md -------------------------------------------------------------------------------- /repo/img-death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/repo/img-death.png -------------------------------------------------------------------------------- /repo/img-oom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/repo/img-oom.png -------------------------------------------------------------------------------- /repo/led-designer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/repo/led-designer.gif -------------------------------------------------------------------------------- /repo/video-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasdeory/firelight/HEAD/repo/video-gif.gif -------------------------------------------------------------------------------- /riot.txt: -------------------------------------------------------------------------------- 1 | 15461f24-5e09-4d85-a913-63f361679ce9 2 | --------------------------------------------------------------------------------