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 sunilvb The ultrasonic sensors arrived and as I suspected both models will not work with the IO Pi Plus. I did have some success using the RCWL-1601 sensors with the I2C Switch. I connected two sensors to the switch, one on channel 1 and one on channel 2 and added 10K pull-up resistors to the SDA and SCL pins on each sensor. I placed both ultrasonic sensors side by side on a breadboard and found that when the RCWL-1601 is being used in I2C mode it appears to be sending pulses continuously as there was some interference between the sensors that caused occasional inaccuracies in the readings. I suspect if the sensors were moved further apart or placed in different directions this would not be an issue. This is the python script I used to test the sensors. It uses the I2CSwitch class from our GitHub repository. [url=https://github.com/abelectronicsuk/ABElectronics_Python_Libraries/tree/master/I2CSwitch]GitHub I2C Switch[/url] [code] import smbus import time import os from I2CSwitch import I2CSwitch # I2C address of the RCWL-1601 sensor SENSOR_ADDRESS = 0x57 # Initialize the I2C bus bus = smbus.SMBus(1) # Use bus 1 for Raspberry Pi def start_ranging_session(): # Write '1' to start ranging session bus.write_byte(SENSOR_ADDRESS, 1) def read_distance(): # Wait a few milliseconds for the measurement to complete time.sleep(0.01) # Read the 3-byte response data = bus.read_i2c_block_data(SENSOR_ADDRESS, 0, 3) # Combine the 3 bytes to get the distance in um (divide by 1000 to get mm) distance_um = (data[0] << 16) | (data[1] << 8) | data[2] distance_mm = distance_um / 1000 return distance_mm if __name__ == "__main__": i2cswitch = I2CSwitch(0x70) i2cswitch.reset() while True: # Set I2C Switch to channel 1 and read the distance i2cswitch.switch_channel(1) start_ranging_session() distance1_mm = read_distance() time.sleep(0.1) # Set I2C Switch to channel 2 and read the distance i2cswitch.switch_channel(2) start_ranging_session() distance2_mm = read_distance() os.system("clear") print(f"Channel 1 Distance: {distance1_mm} mm") print(f"Channel 2 Distance: {distance2_mm} mm") time.sleep(0.5) # Delay between readings [/code] 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