Qr
The QR object displays a QR code that can be scanned with a mobile device to open a specific URL.
HSYCO URLs can also be encoded in the QR code, allowing users to open a project and send commands to the project when the QR code is scanned.
Attributes
Common
ID
Sets the object's ID.
The ID identifies the object and is used to reference it in UISet actions, allowing to change its attributes dynamically.
The ID is not unique, it can be shared among multiple objects to quickly change a common attribute.
IDs can't be changed with a UISet action, but they can have a Value Binding assigned to them. Value Bindings on IDs allow an object to be dinamically attached to a set of attribute values.
E.g. the following Value Binding switches the ID of the object between mybutton1
and mybutton2
based on the value of the UISet button.address
:
Value binding:
="mybutton" + ui('button', 'address')
UISet:
UISet('button', 'address', '1')
switches the ID to mybutton1
UISet('button', 'address', '2')
switches the ID to mybutton2
Position and Size
Position
Sets the object's position.
The default
value is: x0y0
.
Attribute Values
Value | Description | Example |
---|---|---|
x<left>y<top> | Specify left/top coordinates in pixels. | x10y20 |
Flex Grow
Specifies if the objects should grow to fill the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects expand to fill the available space. |
false | Objects do not grow to fill the available space. |
Flex Shrink
Specifies if the objects should shrink to fit the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects shrink to fit the available space. |
false | Objects do not shrink to fit the available space. |
Width
Sets the object's width in pixels.
Minimum value is 1.
Height
Sets the object's height in pixels.
Minimum value is 1.
Data
type
Specifies the type of data to encode in the QR code.
The default
value is: value
.
Attribute Values
Value | Description |
---|---|
value | Default value. Text. Can be a URL. |
hsyco-url | Opens a URL to an HSYCO project on the current server. |
hsyco-app | Opens or creates a connection on the HSYCO App (iOS/Android), with the option to send a command. |
Value
Specifies the encoded value. URLs can be specified to open a web page when the QR code is scanned.
Attribute Values
Value | Description |
---|---|
<string> | URL. |
Project ID
Specifies the ID of the project to open when the QR code is scanned.
The default
value is: =project:id
.
Attribute Values
Value | Description |
---|---|
<string> | Project ID. |
Command Name
Specifies the command to send to the project when the QR code is scanned.
Attribute Values
Value | Description |
---|---|
<string> | Command. |
Command Parameter
Specifies the parameter of the command to send to the project when the QR code is scanned.
Attribute Values
Value | Description |
---|---|
<string> | Parameter. |
Appearance
Background Color
Specifies the background color of the QR code.
Foreground Color
Specifies the foreground color of the QR code.
View
Visible
Sets the object's visibility.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Visible. |
false | Hidden. |
Enabled
Specifies if the object is enabled or disabled. A disabled object appears as grayed out and can't be interacted with.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Enabled. |
false | Disabled. |
Blink
Blinks the object at the specified speed.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. Not blinking. |
slow | Blinks slowly. |
fast | Blinks fast. |
Transition
Specifies the transition effect when the object is shown or hidden.
The default
value is: none
.
This attribute is experimental
. It might not work properly and it might be modified or removed in a future release.