Brett wrote:I'm really scraping the bottom of the barrel here, but can you confirm that you're using
version 0.5.4 of the controlp5 library?
Hi Brett,
Just downloaded osPID-osPID-Front-End-69c3a6b.zip and had similar problems mentioned in this thread. Had to copy the profiles directory to the applications folder, not ideal but workable for the moment. Application still doesn't run, so tried to debug under processing (first time I have used it). I can confirm I have v0.5.4 of the controlP5 library installed.
First problem is on line 114 of osPID_FrontEnd.pde:
- Code: Select all
ReadProfiles(curDir+"\\profiles");
The ends up passing the path of /Applications\profiles to the function which is invalid on OS X. Changing the \\profiles to /profiles got past this.
A similar problem exists on line 44 of SPProfile.pde:
- Code: Select all
profs[i] = CreateProfile(directory+"\\"+files[i]);
After making these changes the application now runs, and the graphs are updated. Not sure how to fix this to be cross platform though.
Cheers,
Ian.