Difference between revisions of "MWatch"

From Microduino Wiki
Jump to: navigation, search
(Created page with "{{Language| mWatch }} {| style="width: 800px;" |- | ==Objective== Use mCookie to build a simple watch. 400px|center ==Principle== Acquire time via RTC...")
 
(Hardware Buildup)
Line 63: Line 63:
 
*Setup 1:Connect the activated battery box and BM module.  
 
*Setup 1:Connect the activated battery box and BM module.  
 
[[File:CoreUSB_Ble_steup2.jpg|600px|center]]
 
[[File:CoreUSB_Ble_steup2.jpg|600px|center]]
*Setup 2:Stack all modules together with fixed order and finish part of the circuit buildup.  
+
*Setup 2:Stack all modules together with fixed order and finish circuit buildup.  
 
[[File:mWatch_steup3.jpg|600px|center]]
 
[[File:mWatch_steup3.jpg|600px|center]]
  

Revision as of 06:45, 20 October 2015

Language: English  • 中文

Objective

Use mCookie to build a simple watch.

MWatch-ok.jpg

Principle

Acquire time via RTC module and display time on the OLED screen.

MWatch-sch.jpg

Equipment

Module Number Function
mCookie-CoreUSB 1 Core board
mCookie-RTC 1 Clock module
mCookie-OLED 1 Display screen
Microduino-BM 1 Battery management
MWatch-module.jpg

Preparation

  • Setup 1:Connect CoreUSB with your PC/MAC with a USB cable and open Arduino IDE.
CoreUSB Ble pc.jpg
  • Setup 2:Click file > Examples > mCookie > _202_mWatch and load program.
L mWatch-ino.jpg
  • Setup 3:Load the code and copy the program code to IDE. Select the right board and COM port for program download after compiling.
MWatch-com.jpg

Program Description

  • " draw()" function is OLED display interface and it displays characters with a few steps:
    • Set font
    • Set font coordinate place
    • Print characters to be displayed
  • setRtcTime() is time setting function. For example setRtcTime(15, 5, 18, 1, 10, 22, 33) presents 33 seconds at 10: 22 on Monday, 18, May, 2015.
void setRtcTime (byte _year, byte _month, byte _day, byte _week, byte _hour, byte _minute, byte _sec)
{
  //clear out all the registers
  rtc.initClock();
  rtc.setDate(_day, _week, _month, 0, _year);
  rtc.setTime(_hour, _minute, _sec);
}

Code Debugging

Find this code section and set the initial time of the RTC module. Re-load the code to CoreUSB after setting.

setRtcTime(15, 5, 18, 1, 00, 00, 00);

Enter "//" before this code section after loading the program, the whole section will turn gray and then re-load the program and you'll see RTC can time automatically. ("//" means "comment out the program code and do not perform ". In this way, you needn't run the program after calibration or the system will need re-set time after power-fail and re-start. )

//setRtcTime(15, 5, 18, 1, 00, 00, 00);

Hardware Buildup

  • Setup 1:Connect the activated battery box and BM module.
CoreUSB Ble steup2.jpg
  • Setup 2:Stack all modules together with fixed order and finish circuit buildup.
MWatch steup3.jpg

Result

The first line shows data and week. The second line displays: time and the third displays custom text.

Legao mWatch.jpg

Video