Skip to content

Commit

Permalink
Remove the "loud" macro from the .pronsolerc example.
Browse files Browse the repository at this point in the history
As this is now part of the standard interface, it's pointless
to list it as possible extension code.
  • Loading branch information
Traumflug committed Aug 13, 2012
1 parent 9975fe1 commit 24e2fa9
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions dot.pronsolerc.example
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
# Sample .pronsolerc file - copy this into your home directory and rename it to .pronsolerc
!print "Loaded " + self.rc_filename

macro loud
!if self.p.loud:
!self.p.loud = 0
!if hasattr(self,"cur_button") and self.cur_button is not None:
!self.onecmd('button %d "loud (off)" /c green loud' % self.cur_button)
!else:
!self.p.loud = 1
!if hasattr(self,"cur_button") and self.cur_button is not None:
!self.onecmd('button %d "loud (on)" /c yellow loud' % self.cur_button)
button 0 "loud (off)" /c "green" loud

macro fan
!global _fan
!if '_fan' in globals() and _fan:
Expand All @@ -24,4 +13,4 @@ macro fan
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 1 "fan (off)" /c "green" fan
button 0 "fan (off)" /c "green" fan

0 comments on commit 24e2fa9

Please sign in to comment.