Help for this page

Select Code to Download


  1. or download this
    @clients = (
        { MAC => $mac, RSSI => $rssi, SNR => $snr }, /* 0 */
        { MAC => $secondmac, RSSI => $secondrssi, SNR => $secondsnr }, /* 
    +1 */
        /* etc */
    );
    
  2. or download this
    %client_0 = %{$clients[0]};
    
  3. or download this
    my @clients;
    
    ...
    
    # Or setting individual bits
    $clients[0]->{MAC} = $mac;