Add thank you section to front page. Also tweak some wording.
This commit is contained in:
parent
594e9e5578
commit
dcd8c54f9b
1 changed files with 23 additions and 11 deletions
34
index.html
34
index.html
|
|
@ -13,7 +13,7 @@ layout: home
|
|||
<h1>The easiest way to program microcontrollers</h1>
|
||||
<p>
|
||||
CircuitPython is a programming language designed to simplify experimenting
|
||||
and learning to program on low-cost microcontroller boards. It makes getting
|
||||
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.
|
||||
|
|
@ -26,21 +26,21 @@ layout: home
|
|||
srcset="{{ "/assets/images/python.png" | relative_url }} 1x,
|
||||
{{ "/assets/images/python@2x.png" | relative_url }} 2x,
|
||||
{{ "/assets/images/python@3x.png" | relative_url }} 3x" alt="Python Logo">
|
||||
<h1>CircuitPython is based on Python</h1>
|
||||
<h1>Learn Python with CircuitPython</h1>
|
||||
<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
|
||||
<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, Python is Open Source Software
|
||||
which means it's free for anyone to use, modify or improve upon.
|
||||
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 all of these amazing features. If you
|
||||
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!
|
||||
get started! Learning CircuitPython is learning Python.
|
||||
</p>
|
||||
<hr />
|
||||
<img src="{{ "/assets/images/microcontrollers.png" | relative_url }}"
|
||||
|
|
@ -50,7 +50,7 @@ layout: home
|
|||
<h1>Supported by your favorite microcontroller</h1>
|
||||
<p>
|
||||
CircuitPython is designed to run on microcontroller boards. A
|
||||
microcontroller board is a board with a microcontroller chip that's
|
||||
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.
|
||||
|
|
@ -72,7 +72,7 @@ layout: home
|
|||
<h3>Beginner Friendly</h3>
|
||||
<p>
|
||||
CircuitPython is designed with education in mind. It's easy to start
|
||||
learning how to program and you get immediate feedback from the board.
|
||||
learning how to code and you get immediate feedback from the board.
|
||||
</p>
|
||||
</div>
|
||||
<div class="item">
|
||||
|
|
@ -114,5 +114,17 @@ layout: home
|
|||
<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-focussed 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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue