Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
RT200T_ESP32
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
RT200T
RT200T_ESP32
Commits
035afd54
Commit
035afd54
authored
May 27, 2024
by
时昊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
✨
feat:连接蓝牙后,发送小时和分钟数据
parent
ceda24f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
Protocol_User.c
RT200T_2_ESP32/main/Protocol_User.c
+4
-7
gatts_table_creat_demo.h
RT200T_2_ESP32/main/gatts_table_creat_demo.h
+1
-1
No files found.
RT200T_2_ESP32/main/Protocol_User.c
View file @
035afd54
...
...
@@ -318,15 +318,12 @@ void Uart_Send_Id10_Pro(void )//esp32发送启动完成给底板
void
Uart_Send_Id12_Pro
(
void
)
//收到底板回复的0x20后,发送蓝牙类型 ID12[0]是判断蓝牙是否连接 不等于0是连接
{
uint8_t
ID12
[
15
]
=
{
0
};
uint8_t
ID12
[
3
]
=
{
0
};
ID12
[
0
]
|=
(
uint8_t
)(
BT_User
.
BT_Sts
<<
4
);
//经典
ID12
[
0
]
|=
Ble_User
.
Ble_Sts
;
//ble
unsigned
int
i
=
0
;
for
(
i
=
0
;
i
<
14
;
i
++
)
{
ID12
[
i
+
1
]
=
BT_Device_Name
[
i
];
}
Protocol_Send
(
0x12
,
ID12
,
15
);
ID12
[
1
]
=
22
;
//小时
ID12
[
2
]
=
22
;
//分钟
Protocol_Send
(
0x12
,
ID12
,
3
);
}
void
Uart_Send_Id01_Pro
(
void
)
...
...
RT200T_2_ESP32/main/gatts_table_creat_demo.h
View file @
035afd54
...
...
@@ -79,5 +79,5 @@ extern uint8_t BT_Device_Name[14];
void
Get_Mac_Init
(
void
);
extern
int
bsp_Uart_Send_Data
(
uint8_t
*
data
,
unsigned
int
len
);
extern
uint8_t
BT_Device_Name
[
14
];
#endif
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment