? online

Raspberry Pi als DMX Webserver

Ein Laborprojekt für Netzwerk- und Bustechnik von Ida und Jens
512 ) $_GET['start'] = 1; // end-channel? if ( !isset($_GET['end']) || $_GET['end'] < 1 || $_GET['end'] > 512 ) $_GET['end'] = 12; // zahlendreher? if ( $_GET['start'] > $_GET['end'] ) { $end = $_GET['end']; $_GET['end'] = $_GET['start']; $_GET['start'] = $end; unset($end); } // erstmal slider bauen for ( $i = $_GET['start']; $i <= $_GET['end']; $i++ ) { echo'
Ch '. str_pad($i, 3, 0, STR_PAD_LEFT) .'
'; }; ?>