mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-06 03:29:01 +08:00
4a637a6e9a
Move data collection out of main.c PUBLISHED_FROM=0340ebcea62a12275e915f325483603e72ff4183
16 lines
390 B
C
16 lines
390 B
C
/*
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#ifndef CS_MONGOOSE_EXAMPLES_CC3200_DATA_H_
|
|
#define CS_MONGOOSE_EXAMPLES_CC3200_DATA_H_
|
|
|
|
#include "mongoose.h"
|
|
|
|
void data_collect();
|
|
void data_init_sensors(int tmp006_addr, int bm222_addr);
|
|
void data_conn_handler(struct mg_connection *nc, int ev, void *p);
|
|
|
|
#endif /* CS_MONGOOSE_EXAMPLES_CC3200_DATA_H_ */
|