Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people's questions, and connect with other people.

Have an account? Sign In
Continue with Facebook
Continue with Google
or use

What is the capital of Egypt? ( Cairo )

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people's questions & connect with other people.

Sign Up Here
Continue with Facebook
Continue with Google
or use

What is the capital of Egypt? ( Cairo )

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Volt.Tech

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask question.

Continue with Facebook
Continue with Google
or use

What is the capital of Egypt? ( Cairo )

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

volt.tech Logo volt.tech Logo
Sign InSign Up

volt.tech

volt.tech Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Tags
  • Category
    • Amplifiers
    • Passives & Protection
    • Clocks & Timing
    • Diodes & Rectifiers
    • FPGAs & PLDs
    • Interface ICs & Transceivers
    • LEDs & Optoelectronics
    • Memories
    • MEMS & Sensors
    • Microcontroller
    • Power Management
    • RF & Microwave
    • Security & Smart Card
    • Motor Drivers
    • Wireless Connectivity
  • Groups
  • Add group
  • Badges
  • Help
  • Home
  • About Us
  • Contact Us
Home/arduino

Tag: arduino

Arduino is an open source platform for making electronic prototypes

volt.tech Latest Questions

ashishgawade
  • 0
ashishgawade
Asked: March 18, 2023In: Wireless Connectivity

How to do Binary Core Programming?

  • 0

Hii, is there a way in Arduino IDE or different IDEs that you run two other tasks with two cores of esp32 but set each core frequency else for sample core 0 is performing its task with 10 Mhz frequency ...Read more

Hii, is there a way in Arduino IDE or different IDEs that you run two other tasks with two cores of esp32 but set each core frequency else for sample core 0 is performing its task with 10 Mhz frequency and core1 is doing its task with 80 Mhz?

Thank you

Read less
arduinobinarycoreesp32Programming
  1. nidhi singh
    Added an answer on March 20, 2023 at 10:45 am

    Hello Ashish, No, sorry, that kind of setup is physically impossible on current ESP chips as the two cores( and the main memory, for that matter) are in the same timer domain. Thank you  

    Hello Ashish,

    No, sorry, that kind of setup is physically impossible on current ESP chips as the two cores( and the main memory, for that matter) are in the same timer domain.

    Thank you

     

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Alex thomas
  • 0
Alex thomas
Asked: October 28, 2022In: Wireless Connectivity

ESP32 VIN Pin as 5V Output?

  • 0

Hii, Is it possible to use the ESP32 VIN pin as a 5V output to power a 5V 2-channel relay for example? And if it’s possible, is it safe? In my design, before I use a 5V power source to power ...Read more

Hii, Is it possible to use the ESP32 VIN pin as a 5V output to power a 5V 2-channel relay for example?
And if it’s possible, is it safe?

In my design, before I use a 5V power source to power the ESP32 and the relay, I want to try out powering both the ESP32 and the relay with the USB port. I know that the ESP32 don’t have a 5V output pin as Arduino does, but I saw some projects using the VIN pin to power a 5V relay, but some other design used different power sources, one 5V for the relay and a USB power source for the ESP32.
So, is it possible or indeed safe to use the VIN pin as a power output?

Read less
arduinoesp32outputusbvin pin
  1. vikas Nagpal
    Added an answer on October 31, 2022 at 10:32 am

    Suggest you find the circuit diagram for your board, it'll show how the 5V pin is connected to the USB input or you can try to measure the resistance between the 5V pin and USB 5V in with an ohm meter. Still, it all depends on your USB power force and how much you can draw from the 5V pin, If directRead more

    Suggest you find the circuit diagram for your board, it’ll show how the 5V pin is connected to the USB input or you can try to measure the resistance between the 5V pin and USB 5V in with an ohm meter.
    Still, it all depends on your USB power force and how much you can draw from the 5V pin, If direct connected and/ or there are zero ohms.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer
Linto
  • 0
Linto
Asked: July 30, 2022In: Wireless Connectivity

Camera Web server

  • 0

While trying to understand the cam web server code in one of the examples on Arduino IDE but I’m struggling to understand the code. What is it checking for and what is it configuring and lastly why is it needed ...Read more

While trying to understand the cam web server code in one of the examples on Arduino IDE but I’m struggling to understand the code. What is it checking for and what is it configuring and lastly why is it needed in our code ? I have an AI thinker so do I still need this part of code ? Any help, links, etc. would be appreciated.

#if defined(CAMERA_MODEL_ESP_EYE) pinMode(13, INPUT_PULLUP); pinMode(14, INPUT_PULLUP); #endif // camera init esp_err_t err = esp_camera_init(&config); if (err != ESP_OK) { Serial.printf(“Camera init failed with error 0x%x”, err); return; } sensor_t * s = esp_camera_sensor_get(); // initial sensors are flipped vertically and colors are a bit saturated if (s->id.PID == OV3660_PID) { s->set_vflip(s, 1); // flip it back s->set_brightness(s, 1); // up the brightness just a bit s->set_saturation(s, -2); // lower the saturation } // drop down frame size for higher initial frame rate if(config.pixel_format == PIXFORMAT_JPEG){ s->set_framesize(s, FRAMESIZE_QVGA); } #if defined(CAMERA_MODEL_M5STACK_WIDE) || defined(CAMERA_MODEL_M5STACK_ESP32CAM) s->set_vflip(s, 1); s->set_hmirror(s, 1); #endif #if defined(CAMERA_MODEL_ESP32S3_EYE) s->set_vflip(s, 1); #endif

Read less
arduinocam web serverIDE
  1. Rahul B
    Added an answer on August 1, 2022 at 3:17 pm

    If you are using ESP32CAM AI Thinker, the embedded camera is an OV2640 so only part of the code will be compiled/executed, see below. The bottom line is you could leave code as-is, it should be ok Note that frame size can take following values : frame size QQVGA(160x120),HQVGA(240x176),QVGA(320x240)Read more

    If you are using ESP32CAM AI Thinker, the embedded camera is an OV2640 so only part of the code will be compiled/executed, see below.
    The bottom line is you could leave code as-is, it should be ok
    Note that frame size can take following values :
    frame size QQVGA(160×120),HQVGA(240×176),QVGA(320×240),CIF(400×296),VGA(640×480),SVGA(800×600),XGA(1024×768),SXGA(1280×1024),UXGA(1600×1200)

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  • 1 Answer
Answer

Sidebar

Ask A Question

Stats

  • Questions 394
  • Answers 381
  • Comments 0
  • Best Answers 9
  • Popular
  • Answers
  • Manoj

    Configuration using .dp vision in Infineon XDPL series IC .

    • 5 Answers
  • Linto

    Renesas RL78/G14 ADC interface code

    • 4 Answers
  • ashishgawade
    ashishgawade added an answer Hello, The USB-serial-JTAG port can usually reset/put the chip into… March 30, 2023 at 11:00 am
  • ashishgawade
    ashishgawade added an answer Hi Nidhi, Thanks for reaching out to Volt.Tech Engineering Community.… March 28, 2023 at 10:13 am
  • ashishgawade
    ashishgawade added an answer Hello@vikas, It's always recommended to use a bleeder of 100 ohms. Vout of the part has an offset… March 24, 2023 at 9:55 am
  • vikas Nagpal
    vikas Nagpal added an answer Hello, The SMPS reduces the power loss when VDD is… March 22, 2023 at 10:30 am
  • nidhi singh
    nidhi singh added an answer Hello Ashish, No, sorry, that kind of setup is physically… March 20, 2023 at 10:45 am

Users

test30329068

test30329068

  • 0 Questions
  • 0 Answers
test38329563

test38329563

  • 0 Questions
  • 0 Answers
cetdigit

cetdigit

  • 0 Questions
  • 0 Answers

Explore

  • Tags
  • Category
    • Amplifiers
    • Passives & Protection
    • Clocks & Timing
    • Diodes & Rectifiers
    • FPGAs & PLDs
    • Interface ICs & Transceivers
    • LEDs & Optoelectronics
    • Memories
    • MEMS & Sensors
    • Microcontroller
    • Power Management
    • RF & Microwave
    • Security & Smart Card
    • Motor Drivers
    • Wireless Connectivity
  • Groups
  • Add group
  • Badges
  • Help

Footer

volt.tech

Volt.Tech

Find your spark

About Us

  • About Us
  • Contact Us
  • Groups

Legal Stuff

  • Privacy Policy
  • Faqs

Follow

© 2022 volt.tech. All Rights Reserved
With Love by volt.tech.