arduino-libraries / Keyboard

GNU Lesser General Public License v3.0
225 stars 158 forks source link

where is the key of "space"? #92

Closed zhjygit closed 6 months ago

zhjygit commented 6 months ago

now, there is only key_backspace, however there is no space(null key or blank key)

edgar-bonet commented 6 months ago

Try this:

Keyboard.write(' ');

In the line above, note the space between the single quote characters.

zhjygit commented 6 months ago

Try this:

Keyboard.write(' ');

In the line above, note the space between the single quote characters.

Thanks sir, I did as above some days ago. Thank you all the same.