-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArduino.mw
36 lines (22 loc) · 1.65 KB
/
Arduino.mw
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
[[Image:ArduinoDuemilanove.jpg]]
=== Description ===
Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments.
Arduino can sense the environment by receiving input from a variety of sensors and can affect its surroundings by controlling lights, motors, and other actuators. The microcontroller on the board is programmed using the Arduino programming language (based on Wiring) and the Arduino development environment (based on Processing). Arduino projects can be stand-alone or they can communicate with software on running on a computer (e.g. Flash, Processing, MaxMSP).
== Connection to Neo via USB ==
To connect Neo to Arduino you need a cable with "usb mini-b" for the Neo and "usb b-type" for the Arduino.
To send voltage to the Arduino and to make Neo host of usb devices:
<pre>
echo "1" > /sys/devices/platform/neo1973-pm-host.0/hostmode
echo "host" > /sys/devices/platform/s3c2410-ohci/usb_mode
</pre>
== Connection to Neo via I2C ==
To connect Neo to Arduino you need to solder the internals pines for I2C.
The library [http://www.mokardu.com MokArdu] already have a class to easy communicate with Arduino through I2C.
== Comunication ==
I have create a new project in http://projects.openmoko.org/projects/mokardu/ for colaborate.
The name is MokArdu ( Moko + Arudino ).
== External Links ==
* [http://arduino.cc/ Official Arduino website ]
* [http://www.youtube.com/watch?v=rOBWSrI14BM Moving a servo with openmoko accelerometers]
* [http://www.mokardu.com MokArdu]
[[Category:Hardware]]