ESP32-to-ESP32 Duplex Communication via ESP-NOW

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

КОМЕНТАРІ • 21

  • @k98killer
    @k98killer 21 день тому

    Technically, it is half-duplex since they cannot both transmit simultaneously. Both 802.11 and LoRa use CSMA/CA: there is a transmission preamble that allows a transmitter to detect when the transmission medium is busy and cancel its transmission to avoid corrupting the other, then wait for it to end before it begins its own transmission.

  • @syaduinotech3681
    @syaduinotech3681 3 роки тому +1

    Your video was very useful to me. Tq for sharing.

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

    awesome. Tank you for sharing code/knowledge

  • @beamerboy9273
    @beamerboy9273 6 місяців тому

    Much thanks for whis review. What is the maximum frequency of value updates on the displays?

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

    nice

  • @borzovdmz3647
    @borzovdmz3647 8 місяців тому

    I would like to add the RSSI value in the display of the connection in general. It seems impossible.ESP-NOW.

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

    Can this be used to tightly time sync sensor data from each unit?

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

    thank you for your video and hello from russia. please tell me, is it possible to enter mac addresses directly from the program? in "loop" can I enter the mac address from the serial port, and it is used for communication via esp now

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

      Thanks for your feedback. I think you can by including this function Serial.parseInt() within a loop, which may be used to input the six MAC address values and store it in the elements of an array.

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

    is it possible to have more than 2 boards in full-duplex ?

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

      I believe so, since ESP-NOW supports multicast. May be a more economic solution is to use nRF24L01+ modules with Arduino

    • @nu77byte49
      @nu77byte49 3 роки тому +1

      @@AnasKuzechie yes I was thinking about the nrf24l01+ I have afew of them. I will probably stick with the esp as I'm Rendering map tiles aswell and also storing data they just have more pinouts :)

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

    Hi maybe you can help me, i currently have a raspberry pi running a website with some buttons on it. I want to make the buttons on the pi be able to control a light for example connected to the esp32. I thought of using a get request and using a http webserver on the esp32 but i feel like there must be a better way. Also the way i mentioned, i am finding some difficulities.
    How would you do this?
    Greets from Belgium,
    Arik

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

      Hi, it might help if you could send me via my blog (link in the description) a block diagram of your proposed system.

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

      @@AnasKuzechie Ok sure, i will draw a small example of what i mean to simplify it on paper :)
      Where do i find your blog? I can't seem to find a link, only a link redirecting back to your channel

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

      @@aarriikknn33ll Link in this video description.

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

      @@AnasKuzechie Oh okay, i have already sent you an email aswell :) thanks for taking your time

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

      @@aarriikknn33ll You're welcome

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

    Can you explain any projects in micropython ?

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

      I have never programmed in Micropython, my specialty is assembly and C/C++. On the other hand, I’m interested in Python and may do a tutorial in the near future.