aboutsummaryrefslogtreecommitdiff
path: root/share/library/Misc/switch.lua
diff options
context:
space:
mode:
Diffstat (limited to 'share/library/Misc/switch.lua')
-rw-r--r--share/library/Misc/switch.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/share/library/Misc/switch.lua b/share/library/Misc/switch.lua
new file mode 100644
index 0000000..9d59fdf
--- /dev/null
+++ b/share/library/Misc/switch.lua
@@ -0,0 +1,33 @@
+-- Symbol name
+names =
+{
+ en = "Switch",
+ cs = "Spínač"
+}
+
+-- Render area in base units (X1, Y1, X2, Y2)
+area = {-2, -1.5, 2, 0}
+
+-- Terminals
+terminals = {{-2, 0}, {2, 0}}
+
+-- Rendering
+render_normal = function (cr)
+ -- The switch contact
+ cr.move_to (1.3, -1.3)
+ cr.line_to (-1, 0)
+
+ -- The contacts
+ cr.move_to (-2, 0)
+ cr.line_to (-1, 0)
+
+ cr.move_to (1, 0)
+ cr.line_to (2, 0)
+
+ cr.stroke ()
+end
+
+-- Register the symbol
+logdiag.register ("Switch", names, area, terminals, render_normal)
+
+