Apnea Board Forum - CPAP | Sleep Apnea
No flow data graph on SH - Printable Version

+- Apnea Board Forum - CPAP | Sleep Apnea (https://www.apneaboard.com/forums)
+-- Forum: Public Area (https://www.apneaboard.com/forums/Forum-Public-Area)
+--- Forum: Main Apnea Board Forum (https://www.apneaboard.com/forums/Forum-Main-Apnea-Board-Forum)
+--- Thread: No flow data graph on SH (/Thread-No-flow-data-graph-on-SH)



No flow data graph on SH - yankees123 - 03-28-2016

I have a F&P icon + Auto unit. According to sleepyhead I should be able to get flow data if I leave my usb stick in the unit at night. I have done this and am unable to see this data in the graph section. Thanks for all your help.


RE: No flow data graph on SH - Crimson Nape - 03-28-2016

If you see the data in the Daily screen, then try right-clicking in the graph area on the Overview screen. Another item to check is the graph option box in the lower right of the Overview screen. The items you want to display should have a green bar to the item's left. If the bar is red, then it's turn off. One finial place is under File->Preferences->Waveforms. The items you wish displayed, or active, in the Overview screen should have a check mark in the box under the "overview" heading.





RE: No flow data graph on SH - palerider - 03-28-2016

there's multiple bugs open on this... according to a bug report on sourceforge, it's because there's a date check in SH to ignore any data after 1/1/2015.

whether the bug report is accurate or not, I dunno.


RE: No flow data graph on SH - Arend - 03-29-2016

(03-28-2016, 07:01 PM)palerider Wrote: there's multiple bugs open on this... according to a bug report on sourceforge, it's because there's a date check in SH to ignore any data after 1/1/2015.

whether the bug report is accurate or not, I dunno.

I found the SH bug report. It reads, "#285 Flow data is not displayed for F&P Icon Auto+

When importing data from F&P Icon, the detailed flow and associated graphs are not displayed. The file icon_loader.cpp on line 485 rejects flow readings with timestamps on or after 1/1/2015. Making the following change will allow the flow to be displayed:
if (ts > QDateTime(QDate(2015,1,1), QTime(0,0,0)).toTime_t()) {
if (ts > QDateTime(QDate(2017,1,1), QTime(0,0,0)).toTime_t()) {
This is only a temporary fix. Maybe it should should reject dates after the date imported."

This is interesting to me in that I really miss the flow data graph which worked great until Jan. 1, 2015. I thought the problem lay with the machine but according to this bug report it is with SH. Now I'm wondering if a fix will be available soon, assuming this is a correct diagnoses.




RE: No flow data graph on SH - palerider - 03-29-2016

best idea may be to snap up a copy of the source, and try making the change, and compiling it yourself.


RE: No flow data graph on SH - pholynyk - 03-30-2016

If you wish to work on that bug in version 0.9.8, I suggest you read through all of the icon_loader source, and pay attention around line 360, as well as 488. Just sayin'.