Rename python wrapper to ftdi1. Adapt examples with minimal code changes
[libftdi] / examples / python / complete.py
CommitLineData
4c5afeb9
MZ
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4"""Python example program.
5
6Complete program to demonstrate the usage
7of the swig generated python wrapper
8
9You need to build and install the wrapper first"""
10
11import os
bcf4a08b 12import ftdi1 as ftdi
4c5afeb9
MZ
13import time
14
15# initialize
16ftdic = ftdi.new()
17if ftdic == 0:
18 print 'new failed: %d', ret
19 os._exit( 1 )
50280d45
MZ
20
21
4c5afeb9 22# list all devices
50280d45 23ret, devlist = ftdi.usb_find_all( ftdic, 0x0403, 0x6001 )
4c5afeb9
MZ
24if ret < 0:
25 print 'ftdi_usb_find_all failed: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) )
26 os._exit( 1 )
27print 'Number of FTDI devices found: %d\n' % ret
50280d45
MZ
28curnode = devlist
29i = 0
30while( curnode != None ):
31 ret, manufacturer, description, serial = ftdi.usb_get_strings( ftdic, curnode.dev )
4c5afeb9
MZ
32 if ret < 0:
33 print 'ftdi_usb_get_strings failed: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) )
34 os._exit( 1 )
50280d45
MZ
35 print 'Device #%d: manufacturer="%s" description="%s" serial="%s"\n' % ( i, manufacturer, description, serial )
36 curnode = curnode.next
37 i += 1
4c5afeb9
MZ
38
39# open usb
40ret = ftdi.usb_open( ftdic, 0x0403, 0x6001 )
41if ret < 0:
42 print 'unable to open ftdi device: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) )
43 os._exit( 1 )
44
45
46# bitbang
47ret = ftdi.set_bitmode( ftdic, 0xff, ftdi.BITMODE_BITBANG )
48if ret < 0:
49 print 'Cannot enable bitbang'
50 os._exit( 1 )
51print 'turning everything on'
52ftdi.write_data( ftdic, chr(0xff), 1 )
53time.sleep( 1 )
54print 'turning everything off\n'
55ftdi.write_data( ftdic, chr(0x00), 1 )
56time.sleep( 1 )
57for i in range( 8 ):
4c5afeb9 58 val = 2**i
50280d45 59 print 'enabling bit #%d (0x%02x)' % (i, val)
4c5afeb9
MZ
60 ftdi.write_data( ftdic, chr(val), 1 )
61 time.sleep ( 1 )
62ftdi.disable_bitbang( ftdic )
63print ''
64
65
50d77f8f
MZ
66# read pins
67ret, pins = ftdi.read_pins( ftdic )
68print 'pins:',
69if ( ret == 0 ):
70 print '%02x' % ord( pins[0] )
71print ''
72
73
4c5afeb9
MZ
74# read chip id
75ret, chipid = ftdi.read_chipid( ftdic )
76print 'FDTI chip id: %X\n' % chipid
77
78
79# read eeprom
80eeprom_addr = 1
81ret, eeprom_val = ftdi.read_eeprom_location( ftdic, eeprom_addr )
50280d45
MZ
82if (ret==0):
83 print 'eeprom @ %d: 0x%04x\n' % ( eeprom_addr, eeprom_val )
84
85print 'complete eeprom:'
86ret = ftdi.read_eeprom( ftdic )
50d77f8f
MZ
87size = 128
88ret, eeprom = ftdi.get_eeprom_buf ( ftdic, size )
50280d45 89if ( ret == 0 ):
50d77f8f 90 for i in range( size ):
50280d45
MZ
91 print '%02x' % ord( eeprom[i] ),
92 if ( i % 8 == 7 ):
93 print ''
94
95
4c5afeb9
MZ
96# close usb
97ret = ftdi.usb_close( ftdic )
98if ret < 0:
99 print 'unable to close ftdi device: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) )
100 os._exit( 1 )
101ftdi.free( ftdic )