回答編集履歴
5
modify
answer
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
```
|
17
17
|
|
18
18
|
The Compilar will casts all values into 2 bytes or 4 bytes integer when compare it with a numeric value.
|
19
|
-
However, 'char' allows only -128 to 127 and could not
|
19
|
+
However, 'char' allows only -128 to 127 and could not contains 0xE3 that means 227.
|
20
20
|
|
21
21
|
###### More information:
|
22
22
|
|
4
modify
answer
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
```
|
17
17
|
|
18
18
|
The Compilar will casts all values into 2 bytes or 4 bytes integer when compare it with a numeric value.
|
19
|
-
However, 'char' allows only -
|
19
|
+
However, 'char' allows only -128 to 127 and could not contain 0xE3 that means 227.
|
20
20
|
|
21
21
|
###### More information:
|
22
22
|
|
3
modify
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
I think that you may use 'unsigned char'
|
1
|
+
I think that you may use 'unsigned char' instead of 'char'.
|
2
2
|
|
3
3
|
```Arduino
|
4
4
|
unsigned char dat[5]; //送信された文字を受け取る配列
|
2
modify
answer
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
> dat[0] == 'FFFFFFE3'
|
24
24
|
|
25
|
-
This means that comparing pointers. I think it will not be muched if dat[0] has same value as 'FFFFFFE3'.
|
25
|
+
This means that comparing their pointers. I think it will not be muched if dat[0] has same value as 'FFFFFFE3'.
|
26
26
|
|
27
27
|
|
28
28
|
###### Addition: Size of int.
|
1
modify
answer
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
}
|
16
16
|
```
|
17
17
|
|
18
|
-
The Compilar will casts all values into 2 bytes or 4 bytes integer when compare it with numeric value.
|
18
|
+
The Compilar will casts all values into 2 bytes or 4 bytes integer when compare it with a numeric value.
|
19
19
|
However, 'char' allows only -127 to 127 and could not contain 0xE3 that means 227.
|
20
20
|
|
21
21
|
###### More information:
|