File: dot.pronsolerc.example

package info (click to toggle)
printrun 2.0.0~rc8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,060 kB
  • sloc: python: 13,447; xml: 62; ansic: 20; makefile: 16; sh: 12
file content (16 lines) | stat: -rw-r--r-- 569 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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