Skip to content

Instantly share code, notes, and snippets.

View 26labs's full-sized avatar

Matt Taylor 26labs

View GitHub Profile
@Gonzillaaa
Gonzillaaa / xbee-config.py
Created February 11, 2011 15:56
Python script to configure basic parameters of xbee radios
#!/usr/bin/env python
import sys, serial, time #@UnresolvedImport
class XBeeConfig:
def __init__( self, port = '', baud = 19200 ):
self.err, self.__ser__ = '', None
self.openSerial( port, baud )