Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: c-base/roboclub-lighting
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b9659d8e43da98eaf6df917fb6339a774dd2a78b
Choose a base ref
..
head repository: c-base/roboclub-lighting
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9483ce42e1e135aa29d509d71019db571901a477
Choose a head ref
Showing with 4,143 additions and 1,325 deletions.
  1. +8 −0 .editorconfig
  2. +1 −0 .stignore
  3. +1,038 −568 Cargo.lock
  4. +1 −0 Cargo.toml
  5. +1 −1 _pkg/stm32l4xx-hal
  6. +1 −1 _pkg/visualizer2
  7. 0 build-raspi.sh
  8. +3 −0 frontend/.gitignore
  9. +39 −0 frontend/package.json
  10. +13 −0 frontend/public/app.module.css
  11. +75 −0 frontend/public/app.tsx
  12. +34 −0 frontend/public/components/effect-settings.module.css
  13. +159 −0 frontend/public/components/effect-settings.tsx
  14. +59 −0 frontend/public/components/sidebar.module.css
  15. +37 −0 frontend/public/components/sidebar.tsx
  16. BIN frontend/public/fonts/Atkinson-Hyperlegible-Bold-102a.woff2
  17. BIN frontend/public/fonts/Atkinson-Hyperlegible-BoldItalic-102a.woff2
  18. BIN frontend/public/fonts/Atkinson-Hyperlegible-Italic-102a.woff2
  19. BIN frontend/public/fonts/Atkinson-Hyperlegible-Regular-102a.woff2
  20. +4 −0 frontend/public/global.d.ts
  21. +15 −0 frontend/public/index.html
  22. +15 −0 frontend/public/index.tsx
  23. +81 −0 frontend/public/state/api.ts
  24. +163 −0 frontend/public/state/state.ts
  25. +446 −0 frontend/public/style/normalize.css
  26. +21 −0 frontend/public/style/style.css
  27. +70 −0 frontend/public/style/variables.css
  28. +6 −0 frontend/public/util/pretty-names.ts
  29. +98 −0 frontend/public/util/state-machine.ts
  30. +21 −0 frontend/tsconfig.json
  31. +61 −0 frontend/yarn.lock
  32. +6 −30 raspi/.cargo/config
  33. +33 −13 raspi/Cargo.toml
  34. +10 −6 raspi/Makefile.toml
  35. +18 −0 raspi/effect-derive/Cargo.toml
  36. +5 −0 raspi/effect-derive/src/lib.rs
  37. +0 −12 raspi/public/index.html
  38. +0 −3 raspi/public/script.js
  39. 0 raspi/public/style.css
  40. +4 −4 raspi/src/controller.rs
  41. +61 −0 raspi/src/db.rs
  42. +0 −629 raspi/src/effects.rs
  43. +38 −0 raspi/src/effects/_tmpl.rs
  44. +99 −0 raspi/src/effects/balls.rs
  45. +157 −0 raspi/src/effects/explosions.rs
  46. +54 −0 raspi/src/effects/flash_rainbow.rs
  47. +102 −0 raspi/src/effects/meteors.rs
  48. +88 −0 raspi/src/effects/mod.rs
  49. +130 −0 raspi/src/effects/moving_lights.rs
  50. +48 −0 raspi/src/effects/police.rs
  51. +153 −0 raspi/src/effects/prelude.rs
  52. +77 −0 raspi/src/effects/rainbow.rs
  53. +81 −0 raspi/src/effects/random.rs
  54. +139 −0 raspi/src/effects/runner.rs
  55. +3 −0 raspi/src/effects/schema/mod.rs
  56. +96 −0 raspi/src/effects/snake.rs
  57. +58 −0 raspi/src/effects/static_rainbow.rs
  58. +90 −0 raspi/src/http.rs
  59. +121 −56 raspi/src/main.rs
  60. +1 −1 raspi/src/noise/perlin.rs
  61. +1 −1 rustfmt.toml
  62. BIN stm/rom.bin
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
max_line_length = 100
1 change: 1 addition & 0 deletions .stignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/target
**/node_modules
Loading