-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathArduBlockly.html
66 lines (55 loc) · 3.84 KB
/
ArduBlockly.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- <link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Atmel University France</title>
</head>
<body>
<header>
<div class="inner clearfix">
<img src="images/Univ_Prog_Microsite_landing_734x175_041414.jpg" />
<a href="https://github.com/AtmelUniversityFrance" class="button"><small>Follow me on</small> GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
<!-- Ardublockly -->
<h1><a id="ardublockly" class="anchor" href="#ardublockly" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Ardublockly - Arduino programming using functional blocks</h1>
<p>
<a href="http://ardublockly.embeddedlog.com/">Ardublockly</a> is a visual programming editor for Arduino. It is based on Google's <a href="https://developers.google.com/blockly/">Blockly</a>,
which has been forked to generate <a href="http://www.arduino.cc">Arduino</a> code.<br/>
The ArdublocklyServer Python package initialises a local server to be able to compile and load the Arduino code using the <a href="http://www.arduino.cc/en/main/software/">Arduino IDE</a>.<br/>
This is all packaged in a self contained executable desktop application for Windows, Mac OS X, and Linux.
</p>
<img src="https://camo.githubusercontent.com/ac2ae3998fc8c77e55effe4c9cbd84031c473fbe/687474703a2f2f6361726c6f737065726174652e6769746875622e696f2f61726475626c6f636b6c792f696d616765732f73637265656e73686f745f6465736b746f705f312e706e67" alt="ArduBlockly" />
<p>
We contribute to this project from time to time, mainly for workshops planned for kids during Community events. Our repository can be found <a href="https://github.com/AtmelUniversityFrance/ardublockly">here</a>.
</p>
<h2>ArduBlockly installation</h2>
<p>
At first, you need to install Python 2.x from <a href="https://www.python.org/downloads/">Official Python web page</a> and <a href="http://www.arduino.cc/en/main/software/">Arduino IDE</a>.<br/>
Then download the <a href="https://github.com/AtmelUniversityFrance/ardublockly/archive/mchp_atmel.zip">Atmel by Microchip ArduBlockly zip archive</a> and extract it on your computer.<br/>
</p>
<h2>ArduBlockly usage</h2>
<p>
Open a command line (shell) in the folder where you extracted or cloned our repository content and then run 'python start.py'. Your default web browser should open on the <a href="http://localhost:8000/ardublockly/">local web page</a> provided by ArduBlockly Python server.<br/>
Before beginning using ArduBlockly, you have to configure the Arduino IDE path and the board you intend to use in the settings (click on top-left icon, at the left of Microchip logo, and settings).
<br/><br/>
Complementary and very useful information is available at <a href="http://ardublockly.embeddedlog.com/">Ardublockly</a> web page and its according <a href="https://github.com/carlosperate/ardublockly/wiki">wiki</a>.
</p>
<br/><br/>
</section>
</div>
</div>
</body>
</html>