“Rtc.getDate()”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
 
第10行: 第10行:
 
**tDay    日
 
**tDay    日
 
<p style="color: #E87E05;font-size:135%">'''示例'''</p>
 
<p style="color: #E87E05;font-size:135%">'''示例'''</p>
<br>
+
**在setup()函数中初始化RTC模块
**在setup()函数中初始化RTC模块。
 
 
<source lang="cpp">
 
<source lang="cpp">
 
   rtc.getDate(&tYear, &tMonth, &tWeekday, &tDay);
 
   rtc.getDate(&tYear, &tMonth, &tWeekday, &tDay);

2018年5月16日 (三) 09:26的最新版本

rtc.getDate(&tYear, &tMonth, &tWeekday, &tDay);


作用

    • 获取时间信息,存储在单独变量中(无需DataTime类数组)

参数

    • 参数为变量的地址
    • tYear 年份
    • tMonth 月份
    • tWeekday 周
    • tDay 日

示例

    • 在setup()函数中初始化RTC模块
  rtc.getDate(&tYear, &tMonth, &tWeekday, &tDay);
  Serial.print(tYear);
  Serial.print("/");
  Serial.print(tMonth);
  Serial.print("/");
  Serial.print(tWeekday);
  Serial.print("/");
  Serial.print(tDay);
  Serial.print("     ");


其他


返回RTC模块语法手册