element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Community Hub
Community Hub
Member's Forum New clone on the block
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Leaderboard
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Community Hub to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 38 replies
  • Subscribers 528 subscribers
  • Views 5023 views
  • Users 0 members are here
Related

New clone on the block

scottiebabe
scottiebabe over 2 years ago

While browsing for low cost EVBs, I noticed that some of the ADS1115 (4-channel 16-bit delta-sigma i2c adc) are being fitted with an IC marked ADX111A.

Which turns out to be at least on paper nearly identically to the ADS1115.

image

image 

https://datasheet.lcsc.com/lcsc/2302211830_analogysemi-ADX111AQFN10_C5359372.pdf 

TI ADS111x

image

https://www.ti.com/lit/ds/symlink/ads1114.pdf 

I'm not against competition. But the dark/dangerous side is when someone laser marks the chip as being TI's part, and sells it as a genuine TI part, when it most certainly isn't.

Glass half-full, glass half-empty....

  • Sign in to reply
  • Cancel

Top Replies

  • anniel747
    anniel747 over 2 years ago in reply to Andrew J +4
    Evaluation Board.
  • scottiebabe
    scottiebabe over 2 years ago in reply to scottiebabe +4
    Hold onto your hats boys and girls, this ADC is flying at a whopping 8 Sa/s... Applying a 1 Cycle/s test tone. Thanks ADI, neat demonstration and evaluation tool.
  • scottiebabe
    scottiebabe over 2 years ago in reply to scottiebabe +4
    Tight squeeze for the 9V battery, but it should be okay...
Parents
  • scottiebabe
    scottiebabe over 2 years ago

    I have no clue how to use Industrial IO (https://www.kernel.org/doc/html/v4.12/driver-api/iio/index.html) but it appears to work, if that's you're thing.

    I followed this guide: https://wiki.seeedstudio.com/4-Channel_16-Bit_ADC_for_Raspberry_Pi-ADS1115/

    image

    I followed this guide for a bit, but then it quickly went beyond me https://elinux.org/images/b/ba/ELC_2017_-_Industrial_IO_and_You-_Nonsense_Hacks%21.pdf 

    This as far as I got:

    image

    But I can read data out of the sysfs interface:

    image

    I don't know why I would use a low-speed ADC this way, but I guess I could if I wanted to...

    Update: I needed to load the hr timer module:

    image

    Now following this guide as appropriate to the ads1115 works for 1 channel:

    image

    image

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • scottiebabe
    scottiebabe over 2 years ago in reply to scottiebabe

    This works too:

    #! /usr/bin/python
    
    import time, iio
    
    ctx = iio.LocalContext()
    ctrl = ctx.find_device('ads1015')
    
    voltages = ['voltage0', 'voltage1', 'voltage2', 'voltage3']
    for id in voltages:
        chan = ctrl.find_channel(id)
        print("{0}: {1}".format( chan.id, chan.attrs['raw'].value) )

    Credit: https://stackoverflow.com/questions/48565894/using-the-iio-python-package 

    Maybe iio is the way to go...

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • scottiebabe
    scottiebabe over 2 years ago in reply to scottiebabe

    What a rabbit hole... 

    image

    https://github.com/analogdevicesinc/iio-oscilloscope 

    https://wiki.analog.com/resources/tools-software/linux-software/iio_oscilloscope 

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • scottiebabe
    scottiebabe over 2 years ago in reply to scottiebabe

    Hold onto your hats boys and girls, this ADC is flying at a whopping 8 Sa/s...

    image

    Applying a 1 Cycle/s test tone.

    image

    Thanks ADI, neat demonstration and evaluation tool.

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • scottiebabe
    scottiebabe over 2 years ago in reply to scottiebabe

    Hold onto your hats boys and girls, this ADC is flying at a whopping 8 Sa/s...

    image

    Applying a 1 Cycle/s test tone.

    image

    Thanks ADI, neat demonstration and evaluation tool.

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube