python bindings: python3 support
[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 ftdi1 as 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 # list all devices
22 ret, devlist = ftdi.usb_find_all( ftdic, 0x0403, 0x6001 )
23 if ret < 0:
24     print( 'ftdi_usb_find_all failed: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) ) )
25     os._exit( 1 )
26 print( 'Number of FTDI devices found: %d\n' % ret )
27 curnode = devlist
28 i = 0
29 while( curnode != None ):
30     ret, manufacturer, description, serial = ftdi.usb_get_strings( ftdic, curnode.dev )
31     if ret < 0:
32         print( 'ftdi_usb_get_strings failed: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) ) )
33         os._exit( 1 )
34     print( 'Device #%d: manufacturer="%s" description="%s" serial="%s"\n' % ( i, manufacturer, description, serial ) )
35     curnode = curnode.next
36     i += 1
37
38 # open usb
39 ret = ftdi.usb_open( ftdic, 0x0403, 0x6001 )
40 if ret < 0:
41     print( 'unable to open ftdi device: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) ) )
42     os._exit( 1 )
43
44
45 # bitbang
46 ret = ftdi.set_bitmode( ftdic, 0xff, ftdi.BITMODE_BITBANG )
47 if ret < 0:
48     print( 'Cannot enable bitbang' )
49     os._exit( 1 )
50 print( 'turning everything on' )
51 ftdi.write_data( ftdic, chr(0xff), 1 )
52 time.sleep( 1 )
53 print( 'turning everything off\n' )
54 ftdi.write_data( ftdic, chr(0x00), 1 )
55 time.sleep( 1 )
56 for i in range( 8 ):
57     val = 2**i
58     print( 'enabling bit #%d (0x%02x)' % (i, val) )
59     ftdi.write_data( ftdic, chr(val), 1 )
60     time.sleep ( 1 )
61 ftdi.disable_bitbang( ftdic )
62 print( '\n' )
63
64
65 # read pins
66 ret, pins = ftdi.read_pins( ftdic )
67 print( 'pins:\n' )
68 if ( ret == 0 ):
69     print( '%02x' % ord( pins[0] ) )
70 print( '\n' )
71
72
73 # read chip id
74 ret, chipid = ftdi.read_chipid( ftdic )
75 print( 'FDTI chip id: %X\n' % chipid )
76
77
78 # read eeprom
79 eeprom_addr = 1
80 ret, eeprom_val = ftdi.read_eeprom_location( ftdic, eeprom_addr )
81 if (ret==0):
82     print( 'eeprom @ %d: 0x%04x\n' % ( eeprom_addr, eeprom_val ) )
83
84 print( 'complete eeprom:' )
85 ret = ftdi.read_eeprom( ftdic )
86 size = 128
87 ret, eeprom = ftdi.get_eeprom_buf ( ftdic, size )
88 if ( ret == 0 ):
89     for i in range( size ):
90         print( '%02x' % ord( eeprom[i] ) )
91         if ( i % 8 == 7 ):
92             print( '\n' )
93
94 # close usb
95 ret = ftdi.usb_close( ftdic )
96 if ret < 0:
97     print( 'unable to close ftdi device: %d (%s)' % ( ret, ftdi.get_error_string( ftdic ) ) )
98     os._exit( 1 )
99 ftdi.free( ftdic )