Help for this page

Select Code to Download


  1. or download this
    \xFE\x90     #This moves the LCD 'cursor' off screen
    \xFF\x00\x05 #This tells the SSC to move the first servo to
                 #position 5 (range of 0-254 acceptable, but I
                 #will limit that to 253 to avoid the LCD 
                 #display).
    
  2. or download this
    #!/usr/bin/perl
    use Device::SerialPort 0.12;
    ...
     $x--;
    }
    #end
    
  3. or download this
    $fs = sprintf "\\xFE\\x90\\xFF\\x00\\x%X", int($x*10);
    $ob->write($fs); # does not appear to work