from flask import Flask, request, jsonify, render_template import os import serial import time import random import threading import serial.tools.list_ports import math import json app = Flask(__name__) # Configuration THETA_RHO_DIR = './patterns' IGNORE_PORTS = ['/dev/cu.debug-console', '/dev/cu.Bluetooth-Incoming-Port'] CLEAR_PATTERNS = { "clear_from_in": "./patterns/clear_from_in.thr", "clear_from_out": "./patterns/clear_from_out.thr", "clear_sideway": "./patterns/clear_sideway.thr" } os.makedirs(THETA_RHO_DIR, exist_ok=True) # Serial connection (First available will be selected by default) ser = None ser_port = None # Global variable to store the serial port name stop_requested = False serial_lock = threading.Lock() PLAYLISTS_FILE = os.path.join(os.getcwd(), "playlists.json") # Ensure the file exists and contains at least an empty JSON object if not os.path.exists(PLAYLISTS_FILE): with open(PLAYLISTS_FILE, "w") as f: json.dump({}, f, indent=2) def list_serial_ports(): """Return a list of available serial ports.""" ports = serial.tools.list_ports.comports() return [port.device for port in ports if port.device not in IGNORE_PORTS] def connect_to_serial(port=None, baudrate=115200): """Automatically connect to the first available serial port or a specified port.""" global ser, ser_port try: if port is None: ports = list_serial_ports() if not ports: print("No serial port connected") return False port = ports[0] # Auto-select the first available port with serial_lock: if ser and ser.is_open: ser.close() ser = serial.Serial(port, baudrate) ser_port = port # Store the connected port globally print(f"Connected to serial port: {port}") time.sleep(2) # Allow time for the connection to establish return True # Successfully connected except serial.SerialException as e: print(f"Failed to connect to serial port {port}: {e}") port = None # Reset the port to try the next available one print("Max retries reached. Could not connect to a serial port.") return False def disconnect_serial(): """Disconnect the current serial connection.""" global ser, ser_port if ser and ser.is_open: ser.close() ser = None ser_port = None # Reset the port name def restart_serial(port, baudrate=115200): """Restart the serial connection.""" disconnect_serial() connect_to_serial(port, baudrate) def parse_theta_rho_file(file_path): """ Parse a theta-rho file and return a list of (theta, rho) pairs. Normalizes the list so the first theta is always 0. """ coordinates = [] try: with open(file_path, 'r') as file: for line in file: line = line.strip() # Skip header or comment lines (starting with '#' or empty lines) if not line or line.startswith("#"): continue # Parse lines with theta and rho separated by spaces try: theta, rho = map(float, line.split()) coordinates.append((theta, rho)) except ValueError: print(f"Skipping invalid line: {line}") continue except Exception as e: print(f"Error reading file: {e}") return coordinates # ---- Normalization Step ---- if coordinates: # Take the first coordinate's theta first_theta = coordinates[0][0] # Shift all thetas so the first coordinate has theta=0 normalized = [] for (theta, rho) in coordinates: normalized.append((theta - first_theta, rho)) # Replace original list with normalized data coordinates = normalized return coordinates def send_coordinate_batch(ser, coordinates): """Send a batch of theta-rho pairs to the Arduino.""" # print("Sending batch:", coordinates) batch_str = ";".join(f"{theta:.5f},{rho:.5f}" for theta, rho in coordinates) + ";\n" ser.write(batch_str.encode()) def send_command(command): """Send a single command to the Arduino.""" ser.write(f"{command}\n".encode()) print(f"Sent: {command}") # Wait for "R" acknowledgment from Arduino while True: with serial_lock: if ser.in_waiting > 0: response = ser.readline().decode().strip() print(f"Arduino response: {response}") if response == "R": print("Command execution completed.") break def run_theta_rho_file(file_path): """Run a theta-rho file by sending data in optimized batches.""" global stop_requested stop_requested = False coordinates = parse_theta_rho_file(file_path) if len(coordinates) < 2: print("Not enough coordinates for interpolation.") return # Optimize batch size for smoother execution batch_size = 10 # Smaller batches may smooth movement further for i in range(0, len(coordinates), batch_size): # Check stop_requested flag after sending the batch if stop_requested: print("Execution stopped by user after completing the current batch.") break batch = coordinates[i:i + batch_size] if i == 0: send_coordinate_batch(ser, batch) continue # Wait until Arduino is READY before sending the batch while True: with serial_lock: if ser.in_waiting > 0: response = ser.readline().decode().strip() if response == "R": send_coordinate_batch(ser, batch) break else: print(f"Arduino response: {response}") # Reset theta after execution or stopping reset_theta() ser.write("FINISHED\n".encode()) def get_clear_pattern_file(pattern_name): """Return a .thr file path based on pattern_name.""" if pattern_name == "random": # Randomly pick one of the three known patterns return random.choice(list(CLEAR_PATTERNS.values())) # If pattern_name is invalid or absent, default to 'clear_from_in' return CLEAR_PATTERNS.get(pattern_name, CLEAR_PATTERNS["clear_from_in"]) def run_theta_rho_files( file_paths, pause_time=0, clear_pattern=None, run_mode="single", shuffle=False ): """ Runs multiple .thr files in sequence with options for pausing, clearing, shuffling, and looping. Parameters: - file_paths (list): List of file paths to run. - pause_time (float): Seconds to pause between patterns. - clear_pattern (str): Specific clear pattern to run ("clear_in", "clear_out", "clear_sideway", or "random"). - run_mode (str): "single" for one-time run or "indefinite" for looping. - shuffle (bool): Whether to shuffle the playlist before running. """ global stop_requested stop_requested = False # Reset stop flag at the start if shuffle: random.shuffle(file_paths) print("Playlist shuffled.") while True: for idx, path in enumerate(file_paths): if stop_requested: print("Execution stopped before starting next pattern.") return if clear_pattern: if stop_requested: print("Execution stopped before running the next clear pattern.") return # Determine the clear pattern to run clear_file_path = get_clear_pattern_file(clear_pattern) print(f"Running clear pattern: {clear_file_path}") run_theta_rho_file(clear_file_path) if not stop_requested: # Run the main pattern print(f"Running pattern {idx + 1} of {len(file_paths)}: {path}") run_theta_rho_file(path) if idx < len(file_paths) -1: if stop_requested: print("Execution stopped before running the next clear pattern.") return # Pause after each pattern if requested if pause_time > 0: print(f"Pausing for {pause_time} seconds...") time.sleep(pause_time) # After completing the playlist if run_mode == "indefinite": print("Playlist completed. Restarting as per 'indefinite' run mode.") if pause_time > 0: print(f"Pausing for {pause_time} seconds before restarting...") time.sleep(pause_time) if shuffle: random.shuffle(file_paths) print("Playlist reshuffled for the next loop.") continue else: print("Playlist completed.") break # Reset theta after execution or stopping reset_theta() ser.write("FINISHED\n".encode()) print("All requested patterns completed (or stopped).") def reset_theta(): """Reset theta on the Arduino.""" ser.write("RESET_THETA\n".encode()) while True: with serial_lock: if ser.in_waiting > 0: response = ser.readline().decode().strip() print(f"Arduino response: {response}") if response == "THETA_RESET": print("Theta successfully reset.") break time.sleep(0.5) # Small delay to avoid busy waiting # Flask API Endpoints @app.route('/') def index(): return render_template('index.html') @app.route('/list_serial_ports', methods=['GET']) def list_ports(): return jsonify(list_serial_ports()) @app.route('/connect_serial', methods=['POST']) def connect_serial(): port = request.json.get('port') if not port: return jsonify({'error': 'No port provided'}), 400 try: connect_to_serial(port) return jsonify({'success': True}) except Exception as e: return jsonify({'error': str(e)}), 500 @app.route('/disconnect_serial', methods=['POST']) def disconnect(): try: disconnect_serial() return jsonify({'success': True}) except Exception as e: return jsonify({'error': str(e)}), 500 @app.route('/restart_serial', methods=['POST']) def restart(): port = request.json.get('port') if not port: return jsonify({'error': 'No port provided'}), 400 try: restart_serial(port) return jsonify({'success': True}) except Exception as e: return jsonify({'error': str(e)}), 500 @app.route('/list_theta_rho_files', methods=['GET']) def list_theta_rho_files(): files = [] for root, _, filenames in os.walk(THETA_RHO_DIR): for file in filenames: # Construct the relative file path relative_path = os.path.relpath(os.path.join(root, file), THETA_RHO_DIR) files.append(relative_path) return jsonify(sorted(files)) @app.route('/upload_theta_rho', methods=['POST']) def upload_theta_rho(): custom_patterns_dir = os.path.join(THETA_RHO_DIR, 'custom_patterns') os.makedirs(custom_patterns_dir, exist_ok=True) # Ensure the directory exists file = request.files['file'] if file: file.save(os.path.join(custom_patterns_dir, file.filename)) return jsonify({'success': True}) return jsonify({'success': False}) @app.route('/run_theta_rho', methods=['POST']) def run_theta_rho(): file_name = request.json.get('file_name') pre_execution = request.json.get('pre_execution') # 'clear_in', 'clear_out', 'clear_sideway', or 'none' if not file_name: return jsonify({'error': 'No file name provided'}), 400 file_path = os.path.join(THETA_RHO_DIR, file_name) if not os.path.exists(file_path): return jsonify({'error': 'File not found'}), 404 try: # Build a list of files to run in sequence files_to_run = [] if pre_execution == 'clear_in': files_to_run.append('./patterns/clear_from_in.thr') elif pre_execution == 'clear_out': files_to_run.append('./patterns/clear_from_out.thr') elif pre_execution == 'clear_sideway': files_to_run.append('./patterns/clear_sideway.thr') elif pre_execution == 'none': pass # No pre-execution action required # Finally, add the main file files_to_run.append(file_path) # Run them in one shot using run_theta_rho_files (blocking call) threading.Thread( target=run_theta_rho_files, args=(files_to_run,), kwargs={ 'pause_time': 0, 'clear_pattern': None } ).start() return jsonify({'success': True}) except Exception as e: return jsonify({'error': str(e)}), 500 @app.route('/stop_execution', methods=['POST']) def stop_execution(): global stop_requested stop_requested = True return jsonify({'success': True}) @app.route('/send_home', methods=['POST']) def send_home(): """Send the HOME command to the Arduino.""" try: send_command("HOME") return jsonify({'success': True}) except Exception as e: return jsonify({'error': str(e)}), 500 @app.route('/run_theta_rho_file/', methods=['POST']) def run_specific_theta_rho_file(file_name): """Run a specific theta-rho file.""" file_path = os.path.join(THETA_RHO_DIR, file_name) if not os.path.exists(file_path): return jsonify({'error': 'File not found'}), 404 threading.Thread(target=run_theta_rho_file, args=(file_path,)).start() return jsonify({'success': True}) @app.route('/delete_theta_rho_file', methods=['POST']) def delete_theta_rho_file(): data = request.json file_name = data.get('file_name') if not file_name: return jsonify({"success": False, "error": "No file name provided"}), 400 file_path = os.path.join(THETA_RHO_DIR, file_name) if not os.path.exists(file_path): return jsonify({"success": False, "error": "File not found"}), 404 try: os.remove(file_path) return jsonify({"success": True}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 @app.route('/move_to_center', methods=['POST']) def move_to_center(): """Move the sand table to the center position.""" try: if ser is None or not ser.is_open: return jsonify({"success": False, "error": "Serial connection not established"}), 400 coordinates = [(0, 0)] # Center position send_coordinate_batch(ser, coordinates) return jsonify({"success": True}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 @app.route('/move_to_perimeter', methods=['POST']) def move_to_perimeter(): """Move the sand table to the perimeter position.""" try: if ser is None or not ser.is_open: return jsonify({"success": False, "error": "Serial connection not established"}), 400 MAX_RHO = 1 coordinates = [(0, MAX_RHO)] # Perimeter position send_coordinate_batch(ser, coordinates) return jsonify({"success": True}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 @app.route('/preview_thr', methods=['POST']) def preview_thr(): file_name = request.json.get('file_name') if not file_name: return jsonify({'error': 'No file name provided'}), 400 file_path = os.path.join(THETA_RHO_DIR, file_name) if not os.path.exists(file_path): return jsonify({'error': 'File not found'}), 404 try: # Parse the .thr file with transformations coordinates = parse_theta_rho_file(file_path) return jsonify({'success': True, 'coordinates': coordinates}) except Exception as e: return jsonify({'error': str(e)}), 500 @app.route('/send_coordinate', methods=['POST']) def send_coordinate(): """Send a single (theta, rho) coordinate to the Arduino.""" global ser if ser is None or not ser.is_open: return jsonify({"success": False, "error": "Serial connection not established"}), 400 try: data = request.json theta = data.get('theta') rho = data.get('rho') if theta is None or rho is None: return jsonify({"success": False, "error": "Theta and Rho are required"}), 400 # Send the coordinate to the Arduino send_coordinate_batch(ser, [(theta, rho)]) return jsonify({"success": True}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 # Expose files for download if needed @app.route('/download/', methods=['GET']) def download_file(filename): """Download a file from the theta-rho directory.""" return send_from_directory(THETA_RHO_DIR, filename) @app.route('/serial_status', methods=['GET']) def serial_status(): global ser, ser_port return jsonify({ 'connected': ser.is_open if ser else False, 'port': ser_port # Include the port name }) if not os.path.exists(PLAYLISTS_FILE): with open(PLAYLISTS_FILE, "w") as f: json.dump({}, f, indent=2) def load_playlists(): """ Load the entire playlists dictionary from the JSON file. Returns something like: { "My Playlist": ["file1.thr", "file2.thr"], "Another": ["x.thr"] } """ with open(PLAYLISTS_FILE, "r") as f: return json.load(f) def save_playlists(playlists_dict): """ Save the entire playlists dictionary back to the JSON file. """ with open(PLAYLISTS_FILE, "w") as f: json.dump(playlists_dict, f, indent=2) @app.route("/list_all_playlists", methods=["GET"]) def list_all_playlists(): """ Returns a list of all playlist names. Example return: ["My Playlist", "Another Playlist"] """ playlists_dict = load_playlists() playlist_names = list(playlists_dict.keys()) return jsonify(playlist_names) @app.route("/get_playlist", methods=["GET"]) def get_playlist(): """ GET /get_playlist?name=My%20Playlist Returns: { "name": "My Playlist", "files": [... ] } """ playlist_name = request.args.get("name", "") if not playlist_name: return jsonify({"error": "Missing playlist 'name' parameter"}), 400 playlists_dict = load_playlists() if playlist_name not in playlists_dict: return jsonify({"error": f"Playlist '{playlist_name}' not found"}), 404 files = playlists_dict[playlist_name] # e.g. ["file1.thr", "file2.thr"] return jsonify({ "name": playlist_name, "files": files }) @app.route("/create_playlist", methods=["POST"]) def create_playlist(): """ POST /create_playlist Body: { "name": "My Playlist", "files": ["file1.thr", "file2.thr"] } Creates or overwrites a playlist with the given name. """ data = request.get_json() if not data or "name" not in data or "files" not in data: return jsonify({"success": False, "error": "Playlist 'name' and 'files' are required"}), 400 playlist_name = data["name"] files = data["files"] # Load all playlists playlists_dict = load_playlists() # Overwrite or create new playlists_dict[playlist_name] = files # Save changes save_playlists(playlists_dict) return jsonify({ "success": True, "message": f"Playlist '{playlist_name}' created/updated" }) @app.route("/modify_playlist", methods=["POST"]) def modify_playlist(): """ POST /modify_playlist Body: { "name": "My Playlist", "files": ["file1.thr", "file2.thr"] } Updates (or creates) the existing playlist with a new file list. You can 404 if you only want to allow modifications to existing playlists. """ data = request.get_json() if not data or "name" not in data or "files" not in data: return jsonify({"success": False, "error": "Playlist 'name' and 'files' are required"}), 400 playlist_name = data["name"] files = data["files"] # Load all playlists playlists_dict = load_playlists() # Optional: If you want to disallow creating a new playlist here: # if playlist_name not in playlists_dict: # return jsonify({"success": False, "error": f"Playlist '{playlist_name}' not found"}), 404 # Overwrite or create new playlists_dict[playlist_name] = files # Save save_playlists(playlists_dict) return jsonify({"success": True, "message": f"Playlist '{playlist_name}' updated"}) @app.route("/delete_playlist", methods=["DELETE"]) def delete_playlist(): """ DELETE /delete_playlist Body: { "name": "My Playlist" } Removes the playlist from the single JSON file. """ data = request.get_json() if not data or "name" not in data: return jsonify({"success": False, "error": "Missing 'name' field"}), 400 playlist_name = data["name"] playlists_dict = load_playlists() if playlist_name not in playlists_dict: return jsonify({"success": False, "error": f"Playlist '{playlist_name}' not found"}), 404 # Remove from dict del playlists_dict[playlist_name] save_playlists(playlists_dict) return jsonify({ "success": True, "message": f"Playlist '{playlist_name}' deleted" }) @app.route('/add_to_playlist', methods=['POST']) def add_to_playlist(): data = request.json playlist_name = data.get('playlist_name') pattern = data.get('pattern') # Load existing playlists with open('playlists.json', 'r') as f: playlists = json.load(f) # Add pattern to the selected playlist if playlist_name in playlists: playlists[playlist_name].append(pattern) with open('playlists.json', 'w') as f: json.dump(playlists, f) return jsonify(success=True) else: return jsonify(success=False, error='Playlist not found'), 404 @app.route("/run_playlist", methods=["POST"]) def run_playlist(): """ POST /run_playlist Body (JSON): { "playlist_name": "My Playlist", "pause_time": 1.0, # Optional: seconds to pause between patterns "clear_pattern": "random", # Optional: "clear_in", "clear_out", "clear_sideway", or "random" "run_mode": "single", # 'single' or 'indefinite' "shuffle": True # true or false } """ data = request.get_json() # Validate input if not data or "playlist_name" not in data: return jsonify({"success": False, "error": "Missing 'playlist_name' field"}), 400 playlist_name = data["playlist_name"] pause_time = data.get("pause_time", 0) clear_pattern = data.get("clear_pattern", None) run_mode = data.get("run_mode", "single") # Default to 'single' run shuffle = data.get("shuffle", False) # Default to no shuffle # Validate pause_time if not isinstance(pause_time, (int, float)) or pause_time < 0: return jsonify({"success": False, "error": "'pause_time' must be a non-negative number"}), 400 # Validate clear_pattern valid_patterns = ["clear_in", "clear_out", "clear_sideway", "random"] if clear_pattern not in valid_patterns: clear_pattern = None # Validate run_mode if run_mode not in ["single", "indefinite"]: return jsonify({"success": False, "error": "'run_mode' must be 'single' or 'indefinite'"}), 400 # Validate shuffle if not isinstance(shuffle, bool): return jsonify({"success": False, "error": "'shuffle' must be a boolean value"}), 400 # Load playlists playlists = load_playlists() if playlist_name not in playlists: return jsonify({"success": False, "error": f"Playlist '{playlist_name}' not found"}), 404 file_paths = playlists[playlist_name] file_paths = [os.path.join(THETA_RHO_DIR, file) for file in file_paths] if not file_paths: return jsonify({"success": False, "error": f"Playlist '{playlist_name}' is empty"}), 400 # Start the playlist execution in a separate thread try: threading.Thread( target=run_theta_rho_files, args=(file_paths,), kwargs={ 'pause_time': pause_time, 'clear_pattern': clear_pattern, 'run_mode': run_mode, 'shuffle': shuffle }, daemon=True # Daemonize thread to exit with the main program ).start() return jsonify({"success": True, "message": f"Playlist '{playlist_name}' is now running."}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 @app.route('/set_speed', methods=['POST']) def set_speed(): """Set the speed for the Arduino.""" global ser if ser is None or not ser.is_open: return jsonify({"success": False, "error": "Serial connection not established"}), 400 try: # Parse the speed value from the request data = request.json speed = data.get('speed') if speed is None: return jsonify({"success": False, "error": "Speed is required"}), 400 if not isinstance(speed, (int, float)) or speed <= 0: return jsonify({"success": False, "error": "Invalid speed value"}), 400 # Send the SET_SPEED command to the Arduino command = f"SET_SPEED {speed}" send_command(command) return jsonify({"success": True, "speed": speed}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 if __name__ == '__main__': # Auto-connect to serial connect_to_serial() app.run(debug=True, host='0.0.0.0', port=8080)