printrun-src/dot.pronsolerc.example

Tue, 26 Sep 2017 19:08:02 +0200

author
mdd
date
Tue, 26 Sep 2017 19:08:02 +0200
changeset 36
f4730ef55ca8
parent 15
0bbb006204fc
permissions
-rw-r--r--

SVG options: offset, original scale
SVG Bugfix: "scale" does now really fit to dimensions

# Sample .pronsolerc file - copy this into your home directory and rename it to .pronsolerc
!print "Loaded " + self.rc_filename

macro fan
  !global _fan
  !if '_fan' in globals() and _fan:
    !_fan = 0
    M107
    !if hasattr(self,"cur_button") and self.cur_button is not None: 
      !self.onecmd('button %d "fan (off)" /c green fan' % self.cur_button)
  !else:
    !_fan = 1
    M106
    !if hasattr(self,"cur_button") and self.cur_button is not None: 
      !self.onecmd('button %d "fan (on)" /c yellow fan' % self.cur_button)
button 0 "fan (off)" /c "green" fan

mercurial