“U8glib库”的版本间的差异
(以“ [http://www.json.org/json-zh.html JSON 介绍] json library from [https://github.com/bblanchon/ArduinoJson github arduino Json] [https://github.com/bblanchon/...”为内容创建页面) |
|||
第1行: | 第1行: | ||
− | [ | + | U8glib github: [https://github.com/olikraus/u8glib github U8glib] |
+ | U8glib github: [https://code.google.com/archive/p/u8glib google U8glib] | ||
+ | [https://github.com/bblanchon/ArduinoJson/wiki Github U8glib wiki] | [[论坛简介贴地址]] | ||
− | + | [https://github.com/olikraus/U8glib_Arduino/releases/tag/1.19.1 download U8glib_Arduino] | |
− | + | ||
− | + | ||
− | + | ||
− | download | + | |
{| border="0" cellpadding="10" width="100%" | {| border="0" cellpadding="10" width="100%" | ||
|- | |- | ||
|width="60%" valign="top" align="left"| | |width="60%" valign="top" align="left"| | ||
− | + | A graphics library with support for many different monochrome displays. | |
− | + | 译:一个支持许多不同单色显示屏的图形库。 | |
+ | <br> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
<font color="orange" size="+2">'''Examples'''</font><br> | <font color="orange" size="+2">'''Examples'''</font><br> |
2016年8月26日 (五) 09:25的版本
U8glib github: github U8glib
U8glib github: google U8glib
A graphics library with support for many different monochrome displays. 译:一个支持许多不同单色显示屏的图形库。
Extra Examples
|
- StaticJsonBuffer<200> jsonBuffer; 为JSON对象树创建内存池(在栈上分配内存) 参数
- DynamicJsonBuffer jsonBuffer; 为JSON对象树创建内存池(在堆上分配内存)- 简单但效率低
创建对象树的根 - root["sensor"] = "gps"; 在对象中添加值 参数
- JsonArray& data = root.createNestedArray("data"); 在对象中添加一个嵌套的数组 参数
- data.add(double_with_n_digits(48.756080, 6)); 给data数组添加值 参数
- root.printTo(Serial); 打印输出 参数
例:{"sensor":"gps","time":1351824120,"data":[48.756080,2.302038]}
打印输出(格式)
解析json数据 - sensor = root["sensor"] 取值 - latitude = root["data"][0]; "data":[48.756080,2.302038] 取值
|
更多建议和问题欢迎反馈至 YFRobot论坛