ESP32 - Intro to I2S Episode 1, explanation with basic example outputting a square wave

Поділитися
Вставка
  • Опубліковано 27 лис 2024

КОМЕНТАРІ • 51

  • @maximus6884
    @maximus6884 2 роки тому +6

    Your clear explanation on i2s was long due to the world. Thank you.

  • @noweare1
    @noweare1 3 роки тому +2

    Good job. Answered a lot of questions that I had after reading the esp32 documentation on I2S !

  • @csabahusla7766
    @csabahusla7766 2 роки тому

    Nice work. I got answers to many questions about the use of I2S. This is the first time that I can successfully play different sounds on an external DAC from the BLE midi input on the ESP32.

  • @fvgm
    @fvgm 2 роки тому +1

    Nice and clear explanation about I2S interface. Thank you.

  • @dansam1395
    @dansam1395 4 роки тому +1

    fantastic explanation on i2s works, well done!

    • @XTronical
      @XTronical  4 роки тому

      Thanks for the feedback

  • @gearscodeandfire
    @gearscodeandfire Рік тому

    this was wonderful, very glad i found it!

  • @TheDiverJim
    @TheDiverJim 3 роки тому

    great vid. You have many great vids. How is this not a 100k channel?

  • @weekal5515
    @weekal5515 3 роки тому

    Ive been reserching i2s but the information is so clutterd with non standerd with standers or naming the pins otherly its just painful

  • @anonymous.youtuber
    @anonymous.youtuber 3 роки тому +1

    Thank you for the excellent explanation!
    🙏🏻

    • @XTronical
      @XTronical  3 роки тому

      Thanks for the feedback

  • @elchev5082
    @elchev5082 2 роки тому

    Could I ask you why you masked Output value? You add two 16bit values (OuputValue is uint16_t) so I think that Value32But = (OutputValue

  • @rajeshkolhe1522
    @rajeshkolhe1522 2 місяці тому

    Hi sir ..i need I2s parallel how i can do it ?

  • @stanislavtodorov8705
    @stanislavtodorov8705 Рік тому

    Great explanation, the best I've stumbled upon. Can I use two I2S ports as OUTPUTS simultaneously? My idea is to build a Bluetooth audio receiver which sends the data through two I2S ports at the same time. The idea is to implement high pass filter on one signal and low-pass on the other. Then feed the I2S signals to 2 external DACs and create a 2.1 audio system (subwoofer + 2 satelites). Do you think this is possible?

    • @XTronical
      @XTronical  Рік тому

      Yes, I believe you can. I've never tried but I don't see why not. Getting them perfectly in sync maybe the only issue. That said they'd only be a few bits out at most, which surely would not be noticeable. It would be such a small time scale.

    • @stanislavtodorov8705
      @stanislavtodorov8705 Рік тому

      @@XTronical ​ @XTronical Awesome! Thanks for your prompt reply. Few samples will not be noticeable time difference. There are much more things to find out before worrying about sync. At first I have to find out how to initialize both I2S ports simultaneously...static const i2s_port_t i2s_num = I2S_NUM_???? Sorry, I'm complete noob.

  • @SA-oj3bo
    @SA-oj3bo 2 роки тому

    Hi, I would like to use I2C MIC to capture the sound and forward it to the I2S DAC MAX98357A, I can not find any example how to do that. Can you help? Thx.

    • @XTronical
      @XTronical  2 роки тому

      Sorry, I've never looked at this.

  • @maureljulien
    @maureljulien 2 роки тому

    Hi, thank you very much these precious informations. I'd have a quesiton. I want to use stereo headphone connected thru jack using two MAX98357. My question is how do I connect the two MAX negative output to jack ground pin ? directly together (but I suppose not...) ? Thank you for everything !

    • @XTronical
      @XTronical  2 роки тому +1

      Yes, directly together for ground to ground of Jack then one positive to one jack connection and the other positive to the remaining last jack connection.

  • @SergeyILinykh
    @SergeyILinykh 4 роки тому

    Will all of your examples work with I2S PCM5102?

    • @XTronical
      @XTronical  4 роки тому

      Yes, they will. Just follow the wiring in the episode on Internet radio from a few episodes ago

    • @SergeyILinykh
      @SergeyILinykh 4 роки тому

      @@XTronical
      Thank you!

  • @sophiebolinski665
    @sophiebolinski665 3 роки тому

    Hi, I have a really frustrating experience trying to set up the code you are explaining in this video. The #include "driver/i2s.h" statemanet throws a "no such file or directory" error. I have the according esp8266 library installed, I don't find the folder "driver" anywhere and I can not find any information about how to change my directory system or which file I have to include so that it is working... Would be a big help if you know something!

    • @samsamm777
      @samsamm777 2 роки тому +1

      I have the same problem, dont know which library to install

    • @XTronical
      @XTronical  2 роки тому +1

      Have you tried deleting the line. I think this library maybe standard include now and you don't need to write the words line explicitly, although I'm using esp32 in my examples not 8266

  • @JanHKila
    @JanHKila 3 роки тому

    Great, just what I need!
    Is this a slip of the tongue? "longer wavelength and higher frequency".
    Line: static const uint16_t WaveLength=100;
    As I understand it for quite some time, a longer wavelength gives a lower frequency. Or do you have something else in mind?

    • @XTronical
      @XTronical  3 роки тому

      Yes, a mistake. They are inversely proportional as you say, good spot!

  • @supermamaoo
    @supermamaoo 3 роки тому

    Very good explanation.
    Just a question: is it possible to use a ESP8266 instead of ESP32 ?

    • @XTronical
      @XTronical  3 роки тому

      Yes, should be OK. It supports i2s it's just a little less powerful and less memory than the 32.

  • @kitlinghou6848
    @kitlinghou6848 2 роки тому

    Thank you for your great explanation let us know more about i2s. Recently i wanna to build the audio spectrum to show as led matrix from mp3 in sd card. I think it is workable, is it possible got the analog signal from i2S to transform into fft to display the sound movement to led matrix, would you share your idea how to implement to esp32 board ?

    • @XTronical
      @XTronical  2 роки тому

      It is possible. There is some maths you’ll can do on the digital data but I worked on this over a year ago and couldn't get it to work properly and I spent some time on it. I can tell you the library if you want and you can have a go if you wish.

    • @kitlinghou6848
      @kitlinghou6848 2 роки тому

      @@XTronical Thank you for your reply. Would you share all information you have such as library, connection diagram etc to me?

    • @XTronical
      @XTronical  2 роки тому

      There is nothing different for wiring as the analyser works with the digital file before it's output. I can't find the code that I did (I probably deleted it in frustration!). However I based all my work on the videos from the channel called "Dave's Garage", here's a link to the first video he does on the spectrum analyser. I used whatever library he does.
      ua-cam.com/video/f_zt7zdGJCA/v-deo.html
      Good luck :)

  • @abhilashpatel1809
    @abhilashpatel1809 2 роки тому

    best explanation!!

  • @projetos_leotronico
    @projetos_leotronico 4 роки тому +1

    Great! Tks.

  • @neilinsane5545
    @neilinsane5545 4 роки тому

    Help, How can I generate a sine cosine wave with PCM5102?

    • @XTronical
      @XTronical  4 роки тому

      I haven't done this for i2s but I did do it for my dac audio series. This page has the code. www.xtronical.com/testing-the-dacaudio-hardware/
      It would need a rewrite for i2s but does show the principles. When I release the full library for i2s this will be able to generate sine waves, if you want to wait.

  • @graysong5787
    @graysong5787 3 роки тому

    Thank you!

  • @brianharper9798
    @brianharper9798 4 роки тому

    Ooh, Could build another synthesizer.

  • @rockett8610
    @rockett8610 3 роки тому

    Why using 25 27 26 in this order?

    • @XTronical
      @XTronical  3 роки тому

      No reason, I probably saw them used in some documentation or just picked them semi randomly. There might have been some logic a while back but if there was I've forgotten it! The pins can be largely any you want.

  • @geraldoleandro4824
    @geraldoleandro4824 3 роки тому

    Favor ativar legenda.

  • @JerryEricsson
    @JerryEricsson 3 роки тому

    If you have heard it before; you will understand, and chuckle. If you have never heard it before, think about it, long and hard "put it back in the sand...."

  • @Marc_Wolfe
    @Marc_Wolfe 10 місяців тому

    Oh boy, library successfully installed. Finally might have a good example to test my DAC.... nope. More youtube garbage.

    • @XTronical
      @XTronical  10 місяців тому +2

      This is a simple intro, I've my own I2S library in some of my other videos. But there's a lot of crap on YT, so can't promise it'll do what you want. Probably best to not bother actually. Probably disappointing.

    • @Marc_Wolfe
      @Marc_Wolfe 10 місяців тому

      @@XTronical Instead of documentation, you and dozens others want to re-design... re-PAINT, the wheel.

    • @XTronical
      @XTronical  10 місяців тому +2

      My website is available for further information. People upload what interests them. Nature of the beast.

    • @Marc_Wolfe
      @Marc_Wolfe 10 місяців тому

      It's a shame doing things a new garbage way seems to interest so many people who have any idea how to code, and also bother to upload videos for others. It's also a shame that's the depth of your opinion.

    • @XTronical
      @XTronical  10 місяців тому +2

      One person's garbage is another person treasure. But if we're resorting to personal insults rather than constructive criticism then I'm out. Feel free to have the last word. I'm done.