ESP32-PaxCounter/include/reset.h
2019-10-20 20:47:03 +02:00

12 lines
258 B
C

#ifndef _RESET_H
#define _RESET_H
#include <driver/rtc_io.h>
#include <rom/rtc.h>
#include "i2c.h"
void do_reset(bool warmstart);
void do_after_reset(int reason);
void enter_deepsleep(const int wakeup_sec, const gpio_num_t wakeup_gpio);
#endif // _RESET_H