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: Hello To read from four ADC chips on two ADC Pi boards you will need to create two instances of the ADCPi() class with the first instance using the two addresses on the first board and the second instance using the addresses on the second board. The code below is a modified version of the read voltage demo from the ADC Pi python library and I have added a second instance for the ADCPi class with addresses 0x6A and 0x6B. Hopefully, you can use this code to modify your own project. [pre][code]#!/usr/bin/env python from __future__ import absolute_import, division, print_function, \ unicode_literals import time import os try: from ADCPi import ADCPi except ImportError: print("Failed to import ADCPi from python system path") print("Importing from parent folder instead") try: import sys sys.path.append('..') from ADCPi import ADCPi except ImportError: raise ImportError( "Failed to import library from parent folder") def main(): ''' Main program function ''' adc1 = ADCPi(0x68, 0x69, 12) adc2 = ADCPi(0x6A, 0x6B, 12) while True: # clear the console os.system('clear') # read from adc channels on the first ADC Pi board and print to screen print("Board 1 Channel 1: %02f" % adc1.read_voltage(1)) print("Board 1 Channel 2: %02f" % adc1.read_voltage(2)) print("Board 1 Channel 3: %02f" % adc1.read_voltage(3)) print("Board 1 Channel 4: %02f" % adc1.read_voltage(4)) print("Board 1 Channel 5: %02f" % adc1.read_voltage(5)) print("Board 1 Channel 6: %02f" % adc1.read_voltage(6)) print("Board 1 Channel 7: %02f" % adc1.read_voltage(7)) print("Board 1 Channel 8: %02f" % adc1.read_voltage(8)) # read from adc channels on the second ADC Pi board and print to screen print("Board 2 Channel 1: %02f" % adc2.read_voltage(1)) print("Board 2 Channel 2: %02f" % adc2.read_voltage(2)) print("Board 2 Channel 3: %02f" % adc2.read_voltage(3)) print("Board 2 Channel 4: %02f" % adc2.read_voltage(4)) print("Board 2 Channel 5: %02f" % adc2.read_voltage(5)) print("Board 2 Channel 6: %02f" % adc2.read_voltage(6)) print("Board 2 Channel 7: %02f" % adc2.read_voltage(7)) print("Board 2 Channel 8: %02f" % adc2.read_voltage(8)) # wait 0.2 seconds before reading the pins again time.sleep(0.2) if __name__ == "__main__": main()[/code][/pre] To post code on this forum there is an "Insert Code Snippet" button on the message box, the fourth icon from the right, which should show a popup window where you can paste your code. When you press OK it should put the code in the message, formatted properly to look like a code snippet. 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