GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
controller_leds(3) Arcan Lua API controller_leds(3)

controller_leds - Query or rescan for LED controllers

[nleds, variable, rgb] or [nctrls, low32, high32]
controller_leds(

ctrlid )

If ctrlid is set, the values for the specified controller are returned. The id of a controller can be retrieved as part of the _input event handler on status == "added" events either directly on devkind == "led" or for some other devices through the devref field. _display_state events may also provide a ledctrl,ledind. If ctrlid is not set or set to -1, a rescan will be queued that might generate additional device status events. It also returns the number of active controllers and two bitmasks (capped to 64 controllers)

function controller_leds0()
      local do_ctrl = function(i)
            local nleds, shift, rgb = controller_leds(i);
            print("controller", i, "leds:", nleds,
                  "intensity:", intensity and "yes" or "no",
                  "rgb:", rgb and "yes" or "no");
      end
-- due to the double size restriction, this had to be split
      local count, first, second = controller_leds();
      print("# controllers:", count);
      for i=0, 31 do
            if (bit.band(first, bit.lshift(1, i))) then
                  do_ctrl(i);
            end
      end
      for i=0, 31 do
            if (bit.band(first, bit.lshift(1, i))) then
                  do_ctrl(32, i);
            end
      end
end
June 2022 iodev

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.