92d42edaff
Rather than queuing inbound messages, the HubController now saves pending promises/rejects for each pending request. Each inbound packet is checked at the time of arrival, and if the ID matches a pending response, the corresponding promise is called. This fixes a problem where the longer the time between reads, the more garbage responses queue up that are guaranteed to get thrown away the next time the next response was gathered. |
||
---|---|---|
.github/workflows | ||
.vscode | ||
media | ||
src | ||
.eslintrc.json | ||
.gitignore | ||
.vscodeignore | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
Mind_Reader
The current editor options available lack the level of accessibility that is required to allow students who are visually impaired to adequately edit, write, and debug code. This tool would extend Visual Studio Code’s existing accessibility options to allow everyone, primarily students K-12, to learn programming with Lego Mindstorms. Our goal is to provide an enhanced experience for students who are visually impaired that is transparent to sighted students. This allows for everyone to use the same software solution, whether or not they are vision impaired.
Dependencies
See "Your First Extension" API page if you need more help.
Cloning & Setup
Use the following to set up the extension for development.
git clone https://github.com/SingleSemesterSnobs/Mind_Reader.git
cd Mind_Reader
npm install
While inside the repository do
code .
to open the cloned repository in VS Code.
Then, use "Run > Start Debugging" on the menu bar to start the Extension Development Host (F5 by default).