Uncategorized

Detecting an impact with a piezo sensor and ADC

Detecting an impact with a piezo sensor and ADC

Ask QuestionAsked 2 days agoActive todayViewed 31 times1

I am trying to use piezoelectric sensors to detect when an object strikes one of 9 plastic panels. I have 3 ADS1115 ADCs (they are the QIFEI ones that actually are ADS1015), so 12 channels at 12-bits over i2c. Using a Pi-4 1GB. Each piezo disc is attached to a little protection circuit with a 1 MOhm resistor and a diode. I’m supplying a 5V reference from the Pi to the ADC and the protection circuit, though I don’t understand why the protection circuit needs it.

ADC: https://www.amazon.com/gp/product/B07VPFLSMX/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1

Piezo & Diode: https://www.amazon.com/gp/product/B086S3F4J1/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1

When I test the ADCs with nothing attached, each channel reads a random voltage (no pull down resistor attached), but if I connect a voltage to any channel, every channel changes. i.e. attach 1.5V battery to to CH1 and it goes to ~1.5V but Ch2-4 go to 0.590V. On some of the ADCs, measuring a battery using CH1 causes CH2 to also read that value.

  1. Are these ADCs broken?
  2. How can I detect a transient signal from the piezo? The sampling rate is listed as over 3000 Hz, but I can’t find any way to set it via the adafruit_ads1x15 library. I really just want to detect if an impact happens, and don’t particularly care about capturing the waveform.

From my tests, there is a big difference between the signal you see when the panel is struck and the signal for when a neighboring panel is struck (with or without the diodes). I taped the piezos directly to the panels and then struck the panels and sampled the output with a scope so I know what the output should be.  pi-4i2cShareEditFollowCloseFlagedited yesterdayasked 2 days agoEntropy1122 bronze badges New contributor

  • (1) Are you using any I2C program to test the ADC1015s? (2) The protection cct is to clamp down the big piezo spike. You might like to read my answers to the following Q&As: (1) Protecting circuit from piezoelectric disc voltage spike, 260 times: electronics.stackexchange.com/questions/528419/…, (2) Piezo sensor to pick up acoustic instrument signal using Rpi and ADC, 777 times: raspberrypi.stackexchange.com/questions/103868/…. Cheers/ – tlfong01 2 days ago   
  • I do not understand how you think you can sample fast enough to meet your goals over I2C. How many samples a second can you reach theoretically? How many are you getting? – joan yesterday
  • @tlfong01 I’m using the sample code in the Adafruit ADS1x15 library. I understand the protection circuit clamps to 5V, my comment was that I didn’t understand why the protection circuit needed a 5V input, though that isn’t important. Thanks for the links, I have read several of your answers in other threads, but I had not seen the one on eletronics.stackexchange. – Entropy yesterday
  • @joan I haven’t used a Pi or I2C before, so I just read the datasheet for the ADS1015 said 3300 samples/s, and assumed I could sample at that rate. In reality with my simple polling loop in my test code, I can read 4 channels every 8-12 ms. I don’t think I need to sample fast enough to capture the actual waveform, I just want to know when it gets hit, and be able to filter out hits to a neighboring panel, which produce much lower amplitude oscillations. – Entropy yesterday
  • All I will say is that I2C is a bus which transfers at a number of bits per second. Each sample will be x (8-bit) bytes long. With overhead each sample will be something like 9 * (x+1) bits in length. Do the maths. – joan yesterday
  • @Entropy, quick comments: (1) Usually an ADC needs external analog voltage references (eg. 1.024V, 2.045V, 2.5V, 4.096V, zener or similar, or just 5V (Vcc), but ADS1x15 has built in internal references, so you CANNOT use that. (2) I think using 5V Vcc to the 1M || Zener is for two reasons: (a) avoid ESD events,. (b) avoid high Z 1M || Zener floating become antenna picking up noises (eg from mains). – tlfong01 20 hours ago   
  • @Entropy, Troubleshooting ADC suggestion: (1) test if ADC can read calibrating voltages such as 0V, 5V, 2.5V etc, to make sure ADC is working OK. – tlfong01 20 hours ago   
  • @Entropy, Impact detection suggestion: (1) just use one channel for piezo disc, unused channel inputs can be tied through a resistor (e.g. 10K) to ground, (2) repeat single shot sample conversions for every 10mS, and take say, 5 moving average readings to detect a threshold, say, 2V. Just brainstorming, not sure if good suggestion. Good luck, Cheers. – tlfong01 20 hours ago    
  • I forgot two more things: (1) You can use a simple RC low pass filter to smooth out the seemingly high frequency waveform. (2) Actually you don’t need the over killing 16 bit ADC, you can use 8-bit or 10-bit ADC, or even use a hardware peak voltage detector, or sort of Schmitt trigger invert logic gate. – tlfong01 14 hours ago   

Add a commentStart a bounty

1 Answer

ActiveOldestVotes1

No, the ADC isn’t broken. It can measure any value on unconnected channels, including a value which depends on the signal on neighboring connected channels.

If you want to create a slow “amplitude” signal from a faster signal, you need an envelope detector. That’s how AM radios used to work.ShareEditFollowFlaganswered 13 hours agoDmitry Grigoryev19.1k44 gold badges3333 silver badges102102 bronze badgesAdd a comment

Categories: Uncategorized

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.