From 2fc1128714c201c8770159282a106e609e7b0688 Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Thu, 9 Feb 2017 17:55:57 +0300 Subject: [PATCH] Added SetBit timestamp example --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 6e45f8421..d6a4ae153 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,11 @@ SetBit(id=10, frame="foo", profileID=1) A return value of `{"results":[true]}` indicates that the bit was toggled from 0 to 1. A return value of `{"results":[false]}` indicates that the bit was already set to 1 and therefore nothing changed. +SetBit accepts an optional `timestamp` field: +``` +SetBit(id=10, frame=f, profileID=2, timestamp="2016-12-11T10:09:07") +``` + --- #### ClearBit() ```