Skip to content

Commit

Permalink
md
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Piel committed Jan 14, 2024
1 parent 7ddfe24 commit f66b47a
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Customizable digital synth / groovebox...

| <img src='https://github.com/apiel/zicBox/blob/main/images/build1.jpg?raw=true' width='480'> | <img src='https://github.com/apiel/zicBox/blob/main/images/2.png?raw=true' width='480'> | |
| <img src='https://github.com/apiel/zicBox/blob/main/images/proto2.jpg?raw=true' width='480'> | <img src='https://github.com/apiel/zicBox/blob/main/images/demo3.png?raw=true' width='480'> | <img src='https://github.com/apiel/zicBox/blob/main/images/demo4.png?raw=true' width='480'> |
| :---: | :---: | :---: |

Expand Down
Binary file added images/build1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/build2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
8 changes: 8 additions & 0 deletions plugins/components/MonitoringComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
#include <unistd.h>
#include <vector>

/*md
## Monitoring
<img src="https://raw.githubusercontent.com/apiel/zicBox/main/plugins/components/Monitoring.png" />
Monitoring component show the current CPU usage.
*/
class MonitoringComponent : public Component {
protected:
size_t previous_idle_time = 0;
Expand Down Expand Up @@ -84,6 +91,7 @@ class MonitoringComponent : public Component {

bool config(char* key, char* value)
{
/*md - `COLOR: #999999` set component color */
if (strcmp(key, "COLOR") == 0) {
colors = getColorsFromColor(draw.getColor(value));
return true;
Expand Down
Binary file added plugins/components/SequencerBar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions plugins/components/SequencerBarComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@

#include <string>

/*md
## SequencerBar
<img src="https://raw.githubusercontent.com/apiel/zicBox/main/plugins/components/SequencerBar.png" />
Make minimal representation of the sequencer.
*/
class SequencerBarComponent : public Component {
protected:
AudioPlugin& plugin;
Expand Down Expand Up @@ -150,6 +157,7 @@ class SequencerBarComponent : public Component {

bool config(char* key, char* value)
{
/*md - `COLOR: #999999` set component color */
if (strcmp(key, "COLOR") == 0) {
colors = getColorsFromColor(draw.getColor(value));
return true;
Expand Down
2 changes: 1 addition & 1 deletion wiki
Submodule wiki updated from aafe99 to 3839d6

0 comments on commit f66b47a

Please sign in to comment.