mirror of
https://github.com/sipeed/MaixCDK.git
synced 2026-09-13 15:10:42 -05:00
13 lines
225 B
C++
13 lines
225 B
C++
#pragma once
|
|
|
|
namespace maix::network
|
|
{
|
|
/**
|
|
* Return if device have network(WiFi/Eth etc.)
|
|
* @return True if have network, else False.
|
|
* @maixpy maix.network.have_network
|
|
*/
|
|
bool have_network();
|
|
}
|
|
|