Hello, I am using MacOS 10.14 and the available Arduino IDE to download is minimum 10.15 - is there an older version to download? Thank you for your help!
Hi @indridcoldwave. Support for macOS Mojave was dropped starting from the Arduino IDE 2.3.0 release.
Although the best solution will be to update your macOS version to Catalina or newer, I understand that this might not be possible if you have an older Mac computer. In this case, the alternative is to use Arduino IDE, 2.2.1 (the newest Mojave-compatible version).
I'll provide instructions you can follow to install and configure Arduino IDE 2.2.1:
- Click the following link to open the page for the 2.2.1 release in the Arduino IDE GitHub repository:
Release 2.2.1 · arduino/arduino-ide · GitHub - From the list of download links under the "Assets" section of the page, click the link with the name "arduino-ide_2.2.1_macOS_64bit.dmg".
- Wait for the download to finish.
- Install Arduino IDE from the downloaded file as you would normally do.
Disabling IDE Update Notifications
You will now find that Arduino IDE periodically shows an "Update Available" dialog to offer you an update to the newer version of Arduino IDE. You must not accept these updates since the newer versions are not compatible with your vintage version of macOS.
There are two methods for dealing with these update offers. I'll provide instructions for both of them. You can pick whichever one of the two is most convenient for you.
"SKIP VERSION"
The "Update Available" dialog contains a "SKIP VERSION" button. If you click that button, Arduino IDE will no longer show the dialog for the specific newer version being offered at the time you click the button.
The dialog will appear once again each time Arduino releases a new version of Arduino IDE, so you will need to click the button again after each release. That is slightly inconvenient, but the release cycle is fairly long so I don't think it will be very burdensome.
Disable All Update Offers
It is possible to completely disable the offers of updates in the Arduino IDE advanced settings. The downside is this setting also disables offers of updates for your installed boards platforms and libraries.
- Press the Ctrl+Shift+P keyboard shortcut (Command+Shift+P for macOS users) to open the "Command Palette".
A menu will appear on the editor toolbar:
- Select the "Preferences: Open Settings (UI)" command from the menu.
ⓘ You can scroll down through the list of commands to find it or type the name in the field.
A "Preferences" tab will open in the Arduino IDE main panel. - Type
arduino.checkForUpdates
in the "Search Settings" field of the "Preferences" tab. - Uncheck the box under the "Arduino: Check For Updates" setting.
- Close the Preferences tab by clicking its X icon.
Keeping Your Arduino Dependencies Updated
If you chose this "Disable All Update Offers" method, make sure to periodically check to see if newer versions of your installed boards platforms and libraries are available. You can do this by opening Boards Manager and then setting the "Type" menu to "Updatable", then repeating the process with Library Manager.
Considerations when updating Libraries
There is no possibility of a problem using newer versions of libraries on a computer with an older version of macOS, so don't worry about a macOS incompatibility when updating your libraries.
Considerations when updating Boards Platforms
Since boards platforms depend on executing tools to compile and upload sketches, it is possible that some future version of a boards platform could have a minimum macOS version requirement. If you do find that a boards platform stops working after an update, you can always easily downgrade the platform back to the last working version via the Arduino IDE Boards Manager.
Thank you, P.-
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.