Logs & Marker anzeigen

This commit is contained in:
chk
2026-06-14 21:18:29 +02:00
parent 8be4e2ff95
commit dbfc915b66
2 changed files with 73 additions and 17 deletions

View File

@@ -446,6 +446,8 @@ const SCRIPT_4B = path.join(__dirname, '..', 'scripts', '4b_revolute_angle.p
*/
function runScript(args, send) {
return new Promise((resolve) => {
const cmd = [PYTHON_BIN, '-u', ...args].join(' ');
console.log(`[runScript] ${cmd}`);
const proc = spawn(PYTHON_BIN, ['-u', ...args]);
let outBuf = '';