Instantiates a Pixel.
The session used to communicate with the Pixel.
Optionalinfo: Partial<Protected Readonly_Protected Readonly_ReadonlyisReadonlytypeDevice type is Pixels die.
StaticMutableGets the color of the Pixel.
Gets the number of faces of the Pixel.
Gets the die type of the Pixel.
Gets the Pixel firmware build date.
Whether data is being transferred from or to the die.
Gets the number of LEDs for the Pixel, may be 0 until connected to device.
Set logger to use by this instance.
Toggle logging information about each send and received message.
Toggle logging the serialized (binary) data for each send and received message.
Gets the Pixel name, may be empty until connected to device.
Gets the unique Pixel id of the device, may be 0 until connected.
Gets the on-die profile hash value. This can be used as an identifier for the current profile.
Gets the last RSSI value notified by the Pixel.
Call () to automatically update the RSSI value.
ProtectedsessionGets the Pixel last known connection status.
Gets the unique id assigned by the system to the Pixel Bluetooth peripheral.
Protected_Protected_Protected_Protected_Sends a message to the Pixel and wait for a specific response.
Message with the data to send or just a message type.
Expected response type.
Timeout in mill-seconds before aborting waiting for the response.
A promise resolving to the response in the form of a message type or a message object.
Protected_Sends a message to the Pixel and wait for a specific response which is returned casted to the expected type.
Message with the data to send or just a message type.
Expected response class type.
A promise resolving to a message object of the expected type.
Protected_Sends a message to the Pixel.
Message with the data to send or just a message type.
Whether to request a confirmation that the message was received.
A promise that resolves once the message has been send.
Protected_Protected_Waits for a message from the Pixel.
Type of the message to expect.
Timeout before aborting the wait.
A promise with the received message of the expected type.
Protected_Protected_Protected_Protected_Registers a listener function that will be called when the specified event is raised. See PixelEventMap for the list of events and their associated data.
A case-sensitive string representing the event type to listen for.
The callback function.
Registers a listener function that will be called on receiving raw messages of a given type from the Pixel.
The type of message to watch for.
The callback function.
Adds the given listener function for the specified property.
The name of the property.
The callback function.
Requests the Pixel to blink and wait for a confirmation.
Blink color.
Optionalopt: {Optionalcount?: numberNumber of blinks.
Optionalduration?: numberTotal duration of the animation in milliseconds.
OptionalfaceMask?: numberSelect which faces to light up.
Optionalfade?: numberAmount of in and out fading, 0: sharp transition, 1: maximum fading.
OptionalloopCount?: numberHow many times to loop the animation.
A promise that resolves once the die has confirmed receiving the message.
Asynchronously tries to connect to the device. Throws on connection error.
Delay before giving up (may be ignored when having concurrent calls to connect()). It may take longer than the given timeout for the function to return.
A promise that resoles to this instance once the connection has been established.
Will throw a PixelConnectError if it fails to connect in time.
Immediately disconnects from the device.
A promise that resolves once the disconnect request has been processed.
ProtectedemitEmit a Pixel event for the specified property. This function should be called by the concrete type whenever the a property's value changes.
Event name.
Plays the (single) LEDs animation included in the given data set.
The data set containing just one animation to play.
A promise that resolves once the transfer has completed.
Asynchronously gets the Pixel RSSI value.
A promise revolving to a negative number representing the RSSI value.
Unregisters a listener from receiving events identified by the given event name. See PixelEventMap for the list of events and their associated data.
A case-sensitive string representing the event type.
The callback function to unregister.
Unregisters a listener from receiving raw messages of a given type.
The type of message to watch for.
The callback function to unregister.
Removes the given listener function for the specified property.
The name of the property.
The callback function to unregister.
Requests the Pixel to change its name.
New name to assign to the Pixel. Must have at least one character.
A promise that resolves once the die has confirmed being renamed.
Requests the Pixel to regularly send its measured RSSI value.
Whether to turn or turn off this feature.
The minimum time interval in milliseconds between two RSSI updates.
A promise that resolves once the message has been send.
Sends a message to the Pixel and wait for a specific response.
Message with the data to send or just a message type.
Expected response type.
Timeout in mill-seconds before aborting waiting for the response.
A promise resolving to the response in the form of a message type or a message object.
Sends a message to the Pixel and wait for a specific response which is returned casted to the expected type.
Message with the data to send or just a message type.
Expected response class type.
A promise resolving to a message object of the expected type.
Sends a message to the Pixel.
Message with the data to send or just a message type.
Whether to request a confirmation that the message was received.
A promise that resolves once the message has been send.
Requests the Pixel to start faces calibration sequence.
A promise that resolves once the message has been send.
Requests the Pixel to stop all currently playing animations.
A promise.
Uploads the given data set of animations to the Pixel flash memory.
The data set to upload.
A promise that resolves once the transfer has completed.
Uploads the given data set of animations to the Pixel RAM memory. Those animations are lost when the Pixel goes to sleep, is turned off or is restarted.
The data set to upload.
A promise that resolves once the transfer has completed.
Requests the Pixel to completely turn off, reset or sleep.
A promise that resolves once the message has been send.
Update Pixel info from an external source such as scanning data.
The updated info.
Represents a Pixels die. Most of its methods require the instance to be connected to the Pixel device. Call the () method to initiate a connection.
Call addEventListener to get notified for rolls, connection and disconnection events and more.
Call addPropertyListener to get notified on property changes.