(self, file_path)
| 82 | time.sleep(0.02) |
| 83 | |
| 84 | def process_camera_data(self, file_path): |
| 85 | output_path = file_path |
| 86 | output_filename = output_path.replace(".raw", ".jpg") |
| 87 | print(f"Converted to {output_filename}") |
| 88 | shutil.move("./color.raw", file_path) |
| 89 | |
| 90 | def press_key_l(self): |
| 91 | """Simulate pressing the 'l' key""" |