ofArduino, limited to 13 pins. Any way to increase this?
Hi, We're trying to use all pins on an arduino mega but seems like we're capped at 13 pins.Any (non-hardware) way to increase this?
View ArticleofxOMXplayer: unable to compile project on OS X
Hi, Your Xcode project should not be including (and trying to compile) OMXPlayer, I would try removing any mention of it from your Xcode project, aside from stuff you have #ifdef'ed out.
View ArticleofxOMXplayer: unable to compile project on OS X
So for the OSX version I should just remove the addon? The rest of the code can remain the same, since the preprocessor statements will get ignored when they target the RasPI, right? Thanks again!
View ArticleofxOMXplayer: unable to compile project on OS X
Hi, Yup! Code stays the same, the Pi includes the ofxOMXPlayer via addons.make and Xcode gets whatever other cross platform addons you are using.
View ArticleofxOMXplayer: unable to compile project on OS X
Ok, great! Thanks a bunch, will get it running on the PI as soon as I get home and hopefully will only come here to mark it as solved and thank you once again hehe
View ArticleProblem with lighting and 3d shapes in openframeworks 9
I just migrated over to OF 9 and noticed something is not working as before with the lighting in one of my apps. I've isolated the problem into a small test program which you can see below: void...
View ArticleProblem with lighting and 3d shapes in openframeworks 9
Hi, there was some light strangeness fixed for 0.9, think it was this issue here: https://github.com/openframeworks/openFrameworks/issues/3942 Maybe your problem is related?
View ArticleProblem with lighting and 3d shapes in openframeworks 9
If I set the colour of the light in draw then it updates the lighting which fixes the problem mPointLight.setSpecularColor( ofFloatColor(1.f, 1.f, 1.f) );mPointLight.setDiffuseColor( ofFloatColor(1.f,...
View ArticleProblem with lighting and 3d shapes in openframeworks 9
Hi @lorenzo_p ! You can use ofSetGlobalAmbientColor. Mind it passes an ofFloatColor. For more control, you can use an ofMaterial, like so (there are more parameters, it's just a quick example): //...
View ArticleDual Monitor Full-screen
I'm using your solution for a program. One issue I have is it is only fullscreen when app is focused.If I switch to another application I get an OS X statusbar on the top. Do you have this issue too?
View ArticleofxOmxPlayer Stutter on video open/start
I had the same issue on windows, I wanted to load next video only before it plays, and I got a slow framerate as it loads the next video. The only solution I found is to load all the videos during the...
View ArticleofToDataPath causing a crash
Hi guys, Just tried the 0.9.0 released version on Windows 10, VS2015, and got into a crash, which seems to be caused by this line in ofToDataPath() when path is an empty string "".bool...
View ArticleCannot draw line of width 1 using ofDrawLine or ofLine
I write the code as follows, but the drawn line is not width 1 but 2, and its color is pale white. What should I do? void ofApp::draw() { ofSetColor(255); ofSetLineWidth(1.0f); ofDrawLine(100, 100,...
View Article(Simple) Brain wave drawing
Could we get a video demonstration? I'd love to see this in action.
View ArticleofArduino, limited to 13 pins. Any way to increase this?
I am working on the next release version that brings the protocol up to snuff with firmata 2.5. https://github.com/DomAmato/openFrameworks/tree/ofArduino_Updates/libs/openFrameworks/communication This...
View ArticleCalling openFramework methods from Android UI
I have being porting an iOS app made using OF to Android and had a strange problem. When calling OF methods from Android UI events such as click listeners, textures became black rectangles and some...
View ArticleofArduino servo number on Arduino Mega
I have also been working on updating the core library for the 0.10 release, I think it would be great if you guys could test the servo functionality. Sorry this is a bit late on here but on the chance...
View ArticleCannot draw line of width 1 using ofDrawLine or ofLine
that's because antialiasing is enabled, you can disable it calling ofDisableAntialiasing() and you'll get exact 1px but ragged lines
View Article