Program that uses the QuickStart Library to interface a SmartMesh IP mote: Connects to the default network and starts publishing a random walk value every 5 seconds.

Dependencies:   mbed millis

Fork of QSL_SimplePublish by Jon-Håkon Bøe Røli

QSL SimplePublish

SmartMesh IP QuickStart Library

sm_qsl/dn_time.h

Committer:
jhbr
Date:
2016-09-01
Revision:
1:89766ea2e99d
Parent:
dn_time.h@ 0:d3f5fdf2e6da

File content as of revision 1:89766ea2e99d:

/*
Copyright (c) 2016, Dust Networks. All rights reserved.

\license See attached DN_LICENSE.txt.
*/

#ifndef DN_TIME_H
#define DN_TIME_H

#include "dn_common.h"

//=========================== defines =========================================

//=========================== typedef =========================================

//=========================== variables =======================================

//=========================== prototypes ======================================

#ifdef __cplusplus
 extern "C" {
#endif

uint32_t dn_time_ms(void);
void dn_sleep_ms(uint32_t milliseconds);

#ifdef __cplusplus
}
#endif

#endif