Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions VortexEngine/VortexEngine.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
<ClCompile Include="src\Menus\MainMenu.cpp" />
<ClCompile Include="src\Modes\DuoDefaultModes.cpp" />
<ClCompile Include="src\UPDI\updi.cpp" />
<ClCompile Include="src\Wireless\Bluetooth.cpp" />
<ClCompile Include="src\Wireless\IRReceiver.cpp" />
<ClCompile Include="src\Wireless\IRSender.cpp" />
<ClCompile Include="src\Leds\Leds.cpp" />
Expand Down Expand Up @@ -224,6 +225,7 @@
<ClInclude Include="src\Menus\MainMenu.h" />
<ClInclude Include="src\Modes\DuoDefaultModes.h" />
<ClInclude Include="src\UPDI\updi.h" />
<ClInclude Include="src\Wireless\Bluetooth.h" />
<ClInclude Include="src\Wireless\IRConfig.h" />
<ClInclude Include="src\Wireless\IRReceiver.h" />
<ClInclude Include="src\Wireless\IRSender.h" />
Expand Down
6 changes: 6 additions & 0 deletions VortexEngine/VortexEngine.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@
<ClCompile Include="src\Modes\DuoDefaultModes.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\Wireless\Bluetooth.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\VortexConfig.h">
Expand Down Expand Up @@ -575,5 +578,8 @@
<ClInclude Include="src\Modes\DuoDefaultModes.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\Wireless\Bluetooth.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions VortexEngine/src/Menus/MainMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ void MainMenu::show()
uint8_t hue = 0;
uint32_t now = Time::getCurtime();
MAP_FOREACH_LED(MAP_OUTER_RING) {
Leds::breatheIndex(pos, hue, (now / 2), 8, 255, 180);
Leds::breatheIndex(pos, hue, (now / 2), 8, 255, 50);
hue += (255 / (LED_COUNT / 2));
}
hue = 0;
MAP_FOREACH_LED(MAP_INNER_RING) {
Leds::breatheIndex(pos, hue, (now / 2), 8, 255, 180);
Leds::breatheIndex(pos, hue, (now / 2), 8, 255, 50);
hue += (255 / (LED_COUNT / 2));
}
Leds::blinkIndex((LedPos)m_curSelection);
Expand Down
Loading