source: rtos_arduino/trunk/arduino_lib/libraries/Firmata/extras/readme.md@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 4.6 KB
Line 
1#Firmata
2
3Firmata is a protocol for communicating with microcontrollers from software on a host computer. The [protocol](http://firmata.org/wiki/Protocol) can be implemented in firmware on any microcontroller architecture as well as software on any host computer software package. The arduino repository described here is a Firmata library for Arduino and Arduino-compatible devices. See the [firmata wiki](http://firmata.org/wiki/Main_Page) for additional informataion. If you would like to contribute to Firmata, please see the [Contributing](#contributing) section below.
4
5##Usage
6
7There are two main models of usage of Firmata. In one model, the author of the Arduino sketch uses the various methods provided by the Firmata library to selectively send and receive data between the Arduino device and the software running on the host computer. For example, a user can send analog data to the host using ``` Firmata.sendAnalog(analogPin, analogRead(analogPin)) ``` or send data packed in a string using ``` Firmata.sendString(stringToSend) ```. See File -> Examples -> Firmata -> AnalogFirmata & EchoString respectively for examples.
8
9The second and more common model is to load a general purpose sketch called StandardFirmata on the Arduino board and then use the host computer exclusively to interact with the Arduino board. StandardFirmata is located in the Arduino IDE in File -> Examples -> Firmata.
10
11##Firmata Client Libraries
12Most of the time you will be interacting with arduino with a client library on the host computers. Several Firmata client libraries have been implemented in a variety of popular programming languages:
13
14* procesing
15 * [https://github.com/firmata/processing]
16 * [http://funnel.cc]
17* python
18 * [https://github.com/firmata/pyduino]
19 * [https://github.com/lupeke/python-firmata]
20 * [https://github.com/tino/pyFirmata]
21* perl
22 * [https://github.com/ntruchsess/perl-firmata]
23 * [https://github.com/rcaputo/rx-firmata]
24* ruby
25 * [https://github.com/hardbap/firmata]
26 * [https://github.com/PlasticLizard/rufinol]
27 * [http://funnel.cc]
28* clojure
29 * [https://github.com/nakkaya/clodiuno]
30* javascript
31 * [https://github.com/jgautier/firmata]
32 * [http://breakoutjs.com]
33 * [https://github.com/rwldrn/johnny-five]
34* java
35 * [https://github.com/4ntoine/Firmata]
36 * [https://github.com/shigeodayo/Javarduino]
37* .NET
38 * [http://www.imagitronics.org/projects/firmatanet/]
39* Flash/AS3
40 * [http://funnel.cc]
41 * [http://code.google.com/p/as3glue/]
42* PHP
43 * [https://bitbucket.org/ThomasWeinert/carica-firmata]
44
45Note: The above libraries may support various versions of the Firmata protocol and therefore may not support all features of the latest Firmata spec nor all arduino and arduino-compatible boards. Refer to the respective projects for details.
46
47
48<a name="contributing" />
49##Contributing
50
51If you discover a bug or would like to propose a new feature, please open a new [issue](https://github.com/firmata/arduino/issues?sort=created&state=open). Due to the limited memory of standard Arduino boards we cannot add every requested feature to StandardFirmata. Requests to add new features to StandardFirmata will be evaluated by the Firmata developers. However it is still possible to add new features to other Firmata implementations (Firmata is a protocol whereas StandardFirmata is just one of many possible implementations).
52
53To contribute, fork this respository and create a new topic branch for the bug, feature or other existing issue you are addressing. Submit the pull request against the *dev* branch.
54
55If you would like to contribute but don't have a specific bugfix or new feature to contribute, you can take on an existing issue, see issues labeled "pull-request-encouraged". Add a comment to the issue to express your intent to begin work and/or to get any additional information about the issue.
56
57You must thorougly test your contributed code. In your pull request, describe tests performed to ensure that no existing code is broken and that any changes maintain backwards compatibility with the existing api. Test on multiple Arduino board variants if possible. We hope to enable some form of automated (or at least semi-automated) testing in the future, but for now any tests will need to be executed manually by the contributor and reviewsers.
58
59Maintain the existing code style:
60
61- Indentation is 2 spaces
62- Use spaces instead of tabs
63- Use camel case for both private and public properties and methods
64- Document functions (specific doc style is TBD... for now just be sure to document)
65- Insert first block bracket on line following the function definition:
66
67<pre>void someFunction()
68{
69 // do something
70}
71</pre>
Note: See TracBrowser for help on using the repository browser.