aboutsummaryrefslogtreecommitdiff
path: root/examples/simplecounter.pd_lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simplecounter.pd_lua')
-rw-r--r--examples/simplecounter.pd_lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/simplecounter.pd_lua b/examples/simplecounter.pd_lua
new file mode 100644
index 0000000..1d6b7ee
--- /dev/null
+++ b/examples/simplecounter.pd_lua
@@ -0,0 +1,14 @@
+local SimpleCounter = pd.Class:new():register("simplecounter")
+
+function SimpleCounter:initialize(sel, atoms)
+ self.inlets = 1
+ self.outlets = 1
+ self.count = 0
+ if type(atoms[1]) == "number" then self.count = atoms[1] end
+ return true
+end
+
+function SimpleCounter:in_1_bang()
+ self:outlet(1, "float", {self.count})
+ self.count = self.count + 1
+end