MQTT library (clone of https://os.mbed.com/teams/mqtt/code/MQTT/)

Dependencies:   FP MQTTPacket

Dependents:   NuMaker-mbed-AWS-IoT-example NuMaker-mbed-OS-6-AWS-IoT-example

Committer:
SHLIU1@OANBE02333.nuvoton.com
Date:
Wed Sep 07 13:40:01 2022 +0800
Revision:
65:1b626554f238
Parent:
64:1d9e7bec2a54
delete the setting of "chrono::duration_castchrono::milliseconds"

Who changed what in which revision?

UserRevisionLine numberNew contents of line
icraggs 29:833386b16f3e 1 #if !defined(MQTT_MBED_H)
icraggs 29:833386b16f3e 2 #define MQTT_MBED_H
icraggs 29:833386b16f3e 3
icraggs 29:833386b16f3e 4 #include "mbed.h"
icraggs 29:833386b16f3e 5
icraggs 29:833386b16f3e 6 class Countdown
icraggs 29:833386b16f3e 7 {
icraggs 29:833386b16f3e 8 public:
icraggs 51:5042d7e56f7e 9 Countdown() : t()
icraggs 29:833386b16f3e 10 {
icraggs 51:5042d7e56f7e 11
icraggs 29:833386b16f3e 12 }
icraggs 29:833386b16f3e 13
icraggs 51:5042d7e56f7e 14 Countdown(int ms) : t()
icraggs 29:833386b16f3e 15 {
icraggs 29:833386b16f3e 16 countdown_ms(ms);
icraggs 29:833386b16f3e 17 }
icraggs 29:833386b16f3e 18
SHLIU1@OANBE02333.nuvoton.com 64:1d9e7bec2a54 19
icraggs 29:833386b16f3e 20 bool expired()
icraggs 29:833386b16f3e 21 {
SHLIU1@OANBE02333.nuvoton.com 65:1b626554f238 22 return (t.elapsed_time()).count()/1000 >= interval_end_ms;
icraggs 29:833386b16f3e 23 }
icraggs 29:833386b16f3e 24
icraggs 43:21da1f744243 25 void countdown_ms(unsigned long ms)
icraggs 29:833386b16f3e 26 {
icraggs 29:833386b16f3e 27 t.stop();
icraggs 29:833386b16f3e 28 interval_end_ms = ms;
icraggs 29:833386b16f3e 29 t.reset();
icraggs 29:833386b16f3e 30 t.start();
icraggs 29:833386b16f3e 31 }
icraggs 29:833386b16f3e 32
icraggs 29:833386b16f3e 33 void countdown(int seconds)
icraggs 29:833386b16f3e 34 {
icraggs 43:21da1f744243 35 countdown_ms((unsigned long)seconds * 1000L);
icraggs 29:833386b16f3e 36 }
icraggs 29:833386b16f3e 37
icraggs 29:833386b16f3e 38 int left_ms()
icraggs 29:833386b16f3e 39 {
SHLIU1@OANBE02333.nuvoton.com 65:1b626554f238 40 return interval_end_ms - (t.elapsed_time()).count()/1000;
icraggs 29:833386b16f3e 41 }
icraggs 29:833386b16f3e 42
icraggs 29:833386b16f3e 43 private:
icraggs 29:833386b16f3e 44 Timer t;
icraggs 43:21da1f744243 45 unsigned long interval_end_ms;
icraggs 29:833386b16f3e 46 };
icraggs 29:833386b16f3e 47
icraggs 29:833386b16f3e 48 #endif