The iOS app which connects to the Listener desk accessory on an Apple IIgs for doing speech dictation.
Go to file
Jeremy Rand de1cab8207 Update the readme to reflect the latest status. 2022-03-10 23:12:58 -05:00
ListenerGS Final changes before starting beta testing. 2022-03-08 23:05:23 -05:00
ListenerGS.xcodeproj Some minor tweaks to try to get speech recognition working from MacOS. It is still not working from my x86 iMac but I just tested this on our new M1 MacBook Air and it does work there. Not sure what the difference is and hope it is just a problem on my iMac. 2022-02-21 23:22:58 -05:00
ListenerGSTests Rename to ListenerGS 2021-09-15 22:42:53 -04:00
ListenerGSUITests Rename to ListenerGS 2021-09-15 22:42:53 -04:00
LICENSE Add a license file. 2021-07-16 12:53:59 -04:00
README.md Update the readme to reflect the latest status. 2022-03-10 23:12:58 -05:00

README.md

ListenerGS

This is an iOS app that connects to an Apple IIgs over a network and streams text to it from voice dicatation. It communicates to the Listen NDA which must be running on your network capable Apple IIgs. See that other project for more details about how to use this app.

Obtaining a Copy

I am getting close to making this available as a release that anyone can obtain. It is currently in beta test and the iOS and macOS app have passed Apple's beta testing review. That doesn't mean that the app will pass full review but I am hopeful. So, perhaps soon I will be able to provide a link for where to download this for yourself.

Some Technical Details

It relies on the Speech Framework built into recent versions of iOS.

This app uses SwiftSocket v2.1.0 for opening the TCP connection to the Apple IIgs. It also uses BinUtils for packing/unpacking structures on the TCP connection.

Warning

This is my first from scratch application in Swift and in SwiftUI and it shows. I know this code is crufty and bad, even as an inexperienced Swift coder. It was created as part of the KansasFest 2021 HackFest contest so I only had so much time for code cleanup. Since then, I have done a bunch of cleanup and things are better. But I am still not happy with how the code handles the network reads and writes. A producer/consumer approach where the speech recognizer produces text and the network code consumes that text would be better. But Apple just changed the multithreading approach in Swift this past year and I am not sure the best way to structure that. Be patient as this old dog tries to learn some new tricks.