GRBL for Small Computer
Testato e funzionante su TL703 e simili con SO OpenWrt
Funziona anche con RaspberryPi e simili con SO Linux
Installare:
php5
Guida:
Presa da wiki.openwrt.org
Installare PHP5:
opkg update
opkg install php5 php5-cgi
Installare UHTTPD:
opkg update
opkg install uhttpd
Aggiungere una nuova istanza sulla porta 81:
uci set uhttpd.llmp=uhttpd
uci set uhttpd.llmp.listen_http=81
uci set uhttpd.llmp.home=/srv/www
uci commit uhttpd
Creare la cartella in cui inserire lo script:
mkdir -p $(uci get uhttpd.llmp.home)
Avviare il server UHTTPD:
/etc/init.d/uhttpd restart
/etc/init.d/uhttpd start
/etc/init.d/uhttpd enable