@frogandtoad I did, and I installed both. The PRO icon is Black round. The 2.0 RC5 is square green. I am pretty sure I already showed you both on screen at the same time before attached is a screen shot with all 3 IDE's open at the same time and the names circled in Red, 1.0 1.8.19, 2.0.0-rc5 and Pro IDE - Alpha 0.1.4.
No, there are only 2 Arduino IDE's that I am aware of... I believe you're looking at an old link of the alpha version, but that git site is no longer valid. I do recall seeing a note that there was now a new git site for the downloads, which is now at rc5 - The alpha is no longer... just look at the last updated timestamps.
Better to just get the latest from here (nightly builds), and you can also check up on the latest bugs via the issue tracker link on the same page:
@frogandtoad I did notice and commented about it being archived and read-only but didn't know for sure if that meant it was a dead product or what. It is VERY different from IDE 2.0-rc5. More like PlatformIO/VisualStudio and perhaps when Msft made VS free they decided to not bother with another IDE.
Arduino says and I agree, in general, the const keyword is preferred for defining constants and should be used instead of #define
"Never wrestle with a pig....the pig loves it and you end up covered in mud..." anon
My experience hours are >75,000 and I stopped counting in 2004.
Major Languages - 360 Macro Assembler, Intel Assembler, PLI/1, Pascal, C plus numerous job control and scripting
@frogandtoad I did notice and commented about it being archived and read-only but didn't know for sure if that meant it was a dead product or what. It is VERY different from IDE 2.0-rc5. More like PlatformIO/VisualStudio and perhaps when Msft made VS free they decided to not bother with another IDE.
It's not dead... it's the same project, just moved to a new site long ago, and since advanced to the beta rc5 version. Just go by the nightly downloads and issue tracker to keep up to date with it's evolution.
@frogandtoad I did notice and commented about it being archived and read-only but didn't know for sure if that meant it was a dead product or what. It is VERY different from IDE 2.0-rc5. More like PlatformIO/VisualStudio and perhaps when Msft made VS free they decided to not bother with another IDE.
It's not dead... it's the same project, just moved to a new site long ago, and since advanced to the beta rc5 version. Just go by the nightly downloads and issue tracker to keep up to date with it's evolution.
For anyone interested in testing out the latest Arduino Pro IDE, candidate "rc6" has been released.
@frogandtoad My most profound apologies. You are correct that the new IDE 2.0 is the PRO version. The interface is different, but the functionality of 2.0 is very close to the Alpha version I was looking at.
I just downloaded the IDE2 RC6 and made a couple of discoveries. The first is that the new IDE has fairly comprehensive debug tools, I totally missed seeing that the first time I looked at it and was the main reason for me thinking there was another more 'pro' version. The second discovery is its ability to work with the cloud based sketches.
I think it compiles faster too, but loads slower.
Arduino says and I agree, in general, the const keyword is preferred for defining constants and should be used instead of #define
"Never wrestle with a pig....the pig loves it and you end up covered in mud..." anon
My experience hours are >75,000 and I stopped counting in 2004.
Major Languages - 360 Macro Assembler, Intel Assembler, PLI/1, Pascal, C plus numerous job control and scripting
Or perhaps you have another "Python-related" idea that I haven't thought of?
Never had much use for Python or microPython until one day I acquired an RPi Pico (already had an Arduino). Out of the box, the RPi Pico just looked at me dangling at the end of a USB cable doing nothing. Thonny wasn't of much use to me either; nor was "Blinky." I have not done "Blinky" but I did think about some material I saw on the dronebotworkshop about building a drone. RPi Pico (or other microController) and a homeBuilt drone using microPython made sense. For a beginner there would be something tangible and useful. For the intermediate the programming of GPIO pins and Hats would be a worthy challenge. For the drone flyer, it would be the project extraordinary.
It would be a worthy opportunity to learn something useful about microProcessors and realTime applications. Integrating programming knowledge and skills at the bareMetal level (almost) with realWorld application (homeBuilt Drone) in a project that is much more than "Blinky!" Integrating a motorized situation (four spinning propellers at synchronized speed and variable-speed by-motor), connecting a GPS head to the homeBuilt UAV will provide considerable insight to UART and GPIO usage. For the expert, debugging skills would be the challenge.
So now I have a use for Python ('c' and java, and assembler for backup if Python is a little to slow for some programming parts) should there be a videoSeries created for microPython on a microController!
Any chance you can clarify/know if you can make multiple I2C buses on a Pico in CP to deal with using two I2C devices with the same address, or if there's another way to do it without a multiplexer?
Any chance you can clarify/know if you can make multiple I2C buses on a Pico in CP to deal with using two I2C devices with the same address, or if there's another way to do it without a multiplexer?
I don't know of any way without a multiplexer.
Arduino says and I agree, in general, the const keyword is preferred for defining constants and should be used instead of #define
"Never wrestle with a pig....the pig loves it and you end up covered in mud..." anon
My experience hours are >75,000 and I stopped counting in 2004.
Major Languages - 360 Macro Assembler, Intel Assembler, PLI/1, Pascal, C plus numerous job control and scripting
@jasline123 Let me waffle a bit on that. Since there are 2 controllers, it might be possible using some lower level code to disable first one controller then the other and deal with the 2 devices on one address. You will need to dig into detailed specs and the pico_sdk to see if it is possible. I have a copy and just took a quick look but I don't see anything I can read to tell me one way or the other. You might get a better/quicker answer on the raspberry pi site.
EDIT I just found some info and it looks doable at first glance
Arduino says and I agree, in general, the const keyword is preferred for defining constants and should be used instead of #define
"Never wrestle with a pig....the pig loves it and you end up covered in mud..." anon
My experience hours are >75,000 and I stopped counting in 2004.
Major Languages - 360 Macro Assembler, Intel Assembler, PLI/1, Pascal, C plus numerous job control and scripting
@jasline123 I am looking at the rp2040 i2c.h file and see a reference to i2c0 and i2c1, see pic. Now I am more sure it's doable but you will have to put on your best sleuthing hat. I did a little more digging and am now very sure it can be done (disable and enable each of the two I2C busses separately). There are numerous references to I2C0 and I2C1 in the second and third
pic.
Arduino says and I agree, in general, the const keyword is preferred for defining constants and should be used instead of #define
"Never wrestle with a pig....the pig loves it and you end up covered in mud..." anon
My experience hours are >75,000 and I stopped counting in 2004.
Major Languages - 360 Macro Assembler, Intel Assembler, PLI/1, Pascal, C plus numerous job control and scripting
@jasline123 Conceptually it looks like it may be possible to disable and enable the 2 I2C busses independently but you will have to figure out how to do that. It probably means using the pico sdk and C or C++ code. I can't tell you how difficult it will be to find and implement that code, but I was able to quickly find some clues just from a file find of i2c.h at the arduino library level and a google search of 'raspberry pi pico i2c' that led to that github find I told you about and of course the pico datasheet which led to the rp2040 datasheet. I don't see anything usefull in the 2040 datasheet. It is of course assembler and very close to the metal. I am not 2040 trained but have other low level training and can recognize general concepts so I am reasonably sure you do not need that level of code. Good luck.
Arduino says and I agree, in general, the const keyword is preferred for defining constants and should be used instead of #define
"Never wrestle with a pig....the pig loves it and you end up covered in mud..." anon
My experience hours are >75,000 and I stopped counting in 2004.
Major Languages - 360 Macro Assembler, Intel Assembler, PLI/1, Pascal, C plus numerous job control and scripting
We use cookies on the DroneBot Workshop Forums to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.