Skip to content

Instantly share code, notes, and snippets.

@bazub
Created September 20, 2012 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bazub/3756128 to your computer and use it in GitHub Desktop.
Save bazub/3756128 to your computer and use it in GitHub Desktop.
Button linked to the function that "translates" GPGGA
butGC=Button(root, text="Get coordinates", command=getcoord)
butGC.grid(row=1,column=0, sticky=N+S+E+W)
var=StringVar()
lab =Label(root, bg='white',width=50,height=2,textvariable=var,justify=CENTER)
lab.grid(row=1, column=1,sticky=N+S+E)
lab2=Label(root)
lab2.grid(row=2,column=0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment