Listeners
Here is the angular stone of Webserial
, the listeners. With them, you can listen to the events that the device emits.
How to listen to an event
When you create a new instance of the Locker
class, you can listen to the events that the device emits.
machine.on('serial:message', (data) => {
console.log(data);
});
Each event has a different data structure, so you need to check the data structure for each event.
Note
All events will return SerialEvent
as shown in the image below.
Get all available listeners
For boardroid class there events that you can listen to, of course only listen to the events that you need.
Object
To get all the available listeners, you can use the availableListeners
property.
console.log(machine.availableListeners);
The result will be an object with the available listeners, and if you are listen each event
[
{
"type": "dispensed",
"listening": false
},
{
"type": "dispensing",
"listening": false
},
{
"type": "not-dispensed",
"listening": false
},
{
"type": "percentage:disable",
"listening": false
},
{
"type": "percentage:enable",
"listening": false
},
{
"type": "percentage:open",
"listening": false
},
{
"type": "serial:connected",
"listening": true
},
{
"type": "serial:connecting",
"listening": false
},
{
"type": "serial:disconnected",
"listening": true
},
{
"type": "serial:error",
"listening": true
},
{
"type": "serial:lost",
"listening": false
},
{
"type": "serial:message",
"listening": true
},
{
"type": "serial:need-permission",
"listening": true
},
{
"type": "serial:reconnect",
"listening": false
},
{
"type": "serial:sent",
"listening": false
},
{
"type": "serial:soft-reload",
"listening": true
},
{
"type": "serial:timeout",
"listening": false
},
{
"type": "serial:unsupported",
"listening": true
},
{
"type": "unknown",
"listening": false
}
]