Skip to content

olgapavlova/zoomboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zoom keyboard — small keyboard to improve educational experience during Zoom sessions

Zoom Keyboard

Small keyboard to improve educational experience during Zoom sessions.

Provides 3 buttons for the hotkeys:

  • Raise hand/lower hand
  • Mute/unmute audio
  • Show/hide in-meeting chat panel

Two main buttons support student's use case:
raise hand → unmute audio → answer the question → mute audio, lower hand.
As an extra feature, third button shows/hides in-meeting chat to avoid annoyance which happens because of chat allerts.

Platform: Digispark ATtiny 85.

Hotkey preset: Zoom for Apple computers, customized version (see below).
Windows, Linux, etc. could be configured without any problems, and all have been tested.

 

How Zoom keyboard_works

 

Hardware

Caution

Never use this code without adapted circuit diagram. It just will not work properly.

The main idea of this cirquit is to avoid contact bounce without, well, coding. Code is fine, but my interest here is to make out-of-code solution for contact bounce, and to practice in cirquits.

Full Cirquit Diagram

Full cirquit diagram for Zoom keyboard

Breadboard Prototype

It is not necessary to mount all details (as you can see on photo), one button is enough for prototype purposes.

Breadboard prototype of Zoom keyboard

Cirquit Board

Buttons and Digispark are connected separately with wires. Cirquit Board for Zoom Keyboard

Software and System Configuration

Warning

The code is preconfigured for my system only. To work properly on your side, it has to be changed a bit as it explained below.

Pin Numbers

Preprocessor variables PIN_* in zoom_keyboard.ino file configures your button pins in usual Arduino way.

#define PIN_HAND 0
...
#define PIN_MIC 1
...
#define PIN_CHAT 2

You can use only 0, 1, and 2 pins. 3 and 4 pins are reserved for USB on Digispark boards, and not available for this project. You can try to use 5 pin. However, some boards do not support it properly, so be careful.

Debug Mode

In Button.h file, there is a string with DEBUG preprocessing variable:

#define DEBUG 0

Change to 1 (and save the file), if you wish to switch modificators (SHIFT, etc.) off.

Apple Hotkeys Configuration for Multilanguage Environments

If you practice more than one language, it might be tricky to use not only this keyboard, but Zoom hotkeys as a whole. The reason is, most hotkeys work only in English keyboard layout.

The second problem is, DigiKeyboard library has not any clue about CMD button. Is can be resolved, hovewer makes code a bit complicated.

Fortunately, Zoom allows to reconfigure hotkeys.
Here is my solution to avoid all possible troubles.

  • ALT + 1 — raise hand/lower hand
  • ALT + SHIFT + 0 — mute/unmute audio
  • F7 — show/hide in-meeting chat panel Changes should be appied both to Zoom and to Arduino code.

To avoid conflict between chat, hand, and audio, it is better to check hand and audio as global hotkeys. They have to be configured in Zoom, not in Arduino code.

To configure Arduino code, change some preprocessing variables:

#define KEY_HAND  KEY_1
#define MOD_HAND  MOD_ALT_LEFT
...
#define KEY_MIC   KEY_0
#define MOD_MIC   MOD_ALT_LEFT | MOD_SHIFT_LEFT
...
#define KEY_CHAT  KEY_F7
#define MOD_CHAT  0

To combine two mod keys, join them with | (OR) operator.

You can find the full list of available key codes in DigiKeyboard library source code.

Useful Links

These sources altogether are enough to rebuild the project from scratch. Partially in Russian language. I hope, it cannot be tricky to translate it automatically.

About

Small keyboard to improve educational experience during Zoom sessions.

Topics

Resources

License

Stars

Watchers

Forks

Languages