Update readme.md

This commit is contained in:
I-Am-Jakoby 2023-06-04 21:58:54 -05:00 committed by GitHub
parent d0eb312f87
commit 0f717587ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,6 +78,22 @@ function voiceLogger {
}
```
```mermaid
graph TB;
A[Start voiceLogger] --> B[Start Listening]
B --> C{Recognized text?}
C -->|Yes| D[Write to console]
D --> E[Save to file]
E --> F[Send to Discord]
F --> G{Keyword recognized?}
G -->|'note'| H[Open Notepad]
G -->|'exit'| I[Exit function]
G -->|No keyword| B
C -->|No| B
I --> J[Clear Log]
J --> K[End voiceLogger]
```
<p align="right">(<a href="#top">back to top</a>)</p>
## Contributing