Skip to content

Commit 612b41b

Browse files
Merge pull request #1 from VarshiniShreeV/VarshiniShreeV-patch-1
README update: Include Arduino IDE 2 information.
2 parents 89539b1 + 43cbb47 commit 612b41b

File tree

1 file changed

+26
-64
lines changed

1 file changed

+26
-64
lines changed

README.md

+26-64
Original file line numberDiff line numberDiff line change
@@ -1,97 +1,59 @@
11
<p align="center">
2-
<img src="http://content.arduino.cc/brand/arduino-color.svg" width="50%" />
2+
<img src="http://content.arduino.cc/brand/arduino-color.svg" width="50%" />
33
</p>
44

5-
Arduino is an open-source physical computing platform based on a simple I/O
6-
board and a development environment that implements the Processing/Wiring
7-
language. Arduino can be used to develop stand-alone interactive objects or
8-
can be connected to software on your computer (e.g. Flash, Processing and MaxMSP).
9-
The boards can be assembled by hand or purchased preassembled; the open-source
10-
IDE can be downloaded for free at [https://arduino.cc](https://www.arduino.cc/en/Main/Software)
5+
**Important Notice**: This repository contains the legacy Arduino IDE, which is no longer in active development. For the latest features and updates, please visit the [Arduino IDE 2](https://github.com/arduino/arduino-ide) repository. If you encounter issues related to the newer IDE, please report them there.
6+
7+
Arduino is an open-source physical computing platform based on a simple I/O board and a development environment that implements the Processing/Wiring language. Arduino can be used to develop stand-alone interactive objects or can be connected to software on your computer (e.g. Flash, Processing and MaxMSP). The boards can be assembled by hand or purchased preassembled; the open-source IDE can be downloaded for free at [https://arduino.cc](https://www.arduino.cc/en/Main/Software).
118

129
![Github](https://img.shields.io/github/v/release/arduino/Arduino)
1310

1411
## More info at
1512

16-
- [Our website](https://www.arduino.cc/)
17-
18-
- [The forums](https://forum.arduino.cc/)
19-
20-
- Follow us on [Twitter](https://twitter.com/arduino)
21-
- And like us at [Facebook](https://www.facebook.com/official.arduino)
13+
- [Our website](https://www.arduino.cc/)
14+
- [The forums](https://forum.arduino.cc/)
15+
- Follow us on [Twitter](https://twitter.com/arduino)
16+
- And like us at [Facebook](https://www.facebook.com/official.arduino)
2217

2318
## Bug reports and technical discussions
2419

25-
- To report a *bug* in the software or to request *a simple enhancement* go to [Github Issues](https://github.com/arduino/Arduino/issues)
26-
27-
- More complex requests and technical discussion should go on the [Arduino Developers
28-
mailing list](https://groups.google.com/a/arduino.cc/forum/#!forum/developers)
29-
30-
- If you're interested in modifying or extending the Arduino software, we strongly
31-
suggest discussing your ideas on the
32-
[Developers mailing list](https://groups.google.com/a/arduino.cc/forum/#!forum/developers)
33-
*before* starting to work on them.
34-
That way you can coordinate with the Arduino Team and others,
35-
giving your work a higher chance of being integrated into the official release
20+
- To report a *bug* in the software or to request *a simple enhancement*, go to [Github Issues](https://github.com/arduino/Arduino/issues).
21+
- More complex requests and technical discussions should go on the [Arduino Developers mailing list](https://groups.google.com/a/arduino.cc/forum/#!forum/developers).
22+
- If you're interested in modifying or extending the Arduino software, we strongly suggest discussing your ideas on the [Developers mailing list](https://groups.google.com/a/arduino.cc/forum/#!forum/developers) *before* starting to work on them. That way you can coordinate with the Arduino Team and others, giving your work a higher chance of being integrated into the official release.
3623

3724
### Security
3825

39-
If you think you found a vulnerability or other security-related bug in this project, please read our
40-
[security policy](https://github.com/arduino/Arduino/security/policy) and report the bug to our Security Team 🛡️
41-
Thank you!
26+
If you think you found a vulnerability or other security-related bug in this project, please read our [security policy](https://github.com/arduino/Arduino/security/policy) and report the bug to our Security Team 🛡️. Thank you!
4227

4328
e-mail contact: [email protected]
4429

4530
## Installation
4631

47-
Detailed instructions for installation in popular operating systems can be found at:
32+
Detailed instructions for installation on popular operating systems can be found at:
4833

49-
- [Linux](https://www.arduino.cc/en/Guide/Linux) (see also the [Arduino playground](https://playground.arduino.cc/Learning/Linux))
50-
- [macOS](https://www.arduino.cc/en/Guide/macOS)
51-
- [Windows](https://www.arduino.cc/en/Guide/Windows)
34+
- [Linux](https://www.arduino.cc/en/Guide/Linux) (see also the [Arduino playground](https://playground.arduino.cc/Learning/Linux))
35+
- [macOS](https://www.arduino.cc/en/Guide/macOS)
36+
- [Windows](https://www.arduino.cc/en/Guide/Windows)
5237

5338
## Contents of this repository
5439

55-
This repository contains just the code for the Arduino IDE itself.
56-
Originally, it also contained the AVR and SAM Arduino core and libraries
57-
(i.e. the code that is compiled as part of a sketch and runs on the
58-
actual Arduino device), but those have been moved into their own
59-
repositories. They are still automatically downloaded as part of the
60-
build process and included in built releases, though.
40+
This repository contains just the code for the Arduino IDE itself. Originally, it also contained the AVR and SAM Arduino core and libraries (i.e. the code that is compiled as part of a sketch and runs on the actual Arduino device), but those have been moved into their own repositories. They are still automatically downloaded as part of the build process and included in built releases, though.
6141

6242
The repositories for these extra parts can be found here:
63-
- Non-core specific Libraries are listed under: <https://github.com/arduino-libraries/>
64-
(and also a few other places, see `build/build.xml`).
65-
66-
- The AVR core can be found at: <https://github.com/arduino/ArduinoCore-avr>
67-
68-
- Other cores are not included by default but installed through the
69-
board manager. Their repositories can also be found under
70-
<https://github.com/arduino/>.
43+
- Non-core specific Libraries are listed under: [Arduino Libraries](https://github.com/arduino-libraries/) (and also a few other places, see `build/build.xml`).
44+
- The AVR core can be found at: [ArduinoCore-avr](https://github.com/arduino/ArduinoCore-avr).
45+
- Other cores are not included by default but can be installed through the board manager. Their repositories can also be found under [Arduino GitHub organization](https://github.com/arduino/).
7146

7247
## Building and testing
7348

74-
Instructions for building the IDE and running unit tests can be found on
75-
the wiki:
76-
- <https://github.com/arduino/Arduino/wiki/Building-Arduino>
77-
- <https://github.com/arduino/Arduino/wiki/Testing-Arduino>
49+
Instructions for building the IDE and running unit tests can be found on the wiki:
50+
- [Building Arduino](https://github.com/arduino/Arduino/wiki/Building-Arduino)
51+
- [Testing Arduino](https://github.com/arduino/Arduino/wiki/Testing-Arduino)
7852

7953
## Credits
8054

81-
Arduino is an open source project, supported by many.
82-
83-
The Arduino team is composed of Massimo Banzi, David Cuartielles, Tom Igoe
84-
and David A. Mellis.
85-
86-
Arduino uses
87-
[GNU avr-gcc toolchain](https://gcc.gnu.org/wiki/avr-gcc),
88-
[GCC ARM Embedded toolchain](https://launchpad.net/gcc-arm-embedded),
89-
[avr-libc](https://www.nongnu.org/avr-libc/),
90-
[avrdude](https://www.nongnu.org/avrdude/),
91-
[bossac](http://www.shumatech.com/web/products/bossa),
92-
[openOCD](http://openocd.org/)
93-
and code from [Processing](https://www.processing.org)
94-
and [Wiring](http://wiring.org.co).
55+
Arduino is an open-source project, supported by many. The Arduino team is composed of Massimo Banzi, David Cuartielles, Tom Igoe, and David A. Mellis.
9556

96-
Icon and about image designed by [ToDo](https://www.todo.to.it/)
57+
Arduino uses [GNU avr-gcc toolchain](https://gcc.gnu.org/wiki/avr-gcc), [GCC ARM Embedded toolchain](https://launchpad.net/gcc-arm-embedded), [avr-libc](https://www.nongnu.org/avr-libc/), [avrdude](https://www.nongnu.org/avrdude/), [bossac](http://www.shumatech.com/web/products/bossa), [openOCD](http://openocd.org/), and code from [Processing](https://www.processing.org) and [Wiring](http://wiring.org.co).
9758

59+
Icon and about image designed by [ToDo](https://www.todo.to.it/).

0 commit comments

Comments
 (0)