Skip to content

Commit

Permalink
allow easier debugging of RGB LEDs (enjoy fireworks of light ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
mzuther committed Jul 18, 2020
1 parent 8833f5c commit b192fda
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 17 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,30 @@ file. This change log follows the conventions of


## [Unreleased]
### Added

- add linter script and fix warnings

### Changed

- use lambda set/get functions to update controllers (thanks to
Stéphane Letz)

- use 'alloca' which is faster than std::vector and will also work on
Windows (thanks to Stéphane Letz)

- move some UI handling to class "ProtoFaustWidget"

- allow easier debugging of RGB LEDs (enjoy fireworks of light ...)

- re-factor code

- change selection of files formatted by astyle

### Fixed

- fix crash on opening module selection window



## [1.0.4] - 2020-07-14
Expand Down
34 changes: 17 additions & 17 deletions src/faust/main.dsp
Original file line number Diff line number Diff line change
Expand Up @@ -125,36 +125,36 @@ with
attach(_ , knob_8) :

attach(_ , lfo_1 : led_1_r) :
attach(_ , lfo_1 : led_1_g) :
attach(_ , lfo_1 : led_1_b) :
attach(_ , 0 : led_1_g) :
attach(_ , 0 : led_1_b) :

attach(_ , lfo_2 : led_2_r) :
attach(_ , 0 : led_2_g) :
attach(_ , 0 : led_2_b) :
attach(_ , 0 : led_2_r) :
attach(_ , lfo_2 : led_2_g) :
attach(_ , 0 : led_2_b) :

attach(_ , lfo_1 : led_3_r) :
attach(_ , lfo_1 : led_3_g) :
attach(_ , 0 : led_3_r) :
attach(_ , 0 : led_3_g) :
attach(_ , lfo_1 : led_3_b) :

attach(_ , lfo_2 : led_4_r) :
attach(_ , 0 : led_4_g) :
attach(_ , 0 : led_4_b) :
attach(_ , lfo_2 : led_4_g) :
attach(_ , lfo_2 : led_4_b) :

attach(_ , lfo_1 : led_5_r) :
attach(_ , lfo_1 : led_5_g) :
attach(_ , lfo_1 : led_5_b) :

attach(_ , lfo_2 : led_6_r) :
attach(_ , 0 : led_6_g) :
attach(_ , 0 : led_6_b) :
attach(_ , lfo_1 : led_6_r) :
attach(_ , lfo_2 : led_6_g) :
attach(_ , 0 : led_6_b) :

attach(_ , lfo_1 : led_7_r) :
attach(_ , 0 : led_7_r) :
attach(_ , lfo_1 : led_7_g) :
attach(_ , lfo_1 : led_7_b) :
attach(_ , lfo_2 : led_7_b) :

attach(_ , lfo_2 : led_8_r) :
attach(_ , 0 : led_8_g) :
attach(_ , 0 : led_8_b) :
attach(_ , lfo_1 : led_8_r) :
attach(_ , 0 : led_8_g) :
attach(_ , lfo_2 : led_8_b) :
_;

internal_processor = (in1 : gui_attacher) , in2 , in3 :
Expand Down

0 comments on commit b192fda

Please sign in to comment.