Global web icon
arduino.cc
https://forum.arduino.cc/t/esp32-s3-onboard-rgb-le…
ESP32-S3 onboard RGB LED - Programming - Arduino Forum
Hi. Does someone know how to control onboard RGB LED on ESP32-S3?
Global web icon
arduino.cc
https://forum.arduino.cc/t/exit-status-101/1323688
Exit status 101 - IDE 2.x - Arduino Forum
The alternative is to configure Arduino IDE to use different paths on your computer, which are not under the user folder (and that only contain basic ASCII characters): These instructions will only work for Arduino IDE versions 2.3.4 or newer.
Global web icon
arduino.cc
https://forum.arduino.cc/t/bluetooth-connection-pr…
Bluetooth connection problem with Esp32 - Arduino Forum
Thanks for the suggestion although I am having trouble using the BLE: Using ESP32 BLE Arduino library ESP32 with version 1.0.1 in the folder: C:\Usersers Arduino IDE library ESP32 BLE Arduino. exit status 1 Compilation error: conversion from 'std::string' {aka 'std::__cxx11::basic_string<char>'} to non-scalar type 'String' requested I've been having the same problem for more than three days, I ...
Global web icon
arduino.cc
https://forum.arduino.cc/t/if-with-and-and-or-fuct…
IF with AND and OR fuctions - Syntax & Programs - Arduino Forum
With my BASIC language programmed controllers I can use AND and OR. example: IF (VAL > 100 AND VAL < 140) THEN ... How can I solve this with the if function in the Arduino? Thanks. 😉
Global web icon
arduino.cc
https://forum.arduino.cc/t/arduinoide-2-3-6-silent…
ArduinoIDE 2.3.6 silent with libs for all users - IDE 2.x - Arduino Forum
Hello! I need to distribute ArduinoIDE 2.3.6 silently via SCCM to our Computer Labs at the uni. I've managed to make a powershell script that installs the application, boards, libs, drivers and certs silent. As default, boards and libs are installed in the userprofile folder. I need them installed for all users though. And I've managed to get boards and libs to install for all users. But when ...
Global web icon
arduino.cc
https://forum.arduino.cc/t/esp32-c3-supermini-pino…
ESP32 C3 Supermini Pinout - 3rd Party Boards - Arduino Forum
Hi everybody, I am not too much familiar with HW stuff and a little more than newbi on SW. I would like to use this ESP32C3 supermini board. For the pinout I found some different versions on the web and I wonder which one is the real one? My second question is: I want to use just 3 simple digital output signals to drive stepper motors, 5 digital inputs for switches and pulse buttons and the ...
Global web icon
arduino.cc
https://forum.arduino.cc/t/arduino-uno-text-to-spe…
Arduino uno text to speech - General Guidance - Arduino Forum
Hello, I have an Arduino project to mimic the device used by Stephen Hawking to write, to which I had added an LCD screen, and a joystick. The funcionality is pretty basic; you use the joystick to write words, which are then displayed on the LCD screen. Now I would like to add the text-to-speech functionality to it. The question that I have is what components do I need to add to the existing ...
Global web icon
arduino.cc
https://forum.arduino.cc/t/plx-daq-version-2-now-w…
now with 64 bit support! (and further new features) - Arduino Forum
Support for both Office versions 64 bit as well as Office 32 bit No more installation needed! All within the workbook I got rid of the selmaDAQ_Ver2.ocx and use API calls now Fully compatible to all previous PLX-DAQ commands in your code! Got rid of some old stuff like "Max row size of 65000" (Office limit is 1048576 rows with 64 bit) or Baud rate only up to 128000 (now supports 230400 and ...
Global web icon
arduino.cc
https://forum.arduino.cc/t/compilation-error-no-su…
Compilation error: no such file or directory - Arduino Forum
Select File > Preferences... from the Arduino IDE menus. The " Preferences " dialog will open. Check the box next to " Show verbose output during: ☐ compilation " in the " Preferences " dialog. Click the OK button. Select Sketch > Verify/Compile from the Arduino IDE menus. Wait for the compilation to fail. You will see a " Compilation error: ... " notification at the bottom right corner of ...
Global web icon
arduino.cc
https://forum.arduino.cc/t/solved-variable-not-dec…
[SOLVED] Variable "Not declared in this scope" after ... - Arduino Forum
You declare variables in the scope of setup (), and you try to use them in the scope of loop (), so the compiler tells you that you haven't declared them to be used in the scope of loop () . . . . What's the confusion? Put your variable declarations before setup () by where all of your #define 's are and they'll be global.