David Jones
David Jones
Sounds promising! David Jones (MVP) ________________________________ From: Andrei Ignat ***@***.***> Sent: Sunday, July 7, 2024 8:22:34 PM To: ignatandrei/NETCoreBlockly ***@***.***> Cc: David Jones (MVP) ***@***.***>; Author ***@***.***> Subject: Re: [ignatandrei/NETCoreBlockly]...
Further more, its taking that order number and trying to cast it to one of the enum ordinals and generally failing. For example using GroveGPIOPinX as a controller method parameter...
I have blogged extensively about all of this here https://davidjones.sportronics.com.au/tags/enums/
Ok thx David Jones (MVP) ________________________________ From: Andrei Ignat ***@***.***> Sent: Monday, October 21, 2024 4:36:07 AM To: ignatandrei/NETCoreBlockly ***@***.***> Cc: David Jones (MVP) ***@***.***>; Author ***@***.***> Subject: Re: [ignatandrei/NETCoreBlockly]...
Me tooin this issue. ``` In file included from c:\Users\david\Documents\Arduino\libraries\SSLClient\src/SSLClient.h:23:0, from C:\Users\david\repos\ArduinoSSL\SSLClient\examples\EthernetMQTT\EthernetMQTT.ino:22: c:\Users\david\Documents\Arduino\libraries\SSLClient\src/SSLClientParameters.h:31:10: fatal error: vector: No such file or directory #include ^~~~~~~~ compilation terminated. ```
I think there is a need for additional C++ libraries such as cstdlib, vector etc.??? These are included with my RPi Pico W BSP. I am trying to use Arduino...
Thanks for the reply. It was a general query. I'll look into that Blockly tute. In the meantime I have found a partial way around that. I create a controller...
Here is my blog post on creating a Custom block via call to the Controller: https://djzblogaccname137.z26.web.core.windows.net/softata/Softata-CustomBlocksviaASP.NETController-softata.html
This is one I will work on in the long term.
Tried this code to procress sound levels , 4 ways: ``` string output = FFMpegArguments .FromFileInput("video.mp4") .WithArguments("-filter:a astats=metadata=1:reset=1 -f null -") .CaptureOutput() .ProcessSynchronously(); string output2 = FFMpegArguments .FromFileInput("video.mp4") .AddParameter("-filter:a", "astats=metadata=1:reset=1")...