查看Noduino PCF8563的源代码
←
Noduino PCF8563
跳转到:
导航
,
搜索
因为以下原因,你没有权限编辑本页:
您刚才请求的操作只有这个用户组中的用户才能使用:
用户
您可以查看并复制此页面的源代码:
== 概述== PCF8563 I2C 口 RTC 芯片,超小封装,超低功耗。。。 <br><br> == 开发环境准备 == 根据您的系统,选择如下快速指南: * [[Getting Started with Noduino SDK on Linux]] * [[Getting Started with Noduino SDK on Mac OS X]] * [[Getting Started with Noduino SDK on Windows]] <br><br> == 硬件准备 == 此传感器为 I2C 接口,Falcon 接线方式如下: * Sensor_SCL --> Noduino_Falcon_D9 * Sensor_SDA --> Noduino_Falcon_D8 * Sensor_3V3 --> Noduino_Falcon_3V3 * Sensor_GND --> Noduino_Falcon_GND NodeC / SmartNode 接线方式如下: * Sensor_SCL --> SmartNode_IO5 * Sensor_SDA --> SmartNode_IO4 * Sensor_3V3 --> SmartNode_3V3 * Sensor_GND --> SmartNode_GND <br><br> == 编译烧写 == 进入你的 pcf8563 目录: <source lang=bash> $ cd /PATH/TO/noduino-sdk/examples/noduino/pcf8563 </source> 编译、上传一步完成: <source lang=bash> $ make flash </source> 不同平台下,你的串口设备号可能不一样,确认一下你的串口设备,Linux 下 Falcon 开发板可能被识别为 /dev/ttyUSB1(dmesg 查看),则: <source lang=bash> $ make flash ESPPORT=/dev/ttyUSB1 </source> Windows 下 Falcon 开发板可能被识别为 COM6(控制面板 --> 设备管理器里查看),则: <source lang=bash> $ make flash ESPPORT=COM6 </source> <br><br> == 查看结果 == 上传完之后,用串口工具,用 115200 的波特率打开串口,即可看到串口在持续输出传感器测得的值: Windows 下可用串口调试助手这类插看 Linux 下推荐使用 picocom: <source lang=bash> $ sudo apt-get install picocom $ picocom -b 115200 /dev/ttyUSB1 picocom v1.7 port is : /dev/ttyUSB2 flowcontrol : none baudrate is : 115200 parity is : none databits are : 8 escape is : C-a local echo is : no noinit is : no noreset is : no nolock is : no send_cmd is : sz -vv receive_cmd is : rz -vv imap is : omap is : emap is : crcrlf,delbs, Terminal ready ...... ...... </source> Ctrl + a q 退出 picocom <br><br> == 代码示例 == <source lang=cpp> #include "noduino.h" #include "pcf8563.h" irom void setup() { serial_begin(115200); pcf8563_init(); pcf8563_set_from_int(2016, 8, 28, 12, 0, 0); serial_printf("PCF8563 RTC Example!\r\n"); } void loop() { pcf8563_now(); pcf8563_print(); delay(2000); } </source> <br><br> == 扩展阅读 == ;;更多问题参考: * [[Noduino]] <br><br> <br><br> <br><br>
返回到
Noduino PCF8563
。
个人工具
登录
名字空间
页面
讨论
变换
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
社区专页
新闻动态
最近更改
随机页面
帮助
工具箱
链入页面
相关更改
特殊页面