Documentation
Serial
- ✅ 2.2 | ✅ 2.1 | ⛔ 2.0 | ⛔ 1.9 | ...
Read and write data to a serial, parallel or virtual serial port.
qz.serial.findPorts().then((ports) => {
console.log(ports);
}).catch(displayError);
-
Open a serial port:
openPort(port, bounds)
var properties = { rx: { start: '\x02', end: '\x0D', width: null }, baudRate: 9600, dataBits: 8, stopBits: 1, parity: 'NONE', flowControl: 'NONE' }; // WARNING: Since 2.0.7 baud properties should be set here in openPort() qz.serial.openPort('COM1', properties).then(() => { // or '/dev/ttyUSB0', etc console.log('COM1 opened'); }).catch((err) => { console.error(err); });
-
Note: For versions 2.0 and older, the properties syntax does not use the
rx { }
object, but instead usesstart
,end
,width
. Backwards support for the 2.0 syntax is deprecated in 2.1 versions.
-
Note: For versions 2.0 and older, the properties syntax does not use the
-
Close a serial port
closePort(port)
qz.serial.closePort('COM1').then(() => { // or '/dev/ttyUSB0', etc console.log('COM1 closed'); }).catch((err) => { console.error(err); });
-
Send data to the open serial port via
sendData(port, data, properties)
Note: The default
sendData()
settings must be changed for Mettler Toledo scalesvar data = 'hi, serial port\n'; // or since 2.1.1: { type: 'plain', data: '...' } // WARNING: sendData() properties are deprecated in 2.0.7. Baud properties should be set in openPort() instead. qz.serial.sendData('COM1', data).catch(displayError);
Since 2.1.1
-
Send data to the open serial port via
sendData(port, data, properties)
var data = { type: 'hex', data: 'x68x65x6Cx6Cx6Fx0A' // 'hello\n' }; qz.serial.sendData('COM1', data).catch(displayError);
Since 2.1.1
-
Send data to the open serial port via
sendData(port, data, properties)
var data = { type: 'file', data: 'mydirectory/myfile.txt' }; qz.serial.sendData('COM1', data).catch(displayError);
Since 2.1.1
-
Send data to the open serial port via
sendData(port, data, properties)
var data = { type: 'base64', data: 'aGVsbG8K' // 'hello\n' }; qz.serial.sendData('COM1', data).catch(displayError);
The default settings need to be changed for serial communication to work with Mettler Toledo scales. For other scale types, see issue #1158
.
var data = 'W\n'; // <--- Weight command - Also works with 'W\r'
var properties = {
// ...
baudRate: 9600,
dataBits: 7, // <--- Changed from 8
stopBits: 1,
parity: 'EVEN', // <--- Changed from NONE
flowControl: 'NONE'
};
// WARNING: sendData() properties are deprecated in 2.0.7. Baud properties should be set in openPort() instead.
qz.serial.sendData('COM1', data, properties).catch(displayError);
Optima scale requires the scale configured for "Command request method", which is often stored in setting C18
-> 3
. A key combination (e.g. ↵ PRINT + ↱ HOLD) will enter settings mode. ⍐ ACCUM will save and exit.
Command | Name | Function |
---|---|---|
T | Tare | Save and clear tare |
Z | Zero | Zero gross weight |
P | Print the weight | |
R | G.W/N.W | Read gross weight or net weight |
C | Kg/lb | Kg/lb conversion |
G | G.W | Check gross weight at net weight mode |
var data = 'R\n'; // <--- Read gross weight or net weight
var properties = {
rx: {
start: '\x02',
end: '\x0D',
width: null
},
baudRate: 9600,
dataBits: 8,
stopBits: 1,
parity: 'NONE',
flowControl: 'NONE'
};
qz.serial.openPort('COM1', properties).then(() => { // or '/dev/ttyUSB0', etc
console.log('COM1 opened');
}).then(() => {
return qz.serial.sendData('COM1', data);
}).catch((err) => {
console.error(err);
});
-
Use a callback for processing the data returned from the serial port.
qz.serial.setSerialCallbacks((evt) => { if (evt.type !== 'ERROR') { console.log('Serial', evt.portName, 'received output', evt.output); } else { console.error(evt.exception); } });
If no ports will list or if you receive Permission denied
in Linux (bugs.launchpad.net#949597)
Error: Port name - /dev/ttyUSB0; Method name - openPort(); Exception type - Permission denied.
-
Run the following command:
sudo usermod -a -G dialout "$USER"
-
Log out of the desktop (or reboot)
-
Log in to the desktop, try again