3D Printing - Advanced Print Settings
Consider this code snippet controlling fan speed based on layer number:
What will be the output if
if layer < 5:
fan_speed = 0
elif layer <= 10:
fan_speed = 128
else:
fan_speed = 255
print(fan_speed)What will be the output if
layer = 7?