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