You might have better luck with PlatformIO than the Arduino IDE; it's better at automatically choosing the serial port, though I can't say I've used it under Windows. - Source: Reddit / 14 days ago
My other suggestion takes more work but will make your life oh so much better. Professionally I have used and highly recommend. https://platformio.org/ which is free! - Source: Reddit / 23 days ago
Will you be doing embedded Linux? Embedded RTOS? Bare metal? Microcontrollers? SoC (say, FPGA with a hard processor core)? You can do a lot with QEMU. https://bootlin.com/ has a lot of great, free training material. https://bootlin.com/doc/training/embedded-linux-qemu/embedded-linux-qemu-labs.pdf is one of my favorites. Learning to cross-compile, do embedded debugging, the process of booting an embedded... - Source: Hacker News / 28 days ago
I found this in the S1 Pro Manual. I haven't tried this yet but it seems like you could just get the S1 Pro firmware and use platformio to build and upload it directly to the printer. Just incase you want to go that route, here's the Marlin documentation on how to use platformio to build and upload the firmware. - Source: Reddit / about 2 months ago
Once it's connected you use whatever programming tool you're building with. The Arduino IDE will work if you install ESP32 support. There'll be an option to upload firmware. I use PlatformIO from the command line; it has options to upload when you build firmware. Fundamentally these use esptool.py to flash the firmware to the board (it can also erase the board's flash storage, read it back, and do a few other... - Source: Reddit / about 2 months ago
Using Teensyduino (the Teensy flavor of the nominal Arduino IDE) is fine for small projects, but I highly recommend considering a switch to the PlatformIO + VSCode environment. Much more productive! - Source: Reddit / about 2 months ago
So I'm guessing you're using the PlatformIO IDE? And you installed the new version of python specifically using the process provided by this IDE? - Source: Reddit / 2 months ago
Use Platformio with a Weact STMF401 MCU. You can either go bare metal or Arduino framework. \ Https://platformio.org. - Source: Reddit / 3 months ago
The easiest way to get started with ESP32/Arduino is using Visual Studio Code with PlatformIO. Inkplate has some documentation on their official website and their Github repositories how to get started. - Source: Reddit / 4 months ago
To develop on the Arduino, I use PlatformIO. - Source: dev.to / 4 months ago
Probably not, unless you're willing to stretch the definition of 'real time' or 'image'. The classic Arduino Uno processor aka the ATMega328 does about 1 million 8-bit instructions per second per MHz of clock[0]; the Uno iirc has a 8mhz crystal. Even for the contrived example of a 1MP webcam that outputs uint8 grayscale values, you'd only be able to read it at about 8 frames per second, max, much less do anything... - Source: Hacker News / 4 months ago
If you want a more out of the box experience writing modern embedded, I would suggest to try https://platformio.org as package manager and build platform. It supports tons of boards, libraries and frameworks. \ 2 days ago, I had an art installation borked at the other side of the country. It was literally the following to get going: - hook up laptop with SSH and micro-USB connector to the NodeMCU. - Install... - Source: Reddit / 4 months ago
How are you compiling? You may want to try to use https://platformio.org/ to compile in the CLI. I find I get a bit more of a verbose output than using the Teensyduino editor. - Source: Reddit / 5 months ago
[PlatformIO](https://platformio.org) has taken care of that so thoroughly for them, maybe they only think their IDE is worthwhile for people who don't want to use VS Code? - Source: Hacker News / 6 months ago
The next option would be to use an IDE that can compile and load your program without the Arduino IDE. This is a lot of work to setup, but luckily people have taken care of this work for you. Head over to platformio.org and dive in. - Source: Reddit / 6 months ago
Checkout vscode and platform io. It replaces the annoying Arduino IDE. I'm using this with c++ and intellicense plugin and works great. https://platformio.org/. - Source: Reddit / 7 months ago
If you use C++ you might prefer PlatformIO to the Arduino IDE. You can use it from the command line, and there are integrations for many IDEs like VSCode. It has better library management and is generally just less clunky than the Arduino IDE. - Source: Reddit / 7 months ago
I use https://platformio.org/ which has an add-on for vscode so that might help. - Source: Reddit / 7 months ago
I have tried the most popular VS Code extensions, but here are my gripes with them: * Platform IO: It tries to control too many things. I want a simpler system where I'm in charge of creating files and managing configuration. * Microsoft's VS Code extension: It seems a little buggy and work-in-progress. Getting it to work with the CLI is fairly hacky and C++ Intellisense seems to keep hanging up. TBF to the team,... - Source: Reddit / 7 months ago
I highly recommend trying out PlatformIO. I do a lot of compiling, too. I use the command line tools along with my favorite editor. Some people use it with VSCode. My experience with it is that it's fast and way less clunky that the Arduino IDE. Much better library management, too. - Source: Reddit / 7 months ago
Platform IO is a platform for embedded development, and works with Vs code. - Source: Reddit / 8 months ago
Do you know an article comparing PlatformIO to other products?
Suggest a link to a post with product alternatives.