[go-nuts] New blog post "Hello, Tello - Hacking Drones With Go"

2018-04-20 Thread Ron Evans
Hello, all Just published a new blog post about hacking the DJI Tello drone using Go. Please check it out: https://gobot.io/blog/2018/04/20/hello-tello-hacking-drones-with-go/ Thank you! -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsu

Re: [go-nuts] Re: Gobot Beaglebone Black GPIO question...

2018-02-14 Thread Ron Evans
Hi, everyone The issue turned out to simply be a matter of a misnamed pin, combined with some changes to how you configure the BeagleBone. The Beaglebone's Debian OS is now much simpler to setup, so some of our directions needed to be removed, as they were also interferring with the newer distr

[go-nuts] Re: gobot and raspberry pi

2018-02-06 Thread Ron Evans
Hi, JM I'm the maintain of Gobot. Also of GoCV, a Go package for computer vision, which might be a better option for you here. With GoCV as you can just use a couple of normal usb webcams, which would likely be a cheaper option, as well. You can find info about GoCV at https://gocv.io Let me

[go-nuts] [ANN] GoCV v0.8.0 is out, now with Tensorflow and Caffe support

2018-01-23 Thread Ron Evans
Hello, fellow gophers Just wanted to let you know that the new version of GoCV (https://gocv.io) is out, now with support for Tensorflow, Caffe, and much more. Blog post here: https://gocv.io/blog/2018-01-23-go-opencv-tensorflow-caffe/ Our showcase example for this release is performing object

[go-nuts] Re: [ANN] astideepspeech: Golang bindings for Mozilla's DeepSpeech speech-to-text library

2017-12-13 Thread Ron Evans
That is a great idea, I personally will check it out for sure. On Tuesday, December 12, 2017 at 9:02:00 AM UTC+1, Asticode wrote: > > Hey guys, > > I'm happy to announce astideepspeech > , Golang bindings for > Mozilla's DeepSpeech speech-to-text li

Re: [go-nuts] Re: OpenCL or CUDA bindings

2017-11-12 Thread Ron Evans
Hello, all I've been working on some similar problems calling Windows APIs from Go. This looks promising, in order to use .lib files from within MinGW: https://stackoverflow.com/questions/11793370/how-can-i-convert-a-vsts-lib-to-a-mingw-a Anyone tried this? On Sunday, November 12, 2017 at 8:36

[go-nuts] [ANN] GoCV - Computer Vision Using Go and OpenCV 3

2017-10-10 Thread Ron Evans
Hello, everyone Please allow me to introduce a new Go package: GoCV. GoCV provides bindings for Go that work with the latest version of OpenCV 3.3. We hope to make the Go programming language a “first-class” client compatible with the latest developments in the OpenCV ecosystem, just like Pytho

[go-nuts] [ANN] Gobot v1.5.0 released

2017-05-10 Thread Ron Evans
Hello, fellow gophers We've just released Gobot v1.5.0 please check out the blog post here: https://gobot.io/blog/2017/05/10/gobot-1.5-on-pins-and-boards/ Thank you to everyone who helped on this release, and to the Golang community for your continued support! -- You received this message bec

[go-nuts] Re: Recommended design pattern for real-time monitoring and control of an observatory

2017-04-06 Thread Ron Evans
Allow me to humbly suggest you checkout Gobot https://gobot.io which is intended for this category of application. Disclosure: I am a maintainer of Gobot :) Sincerely, Ron On Thursday, April 6, 2017 at 2:22:15 AM UTC+2, James McHugh wrote: > > I'm writing some software to monitor and control my

[go-nuts] Re: [Gobot v1.2] - I2C PiGlow [SN3218] driver help

2017-02-20 Thread Ron Evans
Hi, Owen Thanks for doing some work on this, it look cool. The current set of Gobot i2c drivers all use the sysfs Read() and Write() interface. The new SMBLOCK based interface is an experimental interface, and seems like it seems some additional work on Raspi. I will take a look into it, if yo

[go-nuts] [ANN] Gobot 1.2 has been released

2017-02-16 Thread Ron Evans
Hi, everyone We just released Gobot (https://gobot.io) version 1.2 today, to coincide with the release party for Golang 1,8. Blog post here: https://gobot.io/blog/2017/02/16/gobot-1.2-released/ Thank you to everyone who contributed to this release! -- You received this message because you are

[go-nuts] Re: How to use embedded type to implement functional options for group of related types

2017-02-08 Thread Ron Evans
Thanks for the reply. Indeed the solution for what I was trying to do was to use the interface as the param, not a pointer to the concrete type. I had initially tried to pass a pointer to an interface which of course did not work. On Wednesday, February 8, 2017 at 11:12:54 PM UTC+1, Ron Evans

[go-nuts] How to use embedded type to implement functional options for group of related types

2017-02-08 Thread Ron Evans
I am trying to use an embedded type that implements an interface, in order to provide some functional options to a group of related types. However, I am receiving an error that I cannot use the embedded type to call the option function. Here is a contrived example. A type "Waiter" implements th