aboutsummaryrefslogtreecommitdiffstats
path: root/src/gr-fadingui/python/dearpygui_sink.py
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-11-15 18:14:19 +0100
committerNao Pross <np@0hm.ch>2021-11-15 18:14:19 +0100
commit785afc898559833cd5dfb7415bdb0da52942886e (patch)
tree244a94edabed036b88e5543354ce27a1d438f726 /src/gr-fadingui/python/dearpygui_sink.py
parentPartially fix framer (diff)
downloadFading-785afc898559833cd5dfb7415bdb0da52942886e.tar.gz
Fading-785afc898559833cd5dfb7415bdb0da52942886e.zip
Create UI Plot sink block
Diffstat (limited to '')
-rw-r--r--src/gr-fadingui/python/dearpygui_sink.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/gr-fadingui/python/dearpygui_sink.py b/src/gr-fadingui/python/dearpygui_sink.py
new file mode 100644
index 0000000..2b8e9fb
--- /dev/null
+++ b/src/gr-fadingui/python/dearpygui_sink.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Copyright 2021 Naoki Pross.
+#
+# This is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# This software is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this software; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+#
+
+
+import numpy as np
+from gnuradio import gr
+
+class dearpygui_sink(gr.sync_block):
+ """
+ docstring for block dearpygui_sink
+ """
+ def __init__(self):
+ gr.sync_block.__init__(self,
+ name="dearpygui_sink",
+ in_sig=[np.complex64],
+ out_sig=None)
+
+
+ def work(self, input_items, output_items):
+ in0 = input_items[0]
+ # <+signal processing here+>
+ return len(input_items[0])
+