def cleanup(self):
"""
Cleanup method which should be invoked before program exit
"""
# Destroy pygame objects and de-init GPIO pins
pygame.quit()
GPIO.output(self.__LED, GPIO.LOW)
GPIO.cleanup()