{% extends "base.html" %} {% block title %}CNC-Maschinen — Takoma{% endblock %} {% block content %}

🏭 CNC-Maschinen

Konfiguriere deine CNC-Steuerungen — RS232, Netzwerk-Share oder USB-Export.

{% if machines %}
{% for m in machines %} {% endfor %}
Maschine Hersteller / Modell Verbindung Konfig Status Aktionen
{{ m.name }}
{% if m.machine_no or m.location %}
{% if m.machine_no %}#{{ m.machine_no }}{% endif %} {% if m.location %} · {{ m.location }}{% endif %}
{% endif %}
{{ m.manufacturer or '—' }} {% if m.model %}
{{ m.model }}{% endif %}
{% set ct = connection_types.get(m.connection_type, {}) %} {{ ct.get('icon', '') }} {{ ct.get('label', m.connection_type) }} {% if m.connection_type == 'rs232' %} {{ m.config.port or 'kein Port' }} · {{ m.config.baudrate }} {{ m.config.bytesize }}{{ m.config.parity }}{{ m.config.stopbits }} · {{ m.config.handshake }} {% elif m.connection_type == 'network_share' %} {{ m.config.network_path or '—' }} {% elif m.connection_type == 'usb_export' %} {{ m.config.file_extension or '.nc' }}-Dateien {% endif %} {% if m.active %} AKTIV {% else %} AUS {% endif %}
{% else %}
🏭

Noch keine Maschine konfiguriert

Lege deine erste CNC an um Programme zu übertragen.

{% endif %}
💡 Tipp: Hast du sowohl alte (RS232) als auch neue (Netzwerk) Maschinen? Lege jede einzeln an — Takoma routet beim Senden automatisch.
{% endblock %}