aboutsummaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-04-02 00:14:06 +0200
committerThomas White <taw@physics.org>2023-04-02 00:14:06 +0200
commit2cecec66f8922fcb547898809690842c76423f2f (patch)
tree6413eb683e76dc1f64cd614418985e7e0b957d02 /guile
parentcf8b7c80693b94516ef8ab01321f5e791ef47223 (diff)
Fixture library: Robe DL7S: add missing modules and fix typo
Diffstat (limited to 'guile')
-rw-r--r--guile/starlet/fixture-library/robe/dl7s.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/guile/starlet/fixture-library/robe/dl7s.scm b/guile/starlet/fixture-library/robe/dl7s.scm
index c733731..303b393 100644
--- a/guile/starlet/fixture-library/robe/dl7s.scm
+++ b/guile/starlet/fixture-library/robe/dl7s.scm
@@ -21,8 +21,10 @@
(define-module (starlet fixture-library robe dl7s)
#:use-module (oop goops)
#:use-module (starlet fixture)
+ #:use-module (starlet utils)
#:use-module (starlet attributes)
#:use-module (starlet colours)
+ #:use-module (starlet scanout)
#:export (<robe-dl7s-mode1>))
@@ -42,7 +44,7 @@
(set-chan16 50 (percent->dmxval16 (get-attr intensity)))
(set-chan16 1 (scale-to-range (get-attr pan) '(0 540) '(0 65535)))
- (set-chan16 3 (scale-to-range (get-attr tilt) (0 270) '(0 65535)))
+ (set-chan16 3 (scale-to-range (get-attr tilt) '(0 270) '(0 65535)))
(set-chan8 49 (if (get-attr strobe) 95 32))