- pricegod-urovo-daemon: C# :7790 HTTP service, drives the Urovo D812R+ via the GTSPL SDK; prints a label AND encodes the UHF chip in one pass. Drop-in for the PriceGod extension's daemon.js (same :7790, CORS *). - chafcheck: Chafon H-102 UHFPrimeReader P/Invoke probe. - ASSESSMENT.md: everything done + learned this session -- the ribbon-latch fix, PET-labels-are-not-direct-thermal finding, unreliable-status-byte quirk, SKU->EPC scheme, the Chafon HID-mode dead end, and how to port the print+encode recipe to the Mac (GTSPL Java SDK / raw TSPL). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 lines
310 B
Batchfile
10 lines
310 B
Batchfile
@echo off
|
|
REM Double-click to start the PriceGod Urovo daemon on http://localhost:7790/
|
|
REM Leave this window open while you print/encode. Close it (or Ctrl+C) to stop.
|
|
cd /d "%~dp0"
|
|
title pricegod-urovo-daemon (:7790)
|
|
pricegod-urovo-daemon.exe %*
|
|
echo.
|
|
echo daemon stopped. press any key to close.
|
|
pause >nul
|