diff options
author | sara <sara.halter@gmx.ch> | 2021-11-15 18:44:17 +0100 |
---|---|---|
committer | sara <sara.halter@gmx.ch> | 2021-11-15 18:44:17 +0100 |
commit | 46b64e5be9f6cf8233217c24aacbc04bda3e0149 (patch) | |
tree | 211ae0db64a78a41ed06b5709c10acb90fab442e /src/gr-fadingui/grc/fadingui_dearpygui_sink.block.yml | |
parent | FIR Filter beendet (diff) | |
parent | Create UI Plot sink block (diff) | |
download | Fading-46b64e5be9f6cf8233217c24aacbc04bda3e0149.tar.gz Fading-46b64e5be9f6cf8233217c24aacbc04bda3e0149.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/gr-fadingui/grc/fadingui_dearpygui_sink.block.yml')
-rw-r--r-- | src/gr-fadingui/grc/fadingui_dearpygui_sink.block.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/gr-fadingui/grc/fadingui_dearpygui_sink.block.yml b/src/gr-fadingui/grc/fadingui_dearpygui_sink.block.yml new file mode 100644 index 0000000..3712be4 --- /dev/null +++ b/src/gr-fadingui/grc/fadingui_dearpygui_sink.block.yml @@ -0,0 +1,38 @@ +id: fadingui_dearpygui_sink +label: UI Sink +category: '[fadingui]' + +templates: + imports: import fadingui + make: fadingui.dearpygui_sink() + +# Make one 'parameters' list entry for every parameter you want settable from the GUI. +# Keys include: +# * id (makes the value accessible as \$keyname, e.g. in the make entry) +# * label (label shown in the GUI) +# * dtype (e.g. int, float, complex, byte, short, xxx_vector, ...) +parameters: +- id: sock_addr + label: Socket address + dtype: string + default: udp:// + +- id: ui_element_id + label: UI element ID + dtype: raw + + +# Make one 'inputs' list entry per input and one 'outputs' list entry per output. +# Keys include: +# * label (an identifier for the GUI) +# * domain (optional - stream or message. Default is stream) +# * dtype (e.g. int, float, complex, byte, short, xxx_vector, ...) +# * vlen (optional - data stream vector length. Default is 1) +# * optional (optional - set to 1 for optional inputs. Default is 0) +inputs: +- label: in + dtype: complex + +# 'file_format' specifies the version of the GRC yml format used in the file +# and should usually not be changed. +file_format: 1 |