David Pugmire

Results 26 comments of David Pugmire

Regarding this code in the sketch: ``` //check a client for data if (serverClient && serverClient.connected()){ if(serverClient.available()){ size_t len = serverClient.available(); uint8_t sbuf[len]; serverClient.readBytes(sbuf, len); Serial.write(sbuf, len); } } ```...

OK, can you please explain how it is possible then, to specify the actual size the resulting image should be? The way it is implemented right now makes it pretty...

> The keyword here is Desired. So to make it clear size 200x200 is the maximum size of the image. but because drawing image may differ (e.g. 100x300), we proportionally...

The bottom of this post states future expansion to a true cross platform app is intended: https://blog.xamarin.com/introducing-the-kimono-designer-for-skiasharp/ That said, based on the complete lack of changes in this project for...

Revisiting this topic... IMHO, here is the most epic thing Microsoft could do: - Unify Xamarin "flavor" of Xaml to be standardized (works in WPF, UWP and XF, i.e. StackPanel,...

Adding relevant info: I see the login dialog flash for a second, but cannot fill it out, followed by the connection failed error. Not sure if the failure is due...