Hello Guest, Welcome to Apnea Board !
As a guest, you are limited to certain areas of the board and there are some features you can't use.
To post a message, you must create a free account using a valid email address.

or Create an Account


New Posts   Today's Posts

CPAP Wireless SD Card for The Rest of Us
#81
RE: CPAP Wireless SD Card for The Rest of Us
For FlashPAP you will need to insert your card in your PC than start FlashPAP.  Create a user account that matches the name on the card, Michael.   Declare your machine type and either search for or enter the IP that you used on the card.  Finally, point to the dedicated data directory that you created on your computer to store the data.  This will create a user profile, probably named, "Michael.fpap" in the FlashPAP directory.  

If you have problems configuring the card. Please provide the IP you assigned the card and the complete path to your new data directory. The "fpap" file is a simple text file easily set up.

Ultimately, you will be able to create an automated download procedure from a shortcut on your desktop.  We need Jeff or other Mac user to validate the details since I'm "Mac Challenged".
Crimson Nape
Apnea Board Moderator
Project Manager for OSCAR - Open Source CPAP Analysis Reporter
www.ApneaBoard.com
___________________________________
Useful Links -or- When All Else Fails:
The Guide to Understanding OSCAR
OSCAR Chart Organization
Attaching Images and Files on Apnea Board
Apnea Helpful Tips

INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Post Reply Post Reply
#82
RE: CPAP Wireless SD Card for The Rest of Us
We were cross posting and I just reviewed your setup configuration.  You seem to have your card's data directory in the FlashPAP directory, the best that I can tell.  I would recommend that you place it in your Documents folder, to keep the data separate from the application.  The bottom line is; If your setup works, then so be it.
Crimson Nape
Apnea Board Moderator
Project Manager for OSCAR - Open Source CPAP Analysis Reporter
www.ApneaBoard.com
___________________________________
Useful Links -or- When All Else Fails:
The Guide to Understanding OSCAR
OSCAR Chart Organization
Attaching Images and Files on Apnea Board
Apnea Helpful Tips

INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Post Reply Post Reply
#83
RE: CPAP Wireless SD Card for The Rest of Us
To use in the morning launch flashpap it will copy the updated files from the SD card then open Oscar and import the updated data from the flashpap download directory it’s a two step process
Post Reply Post Reply
#84
RE: CPAP Wireless SD Card for The Rest of Us
Crimson Nape, I'm flying a little blind since I don't have a wireless SD card myself.
If it shows up as a removable drive then it would be a simple "rsync" to copy the files from the SD card to the users storage folder (~/CPAP-data or something).
If it needs to be mounted like a network share first then there's a little extra involved.

Something simple using Mac's built in Script Editor using rsync
Code:
tell application "Terminal"
activate
do script "rsync -avz /Volumes/RESMED/ ~/CPAP-data/ResMed; exit"
end tell

Saved on the Desktop as "CopyCPAP.app"
Jeff8356

NOTE:
Jeff8356 has not been active on forums since October, 2023.
He cannot reply to you.


MacBook Air (2017, Intel) | macOS Monterey (12.7) | OSCAR v1.5.1 | VM = Win10/Win11 |
How to Links:
Installing OSCAR on a Mac
Organizing your OSCAR charts
Attaching screenshots and files for the forum
OSCAR Help
OSCAR - The Guide


Post Reply Post Reply
#85
RE: CPAP Wireless SD Card for The Rest of Us
(04-16-2020, 04:22 PM)jaswilliams Wrote: To use in the morning launch flashpap it will copy the updated files from the SD card then open Oscar and import the updated data from the flashpap download directory it’s a two step process

Good to know. Thank you.

(04-16-2020, 04:29 PM)Jeff8356 Wrote: Crimson Nape, I'm flying a little blind since I don't have a wireless SD card myself.
If it shows up as a removable drive then it would be a simple "rsync" to copy the files from the SD card to the users storage folder (~/CPAP-data or something).
If it needs to be mounted like a network share first then there's a little extra involved.

Something simple using Mac's built in Script Editor using rsync
Code:
tell application "Terminal"
activate
do script "rsync -avz /Volumes/RESMED/ ~/CPAP-data/ResMed; exit"
end tell

Saved on the Desktop as "CopyCPAP.app"
Does this script work? Does it need any modification? I suppose it's six of one, half dozen of the other. It's still a two-step process, correct?
Post Reply Post Reply
#86
RE: CPAP Wireless SD Card for The Rest of Us
I guess I need to use FlashPAP since SleepMaster isn't working for me. 

So I need to use FlashPAP first, and then open OSCAR?
Post Reply Post Reply
#87
RE: CPAP Wireless SD Card for The Rest of Us
(04-16-2020, 06:00 PM)wacomme Wrote: So I need to use FlashPAP first, and then open OSCAR?

You are correct.  To help semi-automate the data download with FlashPAP, you can use command line parameters.  Normally, you would open FlashPAP, select the user, then select to download the data, finally exiting FlashPAP.  To make this all steps into one step, you will use the normal command to run FlashPAP but append the 2 parameters, user=Michael and exit=yes to the command. Please note, I used your name as the user in these examples.

Here are examples of what the command looks like in Linux and Windows:
Windows:
C:\FlashPAP\FlashPAP.jar user=Michael exit=yes

In Linux, at least mine:
/usr/lib/jvm/java-1.8.0-openjdk-amd64/bin/java -jar /home/CrimsonNape/FlashPAP/FlashPAP.jar user=Michael exit=yes

I don't know the Mac syntax to achieve this.  This is where an experienced Mac user can REALLY help.

I hope this makes some sense.
Crimson Nape
Apnea Board Moderator
Project Manager for OSCAR - Open Source CPAP Analysis Reporter
www.ApneaBoard.com
___________________________________
Useful Links -or- When All Else Fails:
The Guide to Understanding OSCAR
OSCAR Chart Organization
Attaching Images and Files on Apnea Board
Apnea Helpful Tips

INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Post Reply Post Reply
#88
RE: CPAP Wireless SD Card for The Rest of Us
Would this be a command to put in Terminal?
Post Reply Post Reply
#89
RE: CPAP Wireless SD Card for The Rest of Us
I use these commands in a desktop shortcut. Again, Jeff or someone experienced with a Mac will have to guide you on its creation. Basically, if you can run FlashPAP from a terminal, then just add the 2 parameters to the command and give it a try.
Crimson Nape
Apnea Board Moderator
Project Manager for OSCAR - Open Source CPAP Analysis Reporter
www.ApneaBoard.com
___________________________________
Useful Links -or- When All Else Fails:
The Guide to Understanding OSCAR
OSCAR Chart Organization
Attaching Images and Files on Apnea Board
Apnea Helpful Tips

INFORMATION ON APNEA BOARD FORUMS OR ON APNEABOARD.COM SHOULD NOT BE CONSIDERED AS MEDICAL ADVICE. ALWAYS SEEK THE ADVICE OF A PHYSICIAN BEFORE SEEKING TREATMENT FOR MEDICAL CONDITIONS, INCLUDING SLEEP APNEA. INFORMATION POSTED ON THE APNEA BOARD WEB SITE AND FORUMS ARE PERSONAL OPINION ONLY AND NOT NECESSARILY A STATEMENT OF FACT.
Post Reply Post Reply
#90
RE: CPAP Wireless SD Card for The Rest of Us
On your Mac something like this should work from the command line (Terminal):

Code:
open /Users/jeff/Downloads/FlashPAP/FlashPAP.jar user=Michael exit=yes

Of course you would need to change the location and names to match what you have on your system.

See if the above works for you
Jeff8356

NOTE:
Jeff8356 has not been active on forums since October, 2023.
He cannot reply to you.


MacBook Air (2017, Intel) | macOS Monterey (12.7) | OSCAR v1.5.1 | VM = Win10/Win11 |
How to Links:
Installing OSCAR on a Mac
Organizing your OSCAR charts
Attaching screenshots and files for the forum
OSCAR Help
OSCAR - The Guide


Post Reply Post Reply


Possibly Related Threads...
Thread Author Replies Views Last Post
Information EzShareApp - CPAP Data Downloader from EzShare SD card for macOS adrianfeeger 25 1,103 11-28-2024, 09:01 AM
Last Post: adrianfeeger
  Put My SD card in Husband's CPAP Machine SideSleeper 5 587 05-20-2024, 11:35 PM
Last Post: SideSleeper
  Oscar cannot read SD card and SD card cannot be read by PC BlueSky1958 1 952 08-21-2023, 06:41 PM
Last Post: Sleeprider
  Oscar cannot read card - card cannot be read by PC BlueSky1958 3 858 08-21-2023, 01:02 PM
Last Post: Crimson Nape
  Loaded wrong SD Card in CPAP Machine SideSleeper 6 1,026 03-31-2023, 11:57 PM
Last Post: SideSleeper
  Inserting the SD Card of the old device into the replaced Philips Dreamstation Cpap deimos 9 5,848 06-24-2022, 12:13 PM
Last Post: deimos
  Best wireless SD card to Airsense 10 + Oscar? Dolla Bill 1 1,147 09-29-2021, 07:24 AM
Last Post: Crimson Nape


New Posts   Today's Posts


About Apnea Board

Apnea Board is an educational web site designed to empower Sleep Apnea patients.