- Mitglied seit
- 15. Mai 2008
- Beiträge
- 21.900
- Punkte für Reaktionen
- 14
- Punkte
- 0
Das Teil wird noch ausgebaut, aber so als erster Wurf stell ich es mal hier rein.
Wie immer bei einer 3rd-party-apps geht alles auf eigene Kappe und muss entsprechend vorbereitet sein (siehe Link).
(1) Erstellen einer application.cfg im Verzeichnis /usr/syno/synoman/webman/3rdparty/automate mit folgendem Inhalt:
(2) Erstellen einer Datei automate.php im Verzeichnis /usr/syno/synoman/phpsrc/automate mit folgendem Inhalt:
(3) den Disk Station Manager refreshen und rumspielen
itari
Das Bildchen:
Wie immer bei einer 3rd-party-apps geht alles auf eigene Kappe und muss entsprechend vorbereitet sein (siehe Link).
(1) Erstellen einer application.cfg im Verzeichnis /usr/syno/synoman/webman/3rdparty/automate mit folgendem Inhalt:
Rich (BBCode):
text = automate
description = automate
type = embedded
path = /phpsrc/automate/automate.php
(2) Erstellen einer Datei automate.php im Verzeichnis /usr/syno/synoman/phpsrc/automate mit folgendem Inhalt:
PHP:
<?php
if ($_REQUEST['action'] != '') {
exec('echo \\'.$_REQUEST['action'].' >/dev/ttyS1');
$_REQUEST['action'] = '';
}
?>
<html><head><title>cms4ds</title>
<style>body,input{font:11px Verdana;}input{width:100px}</style>
<script>function $(e) {return document.getElementById(e);}</script>
</head><body>
<form id="f" name="f" action="automate.php">
<input type="hidden" id="action" name="action" value="" />
<fieldset><legend>Status LED</legend>
<input type="button" value="off" onclick="$('action').value='7';submit();">
<input type="button" value="green on" onclick="$('action').value='8';submit();">
<input type="button" value="green blink" onclick="$('action').value='9';submit();">
<input type="button" value="orange on" onclick="$('action').value=':';submit();">
<input type="button" value="orange blink" onclick="$('action').value=';';submit();">
</fieldset>
<fieldset><legend>Copy LED</legend>
<input type="button" value="off" onclick="$('action').value='B';submit();">
<input type="button" value="on" onclick="$('action').value='@';submit();">
<input type="button" value="blink" onclick="$('action').value='A';submit();">
</fieldset>
<fieldset><legend>Power LED</legend>
<input type="button" value="off" onclick="$('action').value='6';submit();">
<input type="button" value="on" onclick="$('action').value='4';submit();">
<input type="button" value="blink" onclick="$('action').value='5';submit();">
</fieldset>
<fieldset><legend>Beeper</legend>
<input type="button" value="short" onclick="$('action').value='2';submit();">
<input type="button" value="long" onclick="$('action').value='3';submit();">
</fieldset>
</form></body></html>
(3) den Disk Station Manager refreshen und rumspielen
itari
Das Bildchen: