Added dialog implementation

Signed-off-by: jbicker <jan.bicker@typefox.io>
This commit is contained in:
jbicker
2019-07-08 11:58:59 +02:00
parent 4c66dec36e
commit 769689ff6d
9 changed files with 370 additions and 24 deletions

View File

@@ -31,6 +31,7 @@ export class BoardsServiceImpl implements BoardsService {
name: b.getName() || "unknown",
fqbn: b.getFqbn(),
port: b.getPort(),
type: 'serial',
serialNumber: b.getSerialnumber(),
productID: b.getProductid(),
vendorID: b.getVendorid()
@@ -41,6 +42,7 @@ export class BoardsServiceImpl implements BoardsService {
address: b.getAddress(),
info: b.getInfo(),
port: b.getPort(),
type: 'network'
});
return { boards: serialBoards.concat(networkBoards) };