Hi! I was wondering if you had any code that exemplified sending the Flir commands via serial? Is it something as simple as this: ``` functions = FLIR_Functions() noop_cmd = functions.noop() ser = serial.Serial('my_port', 9600) ser.write(noop_cmd) ```