Serial
This plugin provides functions for working with Serial connections
Stuck on a Cordova issue?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Installation
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Supported Platforms
- Android
- Ubuntu
Usage
import { Serial } from '@ionic-native/serial/ngx';
constructor(private serial: Serial) { }
...
this.serial.requestPermission().then(() => {
this.serial.open({
baudRate: 9800,
dataBits: 4,
stopBits: 1,
parity: 0,
dtr: true,
rts: true,
sleepOnPause: false
}).then(() => {
console.log('Serial connection opened');
});
}).catch((error: any) => console.log(error));