Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: GroveGPS libmDot-mbed5 ISL29011
examples/inc/dot_util.h
- Committer:
 - mfiore
 - Date:
 - 2016-10-05
 - Revision:
 - 0:a151a6350d7f
 - Child:
 - 5:97ed5f2f099e
 
File content as of revision 0:a151a6350d7f:
#ifndef __DOT_UTIL_H__
#define __DOT_UTIL_H__
#include "mbed.h"
#include "mDot.h"
#include "MTSLog.h"
#include "MTSText.h"
#include "ISL29011.h"
#include "example_config.h"
extern mDot* dot;
void display_config();
void update_ota_config(std::string network_name, std::string network_passphrase, uint8_t frequency_sub_band, bool public_network, uint8_t ack);
void join_network();
void sleep_wake_rtc_only(bool deepsleep);
void sleep_wake_interrupt_only(bool deepsleep);
void sleep_wake_rtc_or_interrupt(bool deepsleep);
void send_data(std::vector<uint8_t> data);
#endif