Voltangle

Results 96 comments of Voltangle

``` Traceback (most recent call last): File "/.../lvgl/scripts/gen_json/gen_json.py", line 159, in run p = subprocess.Popen(cpp_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line 966, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line...

I managed to fix that by adding `shell=True` to `Popen` arguments btw

NIIIIICE I will update my code so that it uses that data too, thx!

Wdym try out? I already did, I think? 😅

The integration went quite smoothly, considering that I decided to not include script running functionality directly to the project, instead I just added a CLI argument for passing in the...

By the way, I had an idea of an "animation library" for LVGL in the back of my head for several weeks by now, basically something with keyframes, orchestration of...

Hot damn, I didn't realise LVGL already had allat

Thanks for the reply! Yeah, currently it doesn't look great, but I think the addition of interfaces will definitely elevate Teal to be an actually production-ready language that can be...

Understood, then how the Teal team sees how a problem like this can be solved in Teal? I suggested a trait system so that logic can take in more generalised...

Changed the example: ```lua global protocol MyProtocol foo: function(self: Self): string end local record MyRecord end local function MyRecord.new(): MyRecord -- creates a new MyRecord instance end extension MyRecord: MyProtocol...