Hoping everyone is staying safe....
I have been asked by a few of hospitals in my area if I can develop a software package to help monitor patients.
I would like to do my part and proceed with this however the current oximeters use the new BLE standard and I have never worked with this.
Has anyone out there ever tried and succeeded connecting to a BLE device and read data from them ?
If so, would you be willing to share your code with me so I can do something for these hospitals?
Helping with Covid-19
- Jeff Barnes
- Posts: 912
- Joined: Sun Oct 09, 2005 1:05 pm
- Location: Ontario, Canada
- Contact:
Helping with Covid-19
Thanks,
Jeff Barnes
(FWH 12.01, xHarbour 1.2.1, Bcc582)
Jeff Barnes
(FWH 12.01, xHarbour 1.2.1, Bcc582)
- Jeff Barnes
- Posts: 912
- Joined: Sun Oct 09, 2005 1:05 pm
- Location: Ontario, Canada
- Contact:
Re: Helping with Covid-19
Thanks,
Jeff Barnes
(FWH 12.01, xHarbour 1.2.1, Bcc582)
Jeff Barnes
(FWH 12.01, xHarbour 1.2.1, Bcc582)
Re: Helping with Covid-19
Hi, Bluetooth devices mostly use rs232 protocol to send and receive data. First you need to get this...
https://www.ebay.com/itm/MCU-USB-Serial ... cd1de31dcc
Then configure it("name/pass" via hyperterminal for example) to connect to you ble device. And then with hbcom send and receive data.
You need to know too the technical data of the protocol your ble device has to understand the format of the data you receive to decode it.
Diego.
https://www.ebay.com/itm/MCU-USB-Serial ... cd1de31dcc
Then configure it("name/pass" via hyperterminal for example) to connect to you ble device. And then with hbcom send and receive data.
You need to know too the technical data of the protocol your ble device has to understand the format of the data you receive to decode it.
Diego.
Jeff Barnes wrote:Hoping everyone is staying safe....
I have been asked by a few of hospitals in my area if I can develop a software package to help monitor patients.
I would like to do my part and proceed with this however the current oximeters use the new BLE standard and I have never worked with this.
Has anyone out there ever tried and succeeded connecting to a BLE device and read data from them ?
If so, would you be willing to share your code with me so I can do something for these hospitals?
Last edited by dhf27 on Thu Apr 09, 2020 11:27 am, edited 1 time in total.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: Helping with Covid-19
https://github.com/WebBluetoothCG/demos ... ate-sensor
You can run it from a web page:
https://webbluetoothcg.github.io/demos/ ... te-sensor/
You can run it from a web page:
https://webbluetoothcg.github.io/demos/ ... te-sensor/
Re: Helping with Covid-19
Each oximeter has differents protocol. Mostly have 3 data. Bpm, pi and spo2. Connecting it to a hyperterminal like I said, you can deduce simply how it works. And how is data pattern to decode it. There no exist an universal solution.
Diego
Diego
Jeff Barnes wrote:Hoping everyone is staying safe....
I have been asked by a few of hospitals in my area if I can develop a software package to help monitor patients.
I would like to do my part and proceed with this however the current oximeters use the new BLE standard and I have never worked with this.
Has anyone out there ever tried and succeeded connecting to a BLE device and read data from them ?
If so, would you be willing to share your code with me so I can do something for these hospitals?