Uncategorized

spi mcp3008 ir xmt/rcv

SPI max speed reading with MCP3008

Ask QuestionAsked todayActive todayViewed 25 times1

EDIT: Firstly I wrote it a bit confusing way. So let me summarize my problem. This is something like answer to comment bellow.

(1) I am trying to make somethin like visible light communication based on LED as independent TX part and photodiode with MCP3008 as RX part. I am attaching a photo of my circuit I currently use. The resristor on the TX part has 10 ohms resistivity and the resistor on the RX part has 10K ohms.

Circuit I currently use

(2) I want to receive data on 10 kHz frequency (Code from the TX part: time.sleep(delay) delay is set to 0.0001). This is why I thought that I need to apply Nyquist sampling theorem. This theorem says: Sampling frequency shoult be at least 2-times higher as sampled frequency. So I used 22 kHz frequency on the SPI bus, because I thought that this is my sampling frequency for digital signal of LED (picture bellow – last line marked as 14 TXD). It does not work, so I was trying to find proper frequency to read some of the data and this is why I use 480,750 kHz. This frequency gives me the closest result for my data sent form TX.

PISCOPE

(3) Unfortunately, I do not have a scope, so I can not show you exact shape of signals. I use a PISCOPE for some analysis (picture above). The bottom GPIO pin is for sending information using LED. I sent this sequence, which is capturend on the PISCOPE: 000011110101100101010001001111010011110100111110. The RX part recieve after some management this sequence: 1011001001000100111010011101 (First eight and last eught bits from TX sequence are cut, because those are only for communication starting and ending. There you cn see that a lot of bits are lost or doubled – this is why my RX sequence start with 1. The 1 is from start sequence, which has, as it seems to be, on bit doubled).

(4) I explain to you already what I mean by a Nyquist. I mean Nyquist-Shanonn sampling theorem.

Question: So my question is. How can I set a proper SPI bus frequency (sampling frequency?) for the 10 kHz if I want to receive all the sent bits in correct oreder? I am new in this field, so any kind of help will be much appreciated. Thank you and sorry for my brief explanation above 🙂pythonledmeasuringShareEditFollowClose 3Flagedited 8 hours agoasked 13 hours agodejv_IT1122 bronze badges

  • 1Nothing really to do with the Pi. I’d like to see some evidence that you have calculated the number of bits you expect to receiver per second from the ADC (for the samples you are taking). â€“ joan 13 hours ago 
  • #dejv_IT, I found your question very confusing. Let me try to summarize: (1) You are using Rpi SPI MCP3008 ADC to convert two analog signals Rx and Tx to two 10-bit digital values, (2) You are setting SPI frequency to 480,750 kHz. (3) But I don’t know how the analog signals look like. Are they square waves or aperiodic waves? It would be nice if you can show us a picture, or describe in more details how they look like. (4) I don’t understand what do you mean by a “Nyquist”. Are they some sort of oscillation peaks? â€“ tlfong01 12 hours ago    
  • 1@tlfong01 I updated my explanation bellow. Sorry for confusing question I wrote before â€“ dejv_IT 8 hours ago
  • By default piscope will only reliably show signals at or below 100 kHz. It samples at 200 kHz. That would explain missing data. â€“ joan 7 hours ago
  • 1@joan I used PISCOPE only for showing shape of the signal I sent via LED. I do not use PISCOPE for receiving data. â€“ dejv_IT 7 hours ago
  • @dejv_IT. Many thanks you for your clarification. Your edited question is very clear to me now. So let me try to summarize your project again. (1) You want to experiment with visible light signal transmitting and receiving. (2) Your use of Tx/Rx is confusing. I would suggest to use xmit/rcvacronyms.thefreedictionary.com/XMIT%2FRCV. (3) I usually hear Shannon Theorem, not so common Shannon Nyquist or Nyquist/Shannon, thus my misunderstanding. (4) Your xmit signal seems digital, so use ADC to check out digital signal is not typical, thus confusion. / to continue, … â€“ tlfong01 27 mins ago   
  • @dejv_IT, I know you are experimenting with visible light signals, but you might like to compare and contrast with IR (InfraRed) transceivers. You might find the following Q&As helpful: (1) Rpi3 LIRC Library and UART IR Transceiver Setup Problem, Viewed 4k times raspberrypi.stackexchange.com/questions/103452/… (2) SPI slave randomly missing bits in response: electronics.stackexchange.com/questions/515225/…. Happy learning. Cheers. â€“ tlfong01 1 min ago   Edit   

Add 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.