findConnectedDevices function

List<String> findConnectedDevices()

Implementation

List<String> findConnectedDevices() {
  return SerialPort.availablePorts.where((a) => !a.contains('luetooth')).toList();
}