Skip to content

Instantly share code, notes, and snippets.

@mgile
Created April 18, 2011 23:51
Show Gist options
  • Save mgile/926544 to your computer and use it in GitHub Desktop.
Save mgile/926544 to your computer and use it in GitHub Desktop.
OBD2Kit Basic Scan Tool Setup
_scanTool = [FLScanTool scanToolForDeviceType:kScanToolDeviceTypeELM327];
[_scanTool retain];
_scanTool.useLocation = YES;
_scanTool.delegate = self;
if(_scanTool.isWifiScanTool ) {
// These are the settings for the PLX Kiwi WiFI, your Scan Tool may
// require different.
[_scanTool setHost:@"192.168.0.10"];
[_scanTool setPort:35000];
}
[_scanTool startScan];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment