COSA
An Object-Oriented Platform for Arduino Programming
|
Go to the source code of this file.
Classes | |
struct | time_t |
Typedefs | |
typedef uint32_t | clock_t |
Enumerations | |
enum | { SUNDAY = 1, MONDAY = 2, TUESDAY = 3, WEDNESDAY = 4, THURSDAY = 5, FRIDAY = 6, SATURDAY = 7 } |
Functions | |
IOStream & | operator<< (IOStream &outs, const time_t &t) |
Variables | |
const uint16_t | NTP_EPOCH_YEAR = 1900 |
const uint8_t | NTP_EPOCH_WEEKDAY = MONDAY |
const uint16_t | POSIX_EPOCH_YEAR = 1970 |
const uint8_t | POSIX_EPOCH_WEEKDAY = THURSDAY |
const uint16_t | Y2K_EPOCH_YEAR = 2000 |
const uint8_t | Y2K_EPOCH_WEEKDAY = SATURDAY |
const uint32_t | SECONDS_PER_DAY = 86400L |
const uint16_t | SECONDS_PER_HOUR = 3600 |
const uint8_t | SECONDS_PER_MINUTE = 60 |
const uint8_t | DAYS_PER_WEEK = 7 |
Copyright (C) 2013-2015, Mikael Patel
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
This file is part of the Arduino Che Cosa project.
Definition in file Time.hh.
typedef uint32_t clock_t |
anonymous enum |