在STM32G431内部配置有RTC计时器,将它与OLED屏配合即可实现一个电子时钟。 . ?8 i! c8 W$ ]' v
实现图1所示效果的主程序为: - int main(void)5 D: g" f4 K+ }2 @
- {4 l7 B9 R& O [: l
- /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
/ J" i `9 @3 M5 M T - HAL_Init();9 h8 a! O2 r$ g5 x7 q$ M' M5 J. u
- /* Configure the system clock */
& {, n% x) u5 W7 S - SystemClock_Config(); o! V- j9 r* h# m, x
- GPIO_OLED_INIT();; J5 S; g. Y: `8 W
- OLED_Init();
6 z/ N2 r. B c! _. A" y - OLED_Clear();
' R. T& s! e6 M5 o - OLED_ShowString(18,0,"STM32G431",16);
; S& l/ X1 x. t6 I$ j+ _ - OLED_ShowString(10,2,"OLED & RTC",16); s9 A$ G0 g0 w( N" U
- /* Initialize all configured peripherals */
( J3 W9 E7 ?! C3 p - MX_RTC_Init();9 ~3 Y2 w5 L/ C: p
- RTCStatus = 1;
5 K9 f6 V2 l1 i6 J - while (1)% I$ C$ N, F7 ~( O
- {3 n2 k8 i- l7 Z0 l7 j: H% w: k( ?
- /* Display the updated Time and Date */5 I& A9 y. Q. {. b
- RTC_CalendarShow(aShowTime, aShowDate);) K& ?3 P( a; z) n
- Delay(200);
8 j- _, G5 E' z- }/ z) e - }
, m" y% l, b( U. t# s: [$ @ - }
复制代码 图1 RTC电子时钟 ) F, \0 c2 g' q* {: a/ s' g$ Q
实现RTC显示的函数为: - static void RTC_CalendarShow(uint8_t *showtime, uint8_t *showdate)' a5 S- |2 ?3 C |- m; Q
- {
5 V" S' l7 Q, u - RTC_DateTypeDef sdatestructureget;( w# {$ Q& P4 d. X) p3 |
- RTC_TimeTypeDef stimestructureget;
4 e: e1 Z8 y0 O9 v, Z - /* Get the RTC current Time */7 e& _' z1 G8 R4 ~" V6 A, m
- HAL_RTC_GetTime(&hrtc, &stimestructureget, RTC_FORMAT_BIN);. O; y2 U* s5 I( x( a
- /* Get the RTC current Date */# H0 w4 u8 s2 Y$ \$ P) {
- HAL_RTC_GetDate(&hrtc, &sdatestructureget, RTC_FORMAT_BIN);' {) s0 A) s, S5 x0 @: p
- /* Display time Format : hh:mm:ss */
) r- o- }" x# Q1 }7 m - sprintf((char *)showtime, "%2d:%2d:%2d", stimestructureget.Hours, stimestructureget.Minutes, stimestructureget.Seconds);! P r5 d, Q: D! o8 @
- OLED_ShowString(26,6,showtime,16);
: Q0 ^% e5 @0 S, t/ F0 _ - /* Display date Format : mm-dd-yy */
+ r4 ~& Z$ |6 _7 g8 P2 }3 K3 Q - sprintf((char *)showdate, "%2d-%2d-%2d", 2000 + sdatestructureget.Year,sdatestructureget.Month, sdatestructureget.Date);
% Q; l: x; ~: M, u U - OLED_ShowString(10,4,showdate,16);
; Q# u4 _. v+ h4 u9 ` - }
复制代码
: l& }3 y9 Q# ?" m9 x& {调用的字符串显示函数为: - void OLED_ShowString(u8 x,u8 y,u8 *chr,u8 Char_Size)/ i6 M; L! N% o- C: p# J
- {9 p! }4 _. q0 A
- unsigned char j=0;
; } f# Z1 n1 [, f6 V j5 K - while (chr[j]!='\0')" x0 z ]7 m' D0 t) \
- { OLED_ShowChar(x,y,chr[j],Char_Size);
$ I6 b3 n( `% E% k7 o - x+=8;, N2 o* D; V7 V+ K: L& M
- if(x>120){x=0;y+=2;}3 f- V+ k1 r" g. m2 i. w1 Z. i
- j++;
, v2 F6 {# y) V4 Q1 o6 l, F4 k - }9 D d9 ^, r9 c7 c6 F) ~& J7 O+ M1 j+ @
- }
复制代码
3 r4 h2 P0 k t1 Z. `由于例程所设置的初始时间是2018年,故需要在函数 MX_RTC_Init()中进行修改,修改后的运行效果如图2所示。
1 T9 H4 V2 s7 {$ s1 I! O8 h2 {图2 校时后的显示效果
4 Y! Y7 s }# w- H( P7 T- a |
有空我也玩玩。
计时尚可,长时间的误差可能会明显点儿。
就是11月31日会不会自动进入12月1日,还有闰年修正等。
我给你测了下,两者都没有问题。