Seeed Grove ++  v0.0.1-1441M
C++ Library For Seeed Grove Devices
sg++.cpp
Go to the documentation of this file.
1 /* Seeed Grove ++ (C) 2015 Stephane Charette <stephanecharette@gmail.com>
2  * $Id: sg++.cpp 1440 2015-12-09 14:15:37Z stephane $
3  */
4 
5 #include "sg++.hpp"
6 
7 
8 static bool initialized = false;
9 
10 
11 void SG::initialize( void )
12 {
13  initialized = true;
14 
15  return;
16 }
17 
18 
19 bool SG::is_initialized( void )
20 {
21  return initialized;
22 }
23 
24 
25 std::string SG::as_debug( void )
26 {
27  return "test";
28 }
void initialize(void)
Initialize Seeed Grove ++. It is safe to call this multiple times.
Definition: sg++.cpp:11
bool is_initialized(void)
Determine if Seeed Grove ++ has been initialized.
Definition: sg++.cpp:19
std::string as_debug(void)
Definition: sg++.cpp:25