Hi there
I am a complete newbie and would appreciate assistance please :).
I would like to build my own auto trickler for reloading.
My current setup is: FX120i digital balance (https://scalenet.com/pdf/FX-i_Precision_Scales.pdf)
Arduino Uno
RS232 to TTL converter connected to the Uno's RX, TX, GRD and 3.3V pins.
For now I would like like to display the weight on serial monitor.
The code I currently have just provide me with a lot of random number.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(0, 1);
void setup()
{
Serial.begin(19200);
mySerial.begin(19200);
}
void loop()
{
while (mySerial.available()){
Serial.println(mySerial.read(),HEX);
}
}
Thanks.