Final version: https://play.golang.org/p/nb-KHcw9vS
From: Michael Jones <michael.jo...@gmail.com> Date: Wednesday, July 20, 2016 at 1:50 AM To: EdgarAlejandro Vintimilla <eavi...@gmail.com>, golang-nuts <golang-nuts@googlegroups.com> Cc: <egonel...@gmail.com> Subject: Re: [go-nuts] Re: problems receiving data from a GPS Glad it is now working for you! By the way, the length of your sample data packet is very nice. That number, 153, is the smallest non trivial (length in digits > 1) base ten number equal to the sum of the Nth powers of its N digits. 153 == 1**3 + 5**3 + 3**3 = 1 + 125 + 27 == 153. There are three other 3-digit solutions, and the longest solution has 39 digits. From: <golang-nuts@googlegroups.com> on behalf of EdgarAlejandro Vintimilla <eavi...@gmail.com> Date: Tuesday, July 19, 2016 at 10:24 PM To: golang-nuts <golang-nuts@googlegroups.com> Cc: <egonel...@gmail.com> Subject: Re: [go-nuts] Re: problems receiving data from a GPS thanks guys I was converting the data to hex incorrectly https://play.golang.org/p/35Wgkrh4Rq now its equal to python On Tuesday, July 19, 2016 at 6:41:42 PM UTC-5, Michael Jones wrote: In response to the call to help at every level of developer background, here an expository solution line by line. Don’t click if this is your homework. https://play.golang.org/p/UOf38Uh-MT All that is left is to understand the data payload formats. Michael -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.