Arduino Latest Version 🛎
Ever wonder which is the latest version of Arduino IDE currently released?
Now you can know it, programmatically!
Get the latest version number
You can know witch is the latest version of arduino available by hitting this URL:
https://arduino-cli.github.io/arduino-latest/VERSION
Usage
curl
$ curl https://arduino-cli.github.io/arduino-latest/VERSION
node
const request = require('request');
const latest_endpoint = 'https://arduino-cli.github.io/arduino-latest/VERSION';
request(latest_endpoint, function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Shows the version on the console.
}
});
Arduino mirrors
Binaries of the Arduino IDE can be downloaded from the mirrors below:
Arduino download page
The latest version available can be verified here.
Authors
- Simone Primarosa - simonepri
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the https://github.com/arduino-cli/arduino-latest/blob/master/LICENSE file for details.