johnny78
Full Member level 5
- Joined
- Jun 28, 2017
- Messages
- 270
- Helped
- 1
- Reputation
- 2
- Reaction score
- 5
- Trophy points
- 1,298
- Activity points
- 3,469
Hi
one more problem need help from you guys
no more scale to test on So would you please help to make a small arduino sketch to emulate the scale data ?
i need to write N + 1 2 3 . 4 5 6 g
N = 0x4E
+ = 0x2B
1 = 0x31
2 = 0x32
3 = 0x33
. = 0x2E
4 = 0x34
5 = 0x35
6 = 0x36
g = 0x67
can i simply use this ?
Serial.begin(1200,SERIAL_7N1); //this is the settings i have used on Terminal Program to read the value
Serial.write(0x4E);
Serial.write(0x2B);
Serial.write(0x31);
Serial.write(0x32);
Serial.write(0x33);
Serial.write(0x2E);
Serial.write(0x34);
Serial.write(0x35);
Serial.write(0x36);
Serial.write(0x67);
or i should add delays or what ?
best regards
Johnny
one more problem need help from you guys
no more scale to test on So would you please help to make a small arduino sketch to emulate the scale data ?
i need to write N + 1 2 3 . 4 5 6 g
N = 0x4E
+ = 0x2B
1 = 0x31
2 = 0x32
3 = 0x33
. = 0x2E
4 = 0x34
5 = 0x35
6 = 0x36
g = 0x67
can i simply use this ?
Serial.begin(1200,SERIAL_7N1); //this is the settings i have used on Terminal Program to read the value
Serial.write(0x4E);
Serial.write(0x2B);
Serial.write(0x31);
Serial.write(0x32);
Serial.write(0x33);
Serial.write(0x2E);
Serial.write(0x34);
Serial.write(0x35);
Serial.write(0x36);
Serial.write(0x67);
or i should add delays or what ?
best regards
Johnny
Last edited: