layout | title |
---|---|
arduino-latest |
Arduino Latest Version |
Ever wonder which is the latest version of Arduino IDE currently released?
Now you can know it, programmatically!
You can know witch is the latest version of arduino available by hitting this URL:
https://arduino-cli.github.io/arduino-latest/VERSION
$ curl https://arduino-cli.github.io/arduino-latest/VERSION
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.
}
});
Binaries of the Arduino IDE can be downloaded from the mirrors below:
## Arduino download page The latest version available can be verified [here](https://www.arduino.cc/en/Main/Software).
- Simone Primarosa - simonepri
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the https://github.com/arduino-cli/arduino-latest/blob/master/LICENSE file for details.