#Firmata
[](https://gitter.im/firmata/arduino?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Firmata is a protocol for communicating with microcontrollers from software on a host computer. The [protocol](https://github.com/firmata/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. If you would like to contribute to Firmata, please see the [Contributing](#contributing) section below.
##Usage
There 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.
The 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.
##Firmata Client Libraries
Most 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:
* procesing
* [https://github.com/firmata/processing]
* [http://funnel.cc]
* python
* [https://github.com/firmata/pyduino]
* [https://github.com/lupeke/python-firmata]
* [https://github.com/tino/pyFirmata]
* [https://github.com/MrYsLab/PyMata]
* perl
* [https://github.com/ntruchsess/perl-firmata]
* [https://github.com/rcaputo/rx-firmata]
* ruby
* [https://github.com/hardbap/firmata]
* [https://github.com/PlasticLizard/rufinol]
* [http://funnel.cc]
* clojure
* [https://github.com/nakkaya/clodiuno]
* [https://github.com/peterschwarz/clj-firmata]
* javascript
* [https://github.com/jgautier/firmata]
* [http://breakoutjs.com]
* [https://github.com/rwldrn/johnny-five]
* java
* [https://github.com/4ntoine/Firmata]
* [https://github.com/shigeodayo/Javarduino]
* [https://github.com/kurbatov/firmata4j]
* .NET
* [https://github.com/SolidSoils/Arduino]
* [http://www.imagitronics.org/projects/firmatanet/]
* Flash/AS3
* [http://funnel.cc]
* [http://code.google.com/p/as3glue/]
* PHP
* [https://bitbucket.org/ThomasWeinert/carica-firmata]
* [https://github.com/oasynnoum/phpmake_firmata]
* Haskell
* [http://hackage.haskell.org/package/hArduino]
* iOS
* [https://github.com/jacobrosenthal/iosfirmata]
* Dart
* [https://github.com/nfrancois/firmata]
Note: 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.
##Updating Firmata in the Arduino IDE
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
*Note that Arduino 1.5.0 - 1.5.5 are not supported. Please use Arduino 1.5.6 or higher (or Arduino 1.0.5 or 1.0.6).*
###Mac OSX:
The Firmata library is contained within the Arduino package.
1. Navigate to the Arduino application
2. Right click on the application icon and select `Show Package Contents`
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
for Arduino 1.0.x vs 1.6.x)
4. Restart the Arduino application and the latest version of Firmata will be available.
If you are using the Java 7 version of Arduino 1.5.7 or higher, the file path
will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory).
###Windows:
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
for Arduino 1.0.x vs 1.6.x).
2. Restart the Arduino application and the latest version of Firmata will be available.
*Update the path and arduino version as necessary*
###Linux:
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
for Arduino 1.0.x vs 1.6.x).
2. Restart the Arduino application and the latest version of Firmata will be available.
*Update the path and arduino version as necessary*
###Using the Source code rather than release archive
Clone this repo directly into the core Arduino libraries directory. If you are using
Arduino 1.5.x or 1.6.x, the repo directory structure will not match the Arduino
library format, however it should still compile as long as you are using Arduino 1.5.7
or higher.
You will first need to remove the existing Firmata library, then clone firmata/arduino
into an empty Firmata directory:
```bash
$ rm -r /Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata
$ git clone git@github.com:firmata/arduino.git /Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata
```
*Update paths if you're using Windows or Linux*
To generate properly formatted versions of Firmata (for Arduino 1.0.x and Arduino 1.6.x), run the
`release.sh` script.
<a name="contributing" />
##Contributing
If 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).
To contribute, fork this repository and create a new topic branch for the bug, feature or other existing issue you are addressing. Submit the pull request against the *master* branch.
If 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.
You must thoroughly 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 reviewers.
Use [Artistic Style](http://astyle.sourceforge.net/) (astyle) to format your code. Set the following rules for the astyle formatter:
```
style = ""
indent-spaces = 2
indent-classes = true
indent-switches = true
indent-cases = true
indent-col1-comments = true
pad-oper = true
pad-header = true
keep-one-line-statements = true
```
If you happen to use Sublime Text, [this astyle plugin](https://github.com/timonwong/Subl
没有合适的资源?快使用搜索试试~ 我知道了~
编程软件 mBlock 编程软件 mBlock

共4484个文件
h:882个
html:626个
ino:345个

1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
131 浏览量
2022-06-24
19:11:08
上传
评论
收藏 163.2MB RAR 举报
编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件 mBlock编程软件
资源推荐
资源详情
资源评论















收起资源包目录





































































































共 4484 条
- 1
- 2
- 3
- 4
- 5
- 6
- 45
资源评论

荣华富贵8
- 粉丝: 52
- 资源: 2367

上传资源 快速赚钱
我的内容管理 收起
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助

会员权益专享
最新资源
- 高通2023最新版本驱动程序Qualcomm USB Drivers For Windows1.7
- ESP32连接巴法云上传温湿度,手机APP控制开关灯
- Scratch作品:Alpha Math 3D计算器
- 雷蛇PUBG鼠标宏-雷蛇鼠标驱动
- [6105] 01 流程意识 :如何成为善用流程的高手?.md
- Pytorch 入门到精通全教程:卷积神经网络、循环神经网络、聊天机器人、实战项目.rar
- Scratch模拟游戏作品:世界生成器
- 基于微分方程的求解、稀疏线性方程组的求解、多机系统分析Python仿真(完整源码+说明文档+数据).rar
- 基于插值、拟合、数值积分、线性方程组迭代求解、非线性方程求根、常微分方程数值解的matlab仿真(源码+文档+数据).rar
- 2022年MySQL面试题(含答案)
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
