Is there any official update on this topic? Is bluetooth gonna be supported? Thanks
Best posts made by jesuslg123
-
RE: Bluetooth support
-
GoPro remote controller
I have created my own wifi GoPro remote controller, that it should work with all the model starting from the GoPro Hero 3+ (some changes may be required). I have tested it with the GoPro Hero 7 Silver but it should also work without any change with the white and black version.
GoPro in the latests version only enable GoPro remote support for the black models, even all of them are capable. As I don't have a black version of the GoPro I created my own controller.
I have used an StickC with the strap and Blockly, but it becoming a mess because of the size of the idea, I would like, some day, port it to Arduino or Python.
Here is the source code and instructions, I really hope you like and contribute!
-
[Mac OS] UIFlow IDE copy paste don't works
Hello,
I frequently code in Mac OS and I have found that the copy paste feature does not works on the IDE Mac OS version.
- Copy text from any other app (browser, notes, ect)
- Open UIFlow IDE
- Set an string
- Paste the content you copied before (this fails)
It is a known behaviour, will be fixed?
Thank you.
Latest posts made by jesuslg123
-
RE: UIFlow 1.6.6
@dario said in UIFlow 1.6.6:
@jesuslg123 I'm using the version 1.6.6 with both StickC and SticC Plus without any issue
Are you using Bluetooth on StickC with 1.6.6? They mentioned Bluetooth is still not supported
-
RE: UIFlow 1.6.6
Hellos,
That
* BLE bug fix.
mean bluetooth is now supported on UIFlow micropython firmware for M5StickC?If yes, could you shared a simple sample please?
Thanks
-
[Mac OS] UIFlow IDE copy paste don't works
Hello,
I frequently code in Mac OS and I have found that the copy paste feature does not works on the IDE Mac OS version.
- Copy text from any other app (browser, notes, ect)
- Open UIFlow IDE
- Set an string
- Paste the content you copied before (this fails)
It is a known behaviour, will be fixed?
Thank you.
-
GoPro remote controller
I have created my own wifi GoPro remote controller, that it should work with all the model starting from the GoPro Hero 3+ (some changes may be required). I have tested it with the GoPro Hero 7 Silver but it should also work without any change with the white and black version.
GoPro in the latests version only enable GoPro remote support for the black models, even all of them are capable. As I don't have a black version of the GoPro I created my own controller.
I have used an StickC with the strap and Blockly, but it becoming a mess because of the size of the idea, I would like, some day, port it to Arduino or Python.
Here is the source code and instructions, I really hope you like and contribute!
-
RE: Bluetooth support
Is there any official update on this topic? Is bluetooth gonna be supported? Thanks
-
RE: Support multiple files
Hi, thanks for the answer, but this is not actually helping in the issue. I may have explained wrong.
- I'm using blockly and the screen get mess with so many blocks around used by the app.
- Use custom blocks would not help too much as I would need to write my own python code plus also I would drag the block inside the screen also.
So lets say my idea is having blockly have various screen for the same app to organize the blocks in sections/pages.
Thanks
-
Support multiple files
Hello,
I would like to know if there is plan to allow have programs splited in multiple files on UIFlow Editor, like a real app with clases etc. I have the feeling that the content on the editor grows to quickly and search for things can be difficult. Having multiple files with in the same app could be very helpful.
Thanks,
Jesús. -
RE: HTTP Get - Empty response body
So, I could workaround this issue after some work and before close and forget this thread here forever, let me share it:
The problem:
- GoPro wifi API is not fully following the HTTP protocol specifications.
- Headers and body content is separated by \n instead of \r\n
- uRequests library is very strict on response parsing, while mostly any other libraries/browser/etc handle requests with some "malformed" bodies, uRequests does not.
UIFlow IDE solution:
- Upload to the Stick5C the modified version of uRequests
- Override the uRequests library usage with a new import using execute code block.
- From that moment on (only on this app) it will use the modified library.
No UIFlow IDE solution:
- Stop using UIFlow IDE 😢
- Upload to the Stick5C the modified version of uRequests
- Use Visual Studio code or any other IDE to continue the development.
- Override the uRequests library usage with a new import on the code.
I hope this is useful to someone else, any suggestion is also more than welcome.
Thanks 😄
- GoPro wifi API is not fully following the HTTP protocol specifications.
-
RE: HTTP Get - Empty response body
Just finished to write it down all this and I think I the failed attempt it could work using the execute code block to make the import override and keep using the UIFlow IDE 😱 That this makes sense?
New attempt
- Upload to the Stick5C the modified version of uRequests
- Keep using UIFlow IDE 🎉
- Override the uRequests library usage with a new import on the code using execute code block.
I will try it and update you.