forked from adafruit/circuitpython-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (126 loc) · 5.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
layout: home
---
<div id="home-page" class="common-layout">
<div class="content">
<img class="responsive" src="{{ "/assets/images/blinka-computer.png" | relative_url }}" srcset="{{ "/assets/images/blinka-computer.png" | relative_url }} 1x,
{{ "/assets/images/[email protected]" | relative_url }} 2x,
{{ "/assets/images/[email protected]" | relative_url }} 3x" alt="Blinka at a computer">
<h1>The easiest way to program microcontrollers</h1>
<p>
CircuitPython is a programming language designed to simplify experimenting
and learning to code on low-cost microcontroller boards. It makes getting
started easier than ever with no upfront desktop downloads needed. Once you
get your board set up, open any text editor, and get started editing code.
It's that simple.
</p>
<p>
<a href="https://learn.adafruit.com/welcome-to-circuitpython">Get started with CircuitPython ></a>
</p>
<hr />
<img class="responsive" src="{{ "/assets/images/python.png" | relative_url }}"
srcset="{{ "/assets/images/python.png" | relative_url }} 1x,
{{ "/assets/images/[email protected]" | relative_url }} 2x,
{{ "/assets/images/[email protected]" | relative_url }} 3x" alt="Python Logo">
<h1>Learn Python with CircuitPython</h1>
<p>
<a href="https://www.python.org/">Python</a> is the fastest growing programming language.
It's taught in schools and universities. It's a high-level programming language which
means it's designed to be easier to read, write and maintain. It supports modules and
packages which means it's easy to reuse your code for other projects. It has
a built in interpreter which means there are no extra steps, like compiling,
to get your code to work. And of course, <a href="https://www.python.org/">Python</a>
is Open Source Software which means it's free for anyone to use, modify or improve upon.
</p>
<p>
CircuitPython adds hardware support to the core Python language. If you
already have Python knowledge, you can easily apply that to using
CircuitPython. If you have no previous experience, it's really simple to
get started! Learning CircuitPython is learning Python.
</p>
<hr />
<img class="responsive" src="{{ "/assets/images/microcontrollers.png" | relative_url }}"
srcset="{{ "/assets/images/microcontrollers.png" | relative_url }} 1x,
{{ "/assets/images/[email protected]" | relative_url }} 2x,
{{ "/assets/images/[email protected]" | relative_url }} 3x" alt="Image of various microcontrollers">
<h1>Supported by your favorite microcontroller</h1>
<p>
CircuitPython is designed to run on microcontroller boards. A
microcontroller board is a circuit board with a microcontroller chip that's
essentially an itty-bitty all-in-one computer. CircuitPython is easy to
use because all you need is that little board, a USB cable, and a computer
with a USB connection.
</p>
<p>
<a href="/downloads">Search for a compatible board</a>
</p>
<hr />
<h1>More reasons to use CircuitPython</h1>
<div class="home-table">
<div class="item">
<h3>Quick and Easy</h3>
<p>
Create a file, edit your code, save the file, and it runs immediately.
There is no compiling, no downloading and no uploading needed.
</p>
</div>
<div class="item">
<h3>Beginner Friendly</h3>
<p>
CircuitPython is designed with education in mind. It's easy to start
learning how to code and you get immediate feedback from the board.
</p>
</div>
<div class="item">
<h3>Easy Code Updates</h3>
<p>
Since your code lives on the disk drive, you can edit it whenever you
like, you can also keep multiple files around for easy experimentation.
</p>
</div>
<div class="item">
<h3>Serial Console + REPL</h3>
<p>
These allow for live feedback from your code and interactive programming.
</p>
</div>
<div class="item">
<h3>File Storage</h3>
<p>
The internal storage for CircuitPython makes it great for data-logging,
playing audio clips, and otherwise interacting with files.
</p>
</div>
<div class="item">
<h3>Strong Hardware Support</h3>
<p>
There are many libraries and drivers for sensors, breakout boards
and other external components.
</p>
</div>
</div>
<hr />
<h1>Just the beginning...</h1>
<p>
CircuitPython continues to evolve, and is constantly being updated. We
welcome and encourage feedback from the community, and we incorporate this
into how we are developing CircuitPython. That's the core of the open source
concept. This makes CircuitPython better for you and everyone who uses it!
</p>
<p>
<a href="https://learn.adafruit.com/welcome-to-circuitpython">Get started with CircuitPython ></a>
</p>
<hr />
<h1>Thanks</h1>
<p>
CircuitPython wouldn't exist without the awesome work of the <a href="https://micropython.org">Damien George and the MicroPython community</a>. They did the hard work to reimplement Python on microcontrollers and continue to push the boundaries of what is possible.
</p>
<p>
Thank you to <a href="https://adafruit.com">Adafruit</a> for continuing to support
CircuitPython's beginner-focused development.
</p>
<p>
Lastly, thank you to the CircuitPython community members who have spent time testing, triaging, fixing and enhancing CircuitPython, it's libraries and it's documentation. Together we're all making something incredible.
</p>
</div>
</div>