From eaec7af3a011e45acc932dc9c579a657b9fa123c Mon Sep 17 00:00:00 2001 From: squix78 <dani.eichhorn@squix.ch> Date: Wed, 2 Dec 2015 16:26:51 +0100 Subject: [PATCH] Added notes for frame mode --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa2a59e..eb175a5 100644 --- a/README.md +++ b/README.md @@ -121,8 +121,11 @@ void setFont(const char *fontData); ## Frame Transition Functions +The Frane Transition functions are a set of functions on top of the basic library. They allow you to easily write frames which will be shifted in regular intervals. The frame animation (including the frame indicators) will only be activated if you define callback functions with setFrameCallacks(..). If no callback methods are defined no indicators will be displayed. + ```C++ -// Sets the callback methods of the format void method(x,y) +// Sets the callback methods of the format void method(x,y). As soon as you define the callbacks +// the library is in "frame mode" and indicators will be drawn. void setFrameCallbacks(int frameCount, void (*frameCallbacks[])(int x, int y)); // Tells the framework to move to the next tick. The -- GitLab