Bitmask Table
Last updated
Was this helpful?
This widget helps display a table of values as LED indicators. The hardware sends a bitmask value, which the server parses to update LED states automatically. Each bit represents the ON/OFF status of an LED on the corresponding row.
A bitmask stores multiple true/false (binary) values in a single integer. Each bit represents a separate state (e.g., an error, alarm, or status).
1 = ON (True)
0 = OFF (False)
When the hardware sends a bitmask as an integer, the server extracts individual bit states to update the table.
A device has 11 error states, each represented by a bit in a bitmask value. If an error occurs, the corresponding bit is set to 1, turning ON the LED in the respective row.
Received Integer: 123
Binary Representation: 1111011
Mapped States:
Bit 0 → True
Bit 1 → True
Bit 2 → False
Bit 3 → True
Bit 4 → True
Bit 5 → True
Bit 6 → True
(Other bits remain False)

Title – Optional widget title
Datastream – Select the datastream receiving the bitmask
Only integer datastreams are supported
Label position – Labels on the left or right
Hide false values – Hide rows with a false (0) value
False color – LED color for false state
True color – LED color for true state
Bits mapping – Map bit indexes to specific rows
Inverse values – Reverse 1 and 0 logic (ON becomes OFF)
Note: If your hardware sends bits that aren’t mapped in the widget settings, they will be ignored in the UI.

Only integer datastreams are supported
Maximum of 50 rows
Maximum label length: 100 characters
Use this command in firmware to update widget properties:
vPin: Virtual pin assigned to the widget
widgetProperty: The property to change
propertyValue: New value to assign
Warning: Avoid placing Blynk.setProperty() in the loop() function — this may flood the server and disconnect your device. Use timers or event-based updates instead.
You can dynamically update these widget properties:
label
isHidden
isDisabled
Example (Firmware)
Example (HTTP API)
Last updated
Was this helpful?
Was this helpful?
Blynk.setProperty(vPin, "widgetProperty", "propertyValue");Blynk.setProperty(V1, "isHidden", "true");https://{server_address}/external/api/update/property?token={your_32_char_token}&pin=V1&isHidden=true
