Dimitre
Dimitre
@hiroMTB it doesn't happen in XCode. maybe the #define variables are different ```c++ #if DEBUG || CoreAudio_Debug // can be used to break into debugger immediately, also see CADebugger #define...
Indeed @hiroMTB Error is appearing with make Debug and it is running OK with make (Release)
are you compiling ok for 0.10 ?
I'm having the same issue here with Platformio CLI, platform K210 normal or master. I can't find the file @micky008 pointed out for the workaround. I've seen this library here...
ok @rumoldus sorry about the confusion. for short just wanted to report "camera snap fail" here too for the new camera. it is working with the previous one.
I would try to open the final file in an hex editor to check the magic bytes and see if it matches BMP file.
I'm trying to use RGB565 in Sipeed_ST7789 too without good results this line should be able to generate a gray color in RGB565 ```c++ uint16_t cor = ((v & 0b11111000)...
Great @NickHardeman! One example I really wanted to change is serialExample. It can be more inviting for beginners to work with serial communication, withtout memset, memcpy etc.
I can work in an alternative approach, I use something like this ```c++ void ofApp::setup(){ int baud = 9600; serial.listDevices(); vector deviceList = serial.getDeviceList(); // this should be set to...
Edit: updated in this PR - https://github.com/openframeworks/openFrameworks/pull/7119 videoGrabber, maybe change resolution to 640x480 once macOS doesn't support 320x240 anymore in builtin webcam