The PCF8574/74A MicroPython Library simplifies the process of expanding input and output capabilities via the I2C interface. It provides an intuitive solution for extending the number of GPIO pins available in MicroPython projects, making it easier to manage GPIO pins for various applications. With its user-friendly interface and robust functionality, this library is suitable for a wide range of projects requiring additional I/O expansion.
-
Clone the repository into the project directory:
git clone https://github.com/zerovijay/PCF8574T.git
from machine import I2C, Pin
from PCF8574T import PCF8574T
# Customize I2C configuration, setting frequency to 100000 Hz.
i2c = I2C(0, scl=Pin(1), sda=Pin(0), freq=100000)
# Initialize the PCF8574T instance
expander = PCF8574T(port=i2c, addr=0x27)
# Set pin mode (INPUT)
expander.pin_mode(2, PCF8574T.INPUT_LOW)
# Set pin mode (OUTPUT)
expander.pin_mode(5, PCF8574T.OUTPUT_LOW)
# Write digital value
expander.writeto_pin(5, True)
# Read digital value (0 or 1) from the input pin
value = expander.readfrom_pin(2)
- The NXP PCF8574/74A and Texas Instrument PCF8574 are functionally the same, but have different slave addresses.
- Ensure a valid I2C object for communication.
- Pin numbering ranges from 0 to 7.
- Robust exception handling is implemented for potential I2C communication errors and user errors.
Contributions to the GpioExpander Library are highly appreciated. If you encounter any issues or have suggestions for improvements, please create an issue or submit a pull request.
இந்த PCF8574T மென்பொருள் நூலகத்திற்கான பங்களிப்புகள் மிகவும் ஊக்குவிக்கப்படுகின்றன! உங்களுக்கு ஏதேனும் சிக்கல்கள் ஏற்பட்டாலோ அல்லது மேம்பாடுகளுக்கான பரிந்துரைகள் இருந்தாலோ, தயவுசெய்து 'சிக்கல்' ஒன்றை உருவாக்கவும் அல்லது இழுக்கும் கோரிக்கையைச் சமர்ப்பிக்கவும்.
நன்றி.
This library is released under the MIT License.