Turned down heartbeat rate to keep from getting a headache

This commit is contained in:
Brian Campuzano 2017-02-20 23:21:52 -08:00
parent b81b0f9bcf
commit e02d1a1a8f
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
#include "driver/gpio.h"
#define HEARTBEAT_GPIO GPIO_NUM_5
#define HEARTBEAT_PERIOD_MS 250
#define HEARTBEAT_PERIOD_MS 1000
void heartbeat_task(void *pvParameter)
{

View File

@ -1,5 +1,6 @@
// ESP components
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "nvs_flash.h"