# 接线图
# 树莓派管脚图
# 代码
| #include <stdio.h> |
| #include <wiringPi.h> |
| #include <pcf8591.h> |
| |
| #define PCF 120 |
| |
| int main (void) |
| { |
| int value ; |
| wiringPiSetup () ; |
| |
| pcf8591Setup (PCF, 0x48) ; |
| while(1) |
| { |
| value = analogRead (PCF + 3) ; |
| printf("%d\n", value); |
| analogWrite (PCF + 0, value) ; |
| delay (10) ; |
| } |
| return 0 ; |
| } |
编译命令: gcc pcf8591.c -o pcf8591 -lwiringPi
# Python
| |
| import PCF8591 as ADC |
| |
| def setup(): |
| ADC.setup(0x48) |
| |
| def loop(): |
| while True: |
| print ADC.read(0) |
| ADC.write(ADC.read(3)) |
| |
| def destroy(): |
| ADC.write(0) |
| |
| if __name__ == "__main__": |
| try: |
| setup() |
| loop() |
| except KeyboardInterrupt: |
| destroy() |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| import smbus |
| import time |
| |
| |
| bus = smbus.SMBus(1) |
| |
| |
| def setup(Addr): |
| global address |
| address = Addr |
| |
| def read(chn): |
| if chn == 0: |
| bus.write_byte(address,0x40) |
| if chn == 1: |
| bus.write_byte(address,0x41) |
| if chn == 2: |
| bus.write_byte(address,0x42) |
| if chn == 3: |
| bus.write_byte(address,0x43) |
| bus.read_byte(address) |
| return bus.read_byte(address) |
| |
| def write(val): |
| temp = val |
| temp = int(temp) |
| |
| bus.write_byte_data(address, 0x40, temp) |
| |
| if __name__ == "__main__": |
| setup(0x48) |
| while True: |
| print 'AIN0 = ', read(0) |
| print 'AIN1 = ', read(1) |
| tmp = read(0) |
| tmp = tmp*(255-125)/255+125 |
| write(tmp) |
| |