-
Notifications
You must be signed in to change notification settings - Fork 632
/
Copy pathindex.html
178 lines (167 loc) · 6.97 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
---
layout: home
---
<div id="home-page">
<div class="two-column-content">
<div class="text">
<h1>The easiest way to program microcontrollers</h1>
<div class="tagline">
<p>
CircuitPython is a programming language designed to simplify
experimenting and learning to code on low-cost microcontroller
boards.
</p>
</div>
<div class="get-started">
<a href="https://learn.adafruit.com/welcome-to-circuitpython">Get Started</a>
</div>
</div>
{% assign learn_block_index = 0 %}
{% include index/learn_block.html index=learn_block_index %}
</div>
<div class="one-column-content">
<section>
<div>
<h2>When we say easy, we mean it.</h2>
<p>
With CircuitPython, no desktop downloads are required. Just set up your board and start coding via <a href="https://code.circuitpython.org">code.circuitpython.org</a> over USB, WiFi, or Bluetooth.
</p>
<p>
Create a file, edit your code, save the file, and it runs immediately. There is no compiling needed.
</p>
</div>
<div class="icon-block">
<div>
<img alt="Brain Circuit Icon"
src="{{ "assets/images/icons/brain-circuit.svg" |
relative_url }}"
loading="lazy" />
<div>
<h3>Beginner Friendly</h3>
<p>
CircuitPython is designed with education in mind. It's an easy way to start learning how to code and you get immediate feedback from the board.
</p>
</div>
</div>
<div>
<img alt="Microchip Icon"
src="{{ "assets/images/icons/microchip.svg" |
relative_url }}"
loading="lazy" />
<div>
<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>
<div>
<img alt="Files Icon"
src="{{ "assets/images/icons/files.svg" |
relative_url }}"
loading="lazy" />
<div>
<h3>Easy Code Updates</h3>
<p>
Since your code lives on the disk drive, you can edit it whenever you
like. You can even keep multiple files around for easy experimentation.
</p>
</div>
</div>
<div>
<img alt="Terminal Icon"
src="{{ "assets/images/icons/terminal.svg" |
relative_url }}"
loading="lazy" />
<div>
<h3>Serial Console + REPL</h3>
<p>
These features allow for live feedback from your code and interactive programming.
</p>
</div>
</div>
</div>
</section>
</div>
<div class="two-column-content">
{% assign learn_block_index = learn_block_index | plus: 1 %}
{% include index/learn_block.html index=learn_block_index %}
<div class="text">
<h2>Easily manage and use over 500+ Python libraries.</h2>
<div class="tagline">
<p>
Python 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, Python is Open Source Software which means it's free for anyone to use, modify or improve upon.
</p>
<p class="hidden-tablet">
CircuitPython adds hardware support to all of these amazing features. 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!
</p>
</div>
</div>
</div>
<div class="two-column-content">
<div class="text">
<h2>Supported by all of the best microcontrollers</h2>
<div class="tagline">
<p>
CircuitPython is now supported by over 600 microcontroller boards. With so many to choose from, there is sure to be a perfect board for your next project.
</p>
</div>
<div class="get-started">
<a href="{{ "downloads" | relative_url }}">See them all</a>
</div>
</div>
{% assign learn_block_index = learn_block_index | plus: 1 %}
{% include index/learn_block.html index=learn_block_index %}
</div>
<div class="two-column-content">
{% assign learn_block_index = learn_block_index | plus: 1 %}
{% include index/learn_block.html index=learn_block_index %}
<div class="text">
<h2>CircuitPython libraries on single board computers</h2>
<div class="tagline">
<p>
Most CircuitPython libraries also work on single board computers (SBCs), such as the Raspberry Pi. Linux runs "desktop" Python (commonly known as CPython) instead of CircuitPython. Our CPython Blinka library provides CircuitPython's low-level hardware APIs, such as `digitalio`.
</p>
<p>
Blinka and CircuitPython libraries are just a `pip install` away.
</p>
</div>
<div class="get-started">
<a href="{{ "blinka" | relative_url }}">Learn More</a>
</div>
</div>
</div>
<div class="one-column-content">
<h2>Just the beginning...</h2>
<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>
<div class="get-started">
<a href="https://learn.adafruit.com/welcome-to-circuitpython">Get Started</a>
</div>
</div>
<div class="one-column-content">
<h2>Thanks</h2>
<p>
CircuitPython wouldn't exist without the awesome work of
<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://www.adafruit.com">Adafruit</a> for
continuing to support CircuitPython's beginner-focused development.
Adafruit supports MicroPython with code contributions and financially
via <a href="https://github.com/sponsors/micropython">GitHub sponsorship</a>
AND directly to MicroPython.
</p>
<p>
Lastly, thank you to the CircuitPython community members who have spent
time testing, triaging, fixing and enhancing CircuitPython, its libraries
and its documentation. Together we're all making something incredible.
</p>
</div>
</div>