| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  | # Code to configure miscellaneous chips | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2018-01-19 22:22:17 -05:00
										 |  |  | # Copyright (C) 2017,2018  Kevin O'Connor <kevin@koconnor.net> | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  | # | 
					
						
							|  |  |  | # This file may be distributed under the terms of the GNU GPLv3 license. | 
					
						
							| 
									
										
										
										
											2018-01-20 00:18:28 -05:00
										 |  |  | import pins | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ###################################################################### | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  | # Output pins | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  | ###################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  | PIN_MIN_TIME = 0.100 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PrinterPin: | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  |     def __init__(self, printer, config): | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         self.printer = printer | 
					
						
							| 
									
										
										
										
											2018-01-19 22:22:17 -05:00
										 |  |  |         self.is_pwm = 'pwm' in config.get_name().split()[0] | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         if self.is_pwm: | 
					
						
							|  |  |  |             self.mcu_pin = pins.setup_pin(printer, 'pwm', config.get('pin')) | 
					
						
							| 
									
										
										
										
											2018-01-29 12:54:06 -05:00
										 |  |  |             cycle_time = config.getfloat('cycle_time', 0.100, above=0.) | 
					
						
							|  |  |  |             hardware_pwm = config.getboolean('hardware_pwm', False) | 
					
						
							|  |  |  |             self.mcu_pin.setup_cycle_time(cycle_time, hardware_pwm) | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |             self.scale = config.getfloat('scale', 1., above=0.) | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |             self.mcu_pin = pins.setup_pin( | 
					
						
							|  |  |  |                 printer, 'digital_out', config.get('pin')) | 
					
						
							|  |  |  |             self.scale = 1. | 
					
						
							|  |  |  |         self.mcu_pin.setup_max_duration(0.) | 
					
						
							|  |  |  |         self.last_value_time = 0. | 
					
						
							|  |  |  |         self.last_value = config.getfloat( | 
					
						
							| 
									
										
										
										
											2018-01-08 19:51:35 -05:00
										 |  |  |             'value', 0., minval=0., maxval=self.scale) / self.scale | 
					
						
							| 
									
										
										
										
											2018-01-19 22:22:17 -05:00
										 |  |  |         self.is_static = config.get_name().startswith('static_') | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         if self.is_static: | 
					
						
							|  |  |  |             self.mcu_pin.setup_start_value( | 
					
						
							| 
									
										
										
										
											2018-01-08 19:51:35 -05:00
										 |  |  |                 self.last_value, self.last_value, True) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             shutdown_value = config.getfloat( | 
					
						
							|  |  |  |                 'shutdown_value', 0., minval=0., maxval=self.scale) / self.scale | 
					
						
							|  |  |  |             self.mcu_pin.setup_start_value(self.last_value, shutdown_value) | 
					
						
							| 
									
										
										
										
											2018-01-19 22:22:17 -05:00
										 |  |  |         self.gcode = printer.lookup_object('gcode') | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         self.gcode.register_command("SET_PIN", self.cmd_SET_PIN, | 
					
						
							|  |  |  |                                     desc=self.cmd_SET_PIN_help) | 
					
						
							|  |  |  |     cmd_SET_PIN_help = "Set the value of an output pin" | 
					
						
							|  |  |  |     def cmd_SET_PIN(self, params): | 
					
						
							|  |  |  |         pin_name = self.gcode.get_str('PIN', params) | 
					
						
							| 
									
										
										
										
											2018-01-19 22:22:17 -05:00
										 |  |  |         pin = self.printer.lookup_object('pin ' + pin_name, None) | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         if pin is not self: | 
					
						
							|  |  |  |             if pin is None: | 
					
						
							|  |  |  |                 raise self.gcode.error("Pin not configured") | 
					
						
							|  |  |  |             return pin.cmd_SET_PIN(params) | 
					
						
							|  |  |  |         if self.is_static: | 
					
						
							|  |  |  |             raise self.gcode.error("Static pin can not be changed at run-time") | 
					
						
							| 
									
										
										
										
											2018-01-08 19:51:35 -05:00
										 |  |  |         value = self.gcode.get_float('VALUE', params) / self.scale | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         if value == self.last_value: | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2018-01-19 22:22:17 -05:00
										 |  |  |         print_time = self.printer.lookup_object('toolhead').get_last_move_time() | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         print_time = max(print_time, self.last_value_time + PIN_MIN_TIME) | 
					
						
							|  |  |  |         if self.is_pwm: | 
					
						
							| 
									
										
										
										
											2018-01-08 19:51:35 -05:00
										 |  |  |             if value < 0. or value > 1.: | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |                 raise self.gcode.error("Invalid pin value") | 
					
						
							|  |  |  |             self.mcu_pin.set_pwm(print_time, value) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if value not in [0., 1.]: | 
					
						
							|  |  |  |                 raise self.gcode.error("Invalid pin value") | 
					
						
							|  |  |  |             self.mcu_pin.set_digital(print_time, value) | 
					
						
							|  |  |  |         self.last_value = value | 
					
						
							|  |  |  |         self.last_value_time = print_time | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ###################################################################### | 
					
						
							|  |  |  | # Setup | 
					
						
							|  |  |  | ###################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def add_printer_objects(printer, config): | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |     for s in config.get_prefix_sections('digital_output '): | 
					
						
							|  |  |  |         printer.add_object('pin' + s.section[14:], PrinterPin(printer, s)) | 
					
						
							| 
									
										
										
										
											2017-08-24 09:34:31 -04:00
										 |  |  |     for s in config.get_prefix_sections('static_pwm_output '): | 
					
						
							| 
									
										
										
										
											2017-12-18 19:13:23 -05:00
										 |  |  |         printer.add_object('pin' + s.section[17:], PrinterPin(printer, s)) | 
					
						
							|  |  |  |     for s in config.get_prefix_sections('pwm_output '): | 
					
						
							|  |  |  |         printer.add_object('pin' + s.section[10:], PrinterPin(printer, s)) |