arduino-libraries / Keyboard

GNU Lesser General Public License v3.0
229 stars 160 forks source link

where is the key of "space"? #92

Closed zhjygit closed 8 months ago

zhjygit commented 8 months ago

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

edgar-bonet commented 8 months ago

Try this:

Keyboard.write(' ');

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

zhjygit commented 8 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.