- 阅读权限
- 20
- UID
- 447
- 帖子
- 8
- 精华
- 0
- 注册时间
- 2013-7-3
- 在线时间
- 6 小时

- UID
- 447
- 帖子
- 8
- 精华
- 0
- 注册时间
- 2013-7-3
- 在线时间
- 6 小时
|
程序如下:
'ads1115 16bit A / D转换器
$regfile = "m328pdef.dat"
$crystal = 8000000
$hwstack = 32
$swstack = 32
$framesize = 32
Dim Send_ads As Byte
Dim High_byte(4) As Byte
Dim Low_byte(4) As Byte
'Dim Ads_high(4) As Byte
'Dim Ads_low(4) As Byte
Dim Ads_high As Byte
Dim Ads_low As Byte
'Dim Volt(4) As Single
'Dim Wert(4) As Integer
Dim Volt As Single
Dim Wert As Integer
Declare Sub On_ads1115
$lib "i2c_twi.lbx"
Config Sda = Portc.4 '
Config Scl = Portc.5
Config Twi = 400000
Config Lcdpin = Pin , Db4 = Portb.6 , Db5 = Portd.4 , Db6 = Portd.3 , Db7 = Portd.2 , E = Portb.7 , Rs = Portd.5
Config Lcd = 20 * 4
Cursor Off Noblink '
Cls
Waitms 300
Const Ads1115_write = &H90
Const Ads1115_read = &H91
'Const Ad_wert = 1.024 / 32767 '1024
'Const Ad_wert = 2.048 / 32767 '2048
'Const Ad_wert = 4.096 / 32767 '4096
Const Ad_wert = 6.144 / 32767 '6144
'High Byte
'Bit 15 Operational status
'When writing
'No effect = &B0xxxxxxx xxxxxxxx
'Start a single conversion = &B1xxxxxxx xxxxxxxx
'When reading
'Device is currently performing a conversion = &B0xxxxxxx xxxxxxxx
'Device is not currently performing a conversion = &B1xxxxxxx xxxxxxxx
'Bit 14..12 Input Multiplexer configuration
'Ain0+Ain1= &Bx000xxxx xxxxxxxx default
'Ain0+Ain3= &bx001xxxx xxxxxxxx
'Ain1+Ain3= &Bx010xxxx xxxxxxxx
'Ain2+Ain3= &bx011xxxx xxxxxxxx
'Ain0+GND= &Bx100xxxx xxxxxxxx
'Ain1+GND= &Bx101xxxx xxxxxxxx
'Ain2+GND= &Bx110xxxx xxxxxxxx
'Ain3+GND= &Bx111xxxx xxxxxxxx
'Bit 11..9 Gain amplifier configuration
'FSR 6.144V= &Bxxxx000x xxxxxxxx
'FSR 4.096V= &Bxxxx001x xxxxxxxx
'FSR 2.048V= &Bxxxx010x xxxxxxxx default
'FSR 1.024V= &Bxxxx011x xxxxxxxx
'FSR 0.512V= &Bxxxx100x xxxxxxxx
'FSR 0.256V= &Bxxxx101x xxxxxxxx
'FSR 0.256V= &Bxxxx110x xxxxxxxx
'FSR 0.256V= &Bxxxx111x xxxxxxxx
'Bit 8 Device operating mode
'Continuous-conversion mode = &Bxxxxxxx0 xxxxxxxx
'Single-Shot mode = &Bxxxxxxx1 xxxxxxxx default
'------------------------------------------------------------------------
'Low Byte
'Bit 7..5 Data Rate
' 8SPS= &Bxxxxxxxx 000xxxxx
' 16SPS= &Bxxxxxxxx 001xxxxx
' 32SPS= &Bxxxxxxxx 010xxxxx
' 64SPS= &Bxxxxxxxx 011xxxxx
'128SPS= &Bxxxxxxxx 100xxxxx default
'250SPS= &Bxxxxxxxx 101xxxxx
'475SPS= &Bxxxxxxxx 110xxxxx
'860SPS= &Bxxxxxxxx 111xxxxx
'Bit 4 Comparator Mode
'Traditonal = &Bxxxxxxxx xxx0xxxx default
'Window = &Bxxxxxxxx xxx1xxxx
'Bit 3 Comparator polarity
'Active low = &Bxxxxxxxx xxxx0xxx default
'Active high= &Bxxxxxxxx xxxx1xxx
'Bit 2 Latching Comparator
'Nonlatching = &Bxxxxxxxx xxxxx0xx default
'Latching = &Bxxxxxxxx xxxxx1xx
'Bit 1.0 Comparator queue and disable
'Assert after one conversion = &Bxxxxxxxx xxxxxx00
'Assert after two conversiosn = &Bxxxxxxxx xxxxxx01
'Assert after four conversions = &Bxxxxxxxx xxxxxx10
'Disable Comparator = &Bxxxxxxxx xxxxxx11 default
'N = 1
High_byte(1) = &B1100_0000 '&Hc0 &B1100_0000
High_byte(2) = &B1101_0000 '&Hd0 &B1101_0000
High_byte(3) = &B1110_0000 '&He0 &B1110_0000
High_byte(4) = &B1111_0000 '&Hf0 &B1111_0000
Low_byte(1) = &B1000_0000 '128SPS default
Low_byte(2) = &B1000_0000 '128SPS default
Low_byte(3) = &B1000_0000 '128SPS default
Low_byte(4) = &B1000_0000 '128SPS default
'******************* Hauptprogramm *************************************
Do
' For N = 1 To 4
Send_ads = High_byte(1)
Call On_ads1115 'ADS1115 读出
Wert = 256 * Ads_high
Wert = Wert + Ads_low
Volt = Ad_wert * Wert
Locate 1 , 1
Lcd "A1:" '
Locate 1 , 4
Lcd Fusing(volt , "#.######") ; " Volt"
Waitms 250
' Next N
Send_ads = High_byte(2)
Call On_ads1115 'ADS1115 读出
Wert = 256 * Ads_high
Wert = Wert + Ads_low
Volt = Ad_wert * Wert
Locate 2 , 1
Lcd "A2:" '
Locate 2 , 4
Lcd Fusing(volt , "#.######") ; " Volt"
Waitms 250
Send_ads = High_byte(3)
Call On_ads1115 'ADS1115 读出
Wert = 256 * Ads_high
Wert = Wert + Ads_low
Volt = Ad_wert * Wert
Locate 3 , 1
Lcd "A3:" '
Locate 3 , 4
Lcd Fusing(volt , "#.######") ; " Volt"
Waitms 250
Send_ads = High_byte(4)
Call On_ads1115 'ADS1115 读出
Wert = 256 * Ads_high
Wert = Wert + Ads_low
Volt = Ad_wert * Wert
Locate 4 , 1
Lcd "A4:" '
Locate 4 , 4
Lcd Fusing(volt , "#.######") ; " Volt"
Waitms 250
Loop
End
'***************************************************
Sub On_ads1115 'ADS1115 读出
I2cstart
I2cwbyte Ads1115_write
I2cwbyte &B00000001
I2cwbyte Send_ads '
I2cwbyte &B1000_0000 '
I2cstop
I2cstart
I2cwbyte Ads1115_write
I2cwbyte &B00000000
I2cstart
I2cwbyte Ads1115_read
I2crbyte Ads_high , Ack
I2crbyte Ads_low , Nack
I2cstop
End Sub |
|