Files
Last update 6 years 10 months
by
Nick
version.h/* * Copyright (C) 2016-2017 Nick Naumenko (https://github.com/nnaumenko) * All rights reserved * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ /** * @file * @brief Actual firmware version. */ #ifndef VERSION_H #define VERSION_H #include <Arduino.h> #define FIRMWARE_VERSION_MAJOR 0 #define FIRMWARE_VERSION_MINOR 17 #endif