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 Guys! I am writing to you because we have a problem with Programming and using IO Pi Plus in C. I have read a lot of discussions about this topic, but we couldn't manage to solve our problem yet.Our problem is that we would like to connect a lot of buttons to the IO Pi Plus and use their signal as interrupts.(We are using a RPI 3B+) We want the pins 1-8 of port0 of the bus2 to trigger the IA of the bus2. The IA port is connected to one of the GPIOs of the Raspberry Pi 3B+ which is initialized as an interrupt. Our problem is, that we can't get any feedback from the buttons. In the wiring we don't use a level-shifter, but voltage divider(an 1k Ohm resistor and an 1,8k Ohm resistor) and so we get 3,22 Volt. There was a one time occasion,that we got a printout from the read_interrupt_capture function as we were constantly pushing our button. It was something like that: Port 0 7f Port 0 7f Port 0 7f Port 0 fe Port 0 fe It was a pretty random answer.. We had one wired button on the pin1 of the port0 of the bus1. Since then we checked all wireings. This is our code: #include "stdio.h" #include "stdlib.h" #include "string.h" #include "signal.h" #include "unistd.h" #include #include "ABE_IoPi.h" #include #include #include #define BUTTON 25 void callBut() { printf("Port 0 %x \n",read_interrupt_capture(0x21, 0)); } int main(int argc, char* argv[]) { IOPi_init(0x21); // initialise one of the io pi buses on i2c address 0x20 set_port_pullups( 0x21, 0, 0x00); //set the internal 100K pull-up resistors for the selected IO port set_port_direction(0x21, 0, 0xFF); // set the direction for bank 0 to be outputs invert_port(0x21, 0, 0xFF); //invert the polarity of the pins on a selected port set_interrupt_polarity(0x21, 0); //This sets the polarity of the char output pins. mirror_interrupts( 0x21, 1); // Set the interrupt pins to be mirrored or for separate ports set_interrupt_defaults( 0x21, 0, 0xFF); set_interrupt_type( 0x21, 0, 0xFF); //Sets the type of interrupt for each pin on the selected port set_interrupt_on_port( 0x21, 0, 0xFF); reset_interrupts( 0x21); wiringPiSetupGpio(); pinMode(BUTTON,INPUT); pullUpDnControl(BUTTON,PUD_UP); wiringPiISR(BUTTON,INT_EDGE_FALLING,&callBut); while(1) { } } Can anyone help us solve this problem? Any advice and/or help is welcomed! Best regards, Andrew 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