Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Braille does not display when announcing a message with NVDA. #19

Closed
Nael-Sayegh opened this issue Feb 14, 2024 · 2 comments · May be fixed by #20
Closed

Braille does not display when announcing a message with NVDA. #19

Nael-Sayegh opened this issue Feb 14, 2024 · 2 comments · May be fixed by #20

Comments

@Nael-Sayegh
Copy link

Hello,
I have tried using the library with Python 3.11 and NVDA 2023.3.
Here is a snippet of code:
`import accessible_output2.outputs.auto

message=accessible_output2.outputs.auto.Auto()
message.output("Test de vocalisationn")`
When I run this code, NVDA does pronounce the message correctly, but the braille display does not show it.
I tried using the braille function, but even there the message is not displayed.

@EphDoering
Copy link

I also experienced an issue with the combination of Auto and output, but it worked fine with braille.

Looking into the auto output function it only calls the speak function on the first available output. So braille not working with auto output makes sense.

Further looking into the output function on the base class, it seems to expect a return value from either the speak function or braille function, and none of those functions seem to actually return anything so it always raises an error even if both outputs work.

@Nael-Sayegh
Copy link
Author

Hello @EphDoering,
In fact, the Braille display issue was due to a problem in my configuration. Thank you for your response and the PR you opened for the other issue you noticed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants