Skip to content

Commit

Permalink
Update DOCS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqxx committed Jan 16, 2024
1 parent 943bbb5 commit f687ff3
Showing 1 changed file with 0 additions and 92 deletions.
92 changes: 0 additions & 92 deletions docs/DOCS.md
Original file line number Diff line number Diff line change
@@ -1,92 +0,0 @@
```mermaid
classDiagram
class PortInfo {
path : string,
manufacturer : string | undefined,
serialNumber : string | undefined,
pnpId : string | undefined,
locationId : string | undefined,
productId : string | undefined,
vendorId : string | undefined
}
class SerialOptions {
dataBits? : 5 | 6 | 7 | 8,
stopBits? : 1 | 1.5 | 2,
parity? : string,
timeout? : number,
timeoutBetween? : number
}
class Serial {
port : string,
baudrate : Baudrate | number,
options : SerialOptions
}
class open {
}
class close {
}
class read {
}
class readUntil {
}
class write {
}
class clearBufferIn {
}
class clearBufferOut {
}
class onError {
}
class onRead {
}
class onWrite {
}
class addEventListener {
}
class removeEventListener {
}
class list {
}
Serial --|> open
Serial --|> close
Serial --|> read
Serial --|> readUntil
Serial --|> write
Serial --|> clearBufferIn
Serial --|> clearBufferOut
Serial --|> onError
Serial --|> onRead
Serial --|> onWrite
Serial --|> addEventListener
Serial --|> removeEventListener
Serial --|> list
```

0 comments on commit f687ff3

Please sign in to comment.