Hi all,
I design with IDE arduino and teensy LC
i would like design à keyboard custum for me, I need the key "<" and ">", i used keyboard azerty,
when i try this:
if (key == '*') {
Keyboard.write(60);
Keyboard.send_now();
}
in table ascii 60 , i read touche "<", but I have a key "." (point).
I try this:
/*
ASCII table
Prints out byte values in all possible formats:
* as raw binary values
* as ASCII-encoded decimal, hex, octal, and binary values
For more on ASCII, see http://www.asciitable.com and http://en.wikipedia.org/wiki/ASCII
The circuit: No external hardware needed.
created 2006
by Nicholas Zambetti
modified 9 Apr 2012
by Tom Igoe
This example code is in the public domain.
<http://www.zambetti.com>
*/
void setup() {
//Initialize serial and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
// prints title with ending line break
Serial.println("ASCII Table ~ Character Map");
}
int thisByte = 33;
// you can also write ASCII characters in single quotes.
// for example. '!' is the same as 33, so you could also use this:
//int thisByte = '!';
void loop() {
// prints value unaltered, i.e. the raw binary version of the
// byte. The serial monitor interprets all bytes as
// ASCII, so 33, the first number, will show up as '!'
Keyboard.write(thisByte);
delay(100);
Keyboard.println(" ");
delay(100);
Serial.print(", dec: ");
// prints value as string as an ASCII-encoded decimal (base 10).
// Decimal is the default format for Serial.print() and Serial.println(),
// so no modifier is needed:
Serial.print(thisByte);
// But you can declare the modifier for decimal if you want to.
//this also works if you uncomment it:
// Serial.print(thisByte, DEC);
Serial.print(", hex: ");
// prints value as string in hexadecimal (base 16):
Serial.print(thisByte, HEX);
Serial.print(", oct: ");
// prints value as string in octal (base 8);
Serial.print(thisByte, OCT);
Serial.print(", bin: ");
// prints value as string in binary (base 2)
// also prints ending line break:
Serial.println(thisByte, BIN);
// if printed last visible character '~' or 126, stop:
if (thisByte == 128) { // you could also use if (thisByte == '~') {
// This loop loops forever and does nothing
while (true) {
continue;
}
}
// go on to the next character
thisByte++;
}
this is the result in notepad:
ù
9
0
8
+
;
)
!
é
"
'
(
-
è
_
ç
M
m
. ù
9
0
88
+
;
)
=
/
§
2
B
F
G
H
I
J
K
L
?
N
O
A
U
V
Z
X
Y
W
^
*
$
6
°
²
q
b
c
e
i
j
k
l
,
o
s
t
u
v
z
x
y
w
¨
µ
£
Where is key "<" and ">" ???
How i cant générate these key ? is it possible ?