1

I obtained a finetest auto-coding premium glucometer and I would like to use it to transmit measured data over the Internet to a remote destination as a project. To do that I am connecting to its serial port. However, I have not been able to find any information on what commands are used to retrieve data from it. So far, I have determined that the serial port is UART based: using 0 V for logic 0, and -3 V for logic 1. The port simply echoes any input I send to it without providing additional data.

  • 1
    In absense of documentation, the usual method is to get some software which already knows how to communicate with your device, look at the signals, and work out the protocol which is likely to be very simple. Is see in passing that [Diabass software](https://www.diabass.com/free/) claims to be able to communicate with your glucometer. – jonathanjo Feb 16 '23 at 14:02
  • 1
    See also this git repository which might include your device https://github.com/glucometers-tech/glucometer-protocols, and this https://electronics.stackexchange.com/questions/4335/reading-data-from-a-glucose-meter – jonathanjo Feb 16 '23 at 14:17
  • @jonathanjo I'll check diabass for the glucometer communication. However, I couldn't find anything about the glucometer in the other links. Would give feedback on the results – Gotnam_Toby Feb 16 '23 at 15:29
  • If you use Diabass you might well be able to find out the general scheme of the communication, and there's a decent chance it's like one of the ones in the glucometer-protocols. Even if it isn't they look like they have good tools for looking at the protocols, and would be interested to have whatever results you find. – jonathanjo Feb 16 '23 at 15:31
  • I have downloaded both DIABASS 6 and Infopia's Glucodiary application. After using them. the results are that the app first sends 0x53 to the device which replies with 0x53 as well. nothing happens after that. The glucodiary however sends the sequence 0x53, 0x0D, 0x0A and the glucometer simply responds with the same sequence. Either way, no data is being transmitted. – Gotnam_Toby Feb 18 '23 at 17:39
  • Well, I think you have to get some ready-made application to communicate with the device before you can get you own things working with it. Are there settings in the deive for enabling serial communications. Can you tell if the response is simultaenous or echoed? (simultaenous like when you short TXD and RXD on the computer; echoed would be that 0x53 from glucometer is *after* 0x0a from computer.) – jonathanjo Feb 19 '23 at 15:02

0 Answers0