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: I apologise in advance for not formatting code correctly but web browser won't play ball with "insert code snippet". I have two IO plus stacked on my Raspberry Pi but when I try to make IO Ports by assigning I2C addresses 0x22 and 0x23 I get the following error message. The first IO Plus has its solder bridges unchanged but the second IO Plus has bus1 with the "2" bridge connected and bus2 has "2" and "0" bridges connected . " File "/usr/local/lib/python3.4/dist-packages/IOPi/IOPi.py", line 117, in __init__ self.__ioaddress, self.IOCON, self.__ioconfig) OSError: [Errno 5] Input/output error File "/usr/local/lib/python3.4/dist-packages/IOPi/IOPi.py", line 117, in __init__ self.__ioaddress, self.IOCON, self.__ioconfig) OSError: [Errno 5] Input/output error" My code is here, I would greatly appreciate any help: #!/usr/bin/env python """ ================================================ ABElectronics IO Pi 32-Channel Port Expander - Tutorial 1 Requires python smbus to be installed For Python 2 install with: sudo apt-get install python-smbus For Python 3 install with: sudo apt-get install python3-smbus run with: python tutorial1.py ================================================ This example uses the write_pin and write_port methods to switch pin 1 on and off on the IO Pi. """ from __future__ import absolute_import, division, print_function, \ unicode_literals import time try: from IOPi import IOPi except ImportError: print("Failed to import IOPi from python system path") print("Importing from parent folder instead") try: import sys sys.path.append("..") from IOPi import IOPi except ImportError: raise ImportError( "Failed to import library from parent folder") def main(): """ Main program function """ # Initialise the first and second IO Plus as all outputs (32 outputs) bus1 = IOPi(0x20) bus2 = IOPi(0x21) bus3 = IOPi(0x22) bus4 = IOPi(0x23) bus1.set_port_direction(0, 0x00) bus1.set_port_direction(1, 0x00) bus2.set_port_direction(0, 0x00) bus2.set_port_direction(1, 0x00) bus3.set_port_direction(0, 0x00) bus3.set_port_direction(1, 0x00) bus4.set_port_direction(0, 0x00) bus4.set_port_direction(1, 0x00) bus1.write_port(0, 0x00) bus2.write_port(0, 0x00) bus3.write_port(0, 0x00) bus4.write_port(0, 0x00) while True: bus1.write_pin(3, 1) time.sleep(2) bus1.write_pin(3, 0) time.sleep(2) if __name__ == "__main__": main() 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