Legal Removal Request This form is for reporting content posted on the AB Electronics UK forums that you believe violates your personal legal rights or applicable local laws for your country. Post: Hi Tony The easiest way to map the values to three buses would be to use a function which takes an input pin and state and uses a series of if statements to map it to the correct pin. The code below should do what you need. def update_output_pin(pin, state, bus2, bus4, bus6): ''' Update the output pin for busses 2, 4 and 6 based on an input value of 1 to 48 ''' if state is 0 or state is 1: if pin >= 1 and pin <= 16: bus2.write_pin(pin, state) elif pin >= 17 and pin <= 32: pinval = pin - 16 bus4.write_pin(pinval, state) elif pin >= 33 and pin <= 48: pinval = pin - 32 bus6.write_pin(pinval, state) else: print("pin out of range") else: print("state out of range") def main(): ''' Main program function ''' # Create 6 instances of the IOPi class with an I2C address of 0x20 to 0x25 iobus1 = IOPi(0x20) iobus2 = IOPi(0x21) iobus3 = IOPi(0x22) iobus4 = IOPi(0x23) iobus5 = IOPi(0x24) iobus6 = IOPi(0x25) # Busses 1, 3 and 5 will be inputs iobus1.set_port_direction(0, 0xFF) iobus1.set_port_direction(1, 0xFF) iobus3.set_port_direction(0, 0xFF) iobus3.set_port_direction(1, 0xFF) iobus5.set_port_direction(0, 0xFF) iobus5.set_port_direction(1, 0xFF) # Busses 2, 4 and 6 will be outputs with the pins initially set to 0 iobus2.set_port_direction(0, 0x00) iobus2.set_port_direction(1, 0x00) iobus2.write_port(0, 0x00) iobus2.write_port(1, 0x00) iobus4.set_port_direction(0, 0x00) iobus4.set_port_direction(1, 0x00) iobus4.write_port(0, 0x00) iobus4.write_port(1, 0x00) iobus6.set_port_direction(0, 0x00) iobus6.set_port_direction(1, 0x00) iobus6.write_port(0, 0x00) iobus6.write_port(1, 0x00) while True: # count to 48 and and set the pin state high for each pin in turn for val in range(1, 48): time.sleep(0.05) update_output_pin(val, 1, iobus2, iobus4, iobus6) # count to 48 and and set the pin state low for each pin in turn for val in range(1, 48): time.sleep(0.05) update_output_pin(val, 0, iobus2, iobus4, iobus6) if __name__ == "__main__": main() The [b]update_output_pin(pin, state, bus2, bus4, bus6)[/b] function takes the pin number between 1 and 48, the state and the three busses which will be used for outputs. In the main function, I created 6 instances of the IO Pi class with the i2c addresses 0x20 to 0x25 and set busses 1, 3 and 5 as inputs and 2, 4 and 6 as outputs. The while loop at the bottom contains some for loops that will switch each pin on in turn and then switch them off again in turn. In your program, you would replace the for loops with your code to read from the text file. Select the country where you are claiming legal rights. Albania Algeria American Samoa Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Aruba Australia Austria Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bosnia And Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory British Virgin Islands Brunei Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Canary Islands Cape Verde Cayman Islands Central African Republic Chad Channel Islands Chile Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo Cook Islands Costa Rica Croatia Cuba Cyprus Czech Republic Denmark Djibouti Dominica Dominican Republic East Timor Ecuador Egypt El Salvador Equatorial Guinea Estonia Ethiopia Falkland Islands (Malvinas) Faroe Islands Federated States of Micronesia Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guyana Haiti Heard Island and McDonald Islands Honduras Hong Kong Hungary Iceland India Indonesia Ireland Israel Italy Jamaica Japan Jordan Kazakhstan Kenya Kiribati Kuwait Kyrgyzstan Laos Latvia Lesotho Liechtenstein Lithuania Luxembourg Macau Macedonia Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia, Federated States Of Moldova, Republic Of Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands Netherlands Antilles New Caledonia New Zealand Nicaragua Niue Norfolk Island Northern Mariana Islands Norway Oman Palau Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Poland Portugal Puerto Rico Qatar Reunion Romania Russia Rwanda Samoa San Marino Sao Tome and Principe Saudi Arabia Serbia Seychelles Singapore Slovakia Slovenia Solomon Islands South Africa South Georgia and the South Sandwich Islands South Korea Spain Sri Lanka St. Helena St. Kitts and Nevis St. Lucia St. Pierre and Miquelon St. Vincent and the Grenadines Suriname Svalbard and Jan Mayen Islands Swaziland Sweden Switzerland Syria Taiwan Tajikistan Tanzania Thailand Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom United States United States Minor Outlying Islands Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Wallis and Futuna Islands Western Sahara Yemen Yugoslavia Zambia What legal issue or problem do you wish to report? Please select Privacy / Erasure under GDPR Defamation Intellectual Property Hate Speech Other Please enter the following information so we can process your report. Contact Name: Contact Email: Details of complaint: Submit Complaint