diff --git a/NexHotspot.cpp b/NexHotspot.cpp index 51d78e5..be24ca3 100644 --- a/NexHotspot.cpp +++ b/NexHotspot.cpp @@ -29,7 +29,7 @@ NexHotspot::NexHotspot(NexPid pid, NexCid cid, char *name, /** * Register hotspot push callback function. * - * @param pop - the pointer to hotspot push callback function. + * @param push - the pointer to hotspot push callback function. * @param ptr - the parameter to be transmitted to hotspot push callback function. */ void NexHotspot::attachPush(NexTouchEventCb push, void *ptr) diff --git a/NexPicture.cpp b/NexPicture.cpp index ade3bf9..d247d12 100644 --- a/NexPicture.cpp +++ b/NexPicture.cpp @@ -29,7 +29,7 @@ NexPicture::NexPicture(NexPid pid, NexCid cid, char *name, NexTouchEventCb pop, * * @param number - an output parameter to save picture number. * - * @reval true - success. + * @retval true - success. * @retval false - failed. */ bool NexPicture::getPic(uint32_t *number) diff --git a/NexTouch.cpp b/NexTouch.cpp index e35c6e6..a46b970 100644 --- a/NexTouch.cpp +++ b/NexTouch.cpp @@ -66,7 +66,7 @@ uint8_t NexTouch::mainEventLoop(NexTouch **list) * @param cid - component id. * @param name - component name. * @param pop - pop event function pointer. - * @param pop_str - the parameter was transmitted to pop event function pointer. + * @param pop_ptr - the parameter was transmitted to pop event function pointer. * @param push - push event function pointer. * @param push_ptr - the parameter was transmitted to push event function pointer. * diff --git a/doc/API-html/_comp_button_8ino-example.html b/doc/API-html/_comp_button_8ino-example.html new file mode 100644 index 00000000..cf17447 --- /dev/null +++ b/doc/API-html/_comp_button_8ino-example.html @@ -0,0 +1,106 @@ + + + + + + +API: CompButton.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompButton.ino
+
+
+
Show how to use API of class NexButton.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexButton.h"
+
+
NexButton b0 = NexButton(0, 1, "b0");
+
char buffer[100] = {0};
+
+
NexTouch *nexListenList[] =
+
{
+
&b0,
+
NULL
+
};
+
+
void b0PopCallback(void *ptr)
+
{
+
uint16_t len;
+
uint16_t number;
+
NexButton *btn = (NexButton *)ptr;
+
+
dbSerial.println("b0PopCallback");
+
dbSerial.print("ptr=");
+
dbSerial.println((uint32_t)ptr);
+
+
memset(buffer, 0, sizeof(buffer));
+
btn->getText(buffer, sizeof(buffer));
+
+
number = atoi(buffer);
+
number += 1;
+
+
memset(buffer, 0, sizeof(buffer));
+
itoa(number, buffer, 10);
+
+
btn->setText(buffer);
+
}
+
+
void setup(void)
+
{
+
dbSerial.begin(9600);
+ +
b0.attachPop(b0PopCallback, &b0);
+
dbSerial.println("setup done");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+ + + + diff --git a/doc/API-html/_comp_button_8ino_source.html b/doc/API-html/_comp_button_8ino_source.html index 759ec13..6e64505 100644 --- a/doc/API-html/_comp_button_8ino_source.html +++ b/doc/API-html/_comp_button_8ino_source.html @@ -111,7 +111,7 @@ diff --git a/doc/API-html/_comp_hotspot_8ino-example.html b/doc/API-html/_comp_hotspot_8ino-example.html index 4206eb8..678fab6 100644 --- a/doc/API-html/_comp_hotspot_8ino-example.html +++ b/doc/API-html/_comp_hotspot_8ino-example.html @@ -108,7 +108,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_comp_hotspot_8ino_source.html b/doc/API-html/_comp_hotspot_8ino_source.html index 3f9d284..85f7ac9 100644 --- a/doc/API-html/_comp_hotspot_8ino_source.html +++ b/doc/API-html/_comp_hotspot_8ino_source.html @@ -120,7 +120,7 @@ diff --git a/doc/API-html/_comp_page_8ino-example.html b/doc/API-html/_comp_page_8ino-example.html new file mode 100644 index 00000000..8ac42bd --- /dev/null +++ b/doc/API-html/_comp_page_8ino-example.html @@ -0,0 +1,119 @@ + + + + + + +API: CompPage.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompPage.ino
+
+
+
Show how to use API of class NexPage.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexPage.h"
+
+
NexPage page0 = NexPage(0, 0, "page0");
+
NexPage page1 = NexPage(1, 0, "page1");
+
NexPage page2 = NexPage(2, 0, "page2");
+
NexPage page3 = NexPage(3, 0, "page3");
+
+
NexTouch *nexListenList[] =
+
{
+
&page0,
+
&page1,
+
&page2,
+
&page3,
+
NULL
+
};
+
+
void page0PopCallback(void *ptr)
+
{
+
dbSerial.println("page0PopCallback");
+
page1.show();
+
}
+
+
void page1PopCallback(void *ptr)
+
{
+
dbSerial.println("page1PopCallback");
+
page2.show();
+
}
+
+
void page2PopCallback(void *ptr)
+
{
+
dbSerial.println("page2PopCallback");
+
page3.show();
+
}
+
+
void page3PopCallback(void *ptr)
+
{
+
dbSerial.println("page3PopCallback");
+
page0.show();
+
}
+
+
void setup(void)
+
{
+
dbSerial.begin(9600);
+ +
dbSerial.println("setup begin");
+
+
page0.attachPop(page0PopCallback);
+
page1.attachPop(page1PopCallback);
+
page2.attachPop(page2PopCallback);
+
page3.attachPop(page3PopCallback);
+
+
dbSerial.println("setup end");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+ + + + diff --git a/doc/API-html/_comp_page_8ino_source.html b/doc/API-html/_comp_page_8ino_source.html index 8db6427..a2a0b61 100644 --- a/doc/API-html/_comp_page_8ino_source.html +++ b/doc/API-html/_comp_page_8ino_source.html @@ -123,7 +123,7 @@ diff --git a/doc/API-html/_comp_picture_8ino-example.html b/doc/API-html/_comp_picture_8ino-example.html new file mode 100644 index 00000000..32da108 --- /dev/null +++ b/doc/API-html/_comp_picture_8ino-example.html @@ -0,0 +1,104 @@ + + + + + + +API: CompPicture.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompPicture.ino
+
+
+
Show how to use API of class NexPicture.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexPicture.h"
+
+
NexPicture p0 = NexPicture(0, 1, "p0");
+
+
NexTouch *nexListenList[] =
+
{
+
&p0,
+
NULL
+
};
+
+
void p0PopCallback(void *ptr)
+
{
+
uint32_t number = 0;
+
dbSerial.println("p0PopCallback");
+
+
p0.getPic(&number);
+
+
if (number == 1)
+
{
+
number = 2;
+
}
+
else
+
{
+
number = 1;
+
}
+
+
p0.setPic(number);
+
}
+
+
+
void setup(void)
+
{
+
dbSerial.begin(9600);
+ +
p0.attachPop(p0PopCallback);
+
dbSerial.println("setup done");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+
+ + + + diff --git a/doc/API-html/_comp_picture_8ino_source.html b/doc/API-html/_comp_picture_8ino_source.html index 278cf0c..12c963d 100644 --- a/doc/API-html/_comp_picture_8ino_source.html +++ b/doc/API-html/_comp_picture_8ino_source.html @@ -109,7 +109,7 @@ diff --git a/doc/API-html/_comp_pointer_8ino-example.html b/doc/API-html/_comp_pointer_8ino-example.html new file mode 100644 index 00000000..aeca7ae --- /dev/null +++ b/doc/API-html/_comp_pointer_8ino-example.html @@ -0,0 +1,121 @@ + + + + + + +API: CompPointer.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompPointer.ino
+
+
+
Show how to use API of class NexPointer.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexPointer.h"
+
#include "NexButton.h"
+
+
NexPointer pointer = NexPointer(0, 1, "pointer");
+
NexButton btn_up = NexButton(0, 2, "btn_up");
+
NexButton btn_down = NexButton(0, 3, "btn_down");
+
+
NexTouch *nexListenList[] =
+
{
+
&btn_up,
+
&btn_down,
+
NULL
+
};
+
+
void buttonUpPopCallback(void *ptr)
+
{
+
uint32_t number = 0;
+
dbSerial.println("buttonUpPopCallback");
+
+
pointer.getValue(&number);
+
+
number += 5;
+
if (number >= 360)
+
{
+
number = 0;
+
}
+
+
pointer.setValue(number);
+
}
+
void buttonDownPopCallback(void *ptr)
+
{
+
uint32_t number = 0;
+
dbSerial.println("buttonDownPopCallback");
+
+
pointer.getValue(&number);
+
+
if (number >= 5)
+
{
+
number -= 5;
+
}
+
+
pointer.setValue(number);
+
}
+
+
+
+
void setup(void)
+
{
+
dbSerial.begin(9600);
+ +
btn_up.attachPop(buttonUpPopCallback);
+
btn_down.attachPop(buttonDownPopCallback);
+
dbSerial.println("setup done");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+
+ + + + diff --git a/doc/API-html/_comp_pointer_8ino_source.html b/doc/API-html/_comp_pointer_8ino_source.html index ae2a552..9109df6 100644 --- a/doc/API-html/_comp_pointer_8ino_source.html +++ b/doc/API-html/_comp_pointer_8ino_source.html @@ -127,7 +127,7 @@ diff --git a/doc/API-html/_comp_progress_bar_8ino-example.html b/doc/API-html/_comp_progress_bar_8ino-example.html new file mode 100644 index 00000000..a6746de --- /dev/null +++ b/doc/API-html/_comp_progress_bar_8ino-example.html @@ -0,0 +1,123 @@ + + + + + + +API: CompProgressBar.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompProgressBar.ino
+
+
+
Show how to use API of class NexProgressBar.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexProgressBar.h"
+
#include "NexButton.h"
+
+
NexProgressBar j0 = NexProgressBar(0, 3, "j0");
+
NexButton btn_up = NexButton(0, 1, "btn_up");
+
NexButton btn_down = NexButton(0, 2, "btn_down");
+
+
NexTouch *nexListenList[] =
+
{
+
&btn_up,
+
&btn_down,
+
NULL
+
};
+
+
void buttonUpPopCallback(void *ptr)
+
{
+
uint32_t number = 0;
+
dbSerial.println("buttonUpPopCallback");
+
+
j0.getValue(&number);
+
+
number += 5;
+
if (number >= 100)
+
{
+
number = 100;
+
}
+
+
j0.setValue(number);
+
}
+
void buttonDownPopCallback(void *ptr)
+
{
+
uint32_t number = 0;
+
dbSerial.println("buttonDownPopCallback");
+
+
j0.getValue(&number);
+
+
if (number >= 5)
+
{
+
number -= 5;
+
}
+
+
j0.setValue(number);
+
}
+
+
+
+
void setup(void)
+
{
+
uint32_t brightness = 0;
+
+
dbSerial.begin(9600);
+ +
btn_up.attachPop(buttonUpPopCallback);
+
btn_down.attachPop(buttonDownPopCallback);
+
dbSerial.println("setup done");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+
+ + + + diff --git a/doc/API-html/_comp_progress_bar_8ino_source.html b/doc/API-html/_comp_progress_bar_8ino_source.html index 302dfbc..1af25c3 100644 --- a/doc/API-html/_comp_progress_bar_8ino_source.html +++ b/doc/API-html/_comp_progress_bar_8ino_source.html @@ -130,7 +130,7 @@ diff --git a/doc/API-html/_comp_slice_8ino-example.html b/doc/API-html/_comp_slice_8ino-example.html new file mode 100644 index 00000000..78acc9c --- /dev/null +++ b/doc/API-html/_comp_slice_8ino-example.html @@ -0,0 +1,98 @@ + + + + + + +API: CompSlice.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompSlice.ino
+
+
+
Show how to use API of class NexSlice.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexSlice.h"
+
+
NexSlice q0 = NexSlice(0, 1, "q0");
+
+
NexTouch *nexListenList[] =
+
{
+
&q0,
+
NULL
+
};
+
+
void q0PopCallback(void *ptr)
+
{
+
uint32_t number = 0;
+
dbSerial.println("q0PopCallback");
+
+
q0.getPic(&number);
+
+
number += 1;
+
number %= 2;
+
+
q0.setPic(number);
+
}
+
+
+
void setup(void)
+
{
+
dbSerial.begin(9600);
+ +
q0.attachPop(q0PopCallback);
+
dbSerial.println("setup done");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+
+ + + + diff --git a/doc/API-html/_comp_slice_8ino_source.html b/doc/API-html/_comp_slice_8ino_source.html index 3a603d2..bcdcfc8 100644 --- a/doc/API-html/_comp_slice_8ino_source.html +++ b/doc/API-html/_comp_slice_8ino_source.html @@ -101,7 +101,7 @@ diff --git a/doc/API-html/_comp_text_8ino-example.html b/doc/API-html/_comp_text_8ino-example.html new file mode 100644 index 00000000..015552e --- /dev/null +++ b/doc/API-html/_comp_text_8ino-example.html @@ -0,0 +1,138 @@ + + + + + + +API: CompText.ino + + + + + + +
+
+ + + + + + + +
+
API +
+
For Arduino developers
+
+
+ + + +
+
+
+
CompText.ino
+
+
+
Show how to use API of class NexText.
+
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
+
Date
2015/7/10
+ +
+
#include "NexButton.h"
+
#include "NexText.h"
+
+
void t0PopCallback(void *ptr);
+
void b0PopCallback(void *ptr);
+
void b1PopCallback(void *ptr);
+
+
NexText t0 = NexText(0, 1, "t0", t0PopCallback);
+
NexButton b0 = NexButton(0, 2, "b0", b0PopCallback);
+
NexButton b1 = NexButton(0, 3, "b1", b1PopCallback);
+
+
char buffer[100] = {0};
+
+
NexTouch *nexListenList[] =
+
{
+
&t0,
+
&b0,
+
&b1,
+
NULL
+
};
+
+
void t0PopCallback(void *ptr)
+
{
+
dbSerial.println("t0PopCallback");
+
t0.setText("50");
+
}
+
+
void b0PopCallback(void *ptr)
+
{
+
uint16_t len;
+
uint16_t number;
+
+
dbSerial.println("b0PopCallback");
+
+
memset(buffer, 0, sizeof(buffer));
+
t0.getText(buffer, sizeof(buffer));
+
+
number = atoi(buffer);
+
number += 1;
+
+
memset(buffer, 0, sizeof(buffer));
+
itoa(number, buffer, 10);
+
+
t0.setText(buffer);
+
}
+
+
void b1PopCallback(void *ptr)
+
{
+
uint16_t len;
+
uint16_t number;
+
+
dbSerial.println("b1PopCallback");
+
+
memset(buffer, 0, sizeof(buffer));
+
t0.getText(buffer, sizeof(buffer));
+
+
number = atoi(buffer);
+
number -= 1;
+
+
memset(buffer, 0, sizeof(buffer));
+
itoa(number, buffer, 10);
+
+
t0.setText(buffer);
+
}
+
+
void setup(void)
+
{
+
dbSerial.begin(9600);
+ +
dbSerial.println("setup done");
+
}
+
+
void loop(void)
+
{
+
dbSerial.println("nexLoop");
+
nexLoop(nexListenList);
+
}
+
+
+ + + + diff --git a/doc/API-html/_comp_text_8ino_source.html b/doc/API-html/_comp_text_8ino_source.html index 390a8fb..5a2edf0 100644 --- a/doc/API-html/_comp_text_8ino_source.html +++ b/doc/API-html/_comp_text_8ino_source.html @@ -144,7 +144,7 @@ diff --git a/doc/API-html/_nex_button_8cpp.html b/doc/API-html/_nex_button_8cpp.html index dd85e69..3eb0e62 100644 --- a/doc/API-html/_nex_button_8cpp.html +++ b/doc/API-html/_nex_button_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_button_8cpp_source.html b/doc/API-html/_nex_button_8cpp_source.html index 6e7950d..de54169 100644 --- a/doc/API-html/_nex_button_8cpp_source.html +++ b/doc/API-html/_nex_button_8cpp_source.html @@ -103,7 +103,7 @@ diff --git a/doc/API-html/_nex_button_8h.html b/doc/API-html/_nex_button_8h.html index d7c37ca..a71cce9 100644 --- a/doc/API-html/_nex_button_8h.html +++ b/doc/API-html/_nex_button_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_button_8h_source.html b/doc/API-html/_nex_button_8h_source.html index 29d33a6..5ad0e29 100644 --- a/doc/API-html/_nex_button_8h_source.html +++ b/doc/API-html/_nex_button_8h_source.html @@ -80,7 +80,7 @@ diff --git a/doc/API-html/_nex_hotspot_8cpp.html b/doc/API-html/_nex_hotspot_8cpp.html index 13abf67..7fd68f0 100644 --- a/doc/API-html/_nex_hotspot_8cpp.html +++ b/doc/API-html/_nex_hotspot_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_hotspot_8cpp_source.html b/doc/API-html/_nex_hotspot_8cpp_source.html index 5fd667a..3af3416 100644 --- a/doc/API-html/_nex_hotspot_8cpp_source.html +++ b/doc/API-html/_nex_hotspot_8cpp_source.html @@ -88,7 +88,7 @@ diff --git a/doc/API-html/_nex_hotspot_8h.html b/doc/API-html/_nex_hotspot_8h.html index 3aea44f..fad62f6 100644 --- a/doc/API-html/_nex_hotspot_8h.html +++ b/doc/API-html/_nex_hotspot_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_hotspot_8h_source.html b/doc/API-html/_nex_hotspot_8h_source.html index cef5634..2c3cb60 100644 --- a/doc/API-html/_nex_hotspot_8h_source.html +++ b/doc/API-html/_nex_hotspot_8h_source.html @@ -82,7 +82,7 @@ diff --git a/doc/API-html/_nex_page_8cpp.html b/doc/API-html/_nex_page_8cpp.html index df35f31..0f412da 100644 --- a/doc/API-html/_nex_page_8cpp.html +++ b/doc/API-html/_nex_page_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_page_8cpp_source.html b/doc/API-html/_nex_page_8cpp_source.html index cc76038..3b5802a 100644 --- a/doc/API-html/_nex_page_8cpp_source.html +++ b/doc/API-html/_nex_page_8cpp_source.html @@ -94,7 +94,7 @@ diff --git a/doc/API-html/_nex_page_8h.html b/doc/API-html/_nex_page_8h.html index 8b245c1..9cad83d 100644 --- a/doc/API-html/_nex_page_8h.html +++ b/doc/API-html/_nex_page_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_page_8h_source.html b/doc/API-html/_nex_page_8h_source.html index 486d8b0..7a5ba22 100644 --- a/doc/API-html/_nex_page_8h_source.html +++ b/doc/API-html/_nex_page_8h_source.html @@ -78,7 +78,7 @@ diff --git a/doc/API-html/_nex_picture_8cpp.html b/doc/API-html/_nex_picture_8cpp.html index 2abe035..943760e 100644 --- a/doc/API-html/_nex_picture_8cpp.html +++ b/doc/API-html/_nex_picture_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_picture_8cpp_source.html b/doc/API-html/_nex_picture_8cpp_source.html index c2e5b25..09cf37a 100644 --- a/doc/API-html/_nex_picture_8cpp_source.html +++ b/doc/API-html/_nex_picture_8cpp_source.html @@ -104,7 +104,7 @@ diff --git a/doc/API-html/_nex_picture_8h.html b/doc/API-html/_nex_picture_8h.html index 9782df8..106ff9f 100644 --- a/doc/API-html/_nex_picture_8h.html +++ b/doc/API-html/_nex_picture_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_picture_8h_source.html b/doc/API-html/_nex_picture_8h_source.html index fd5ee93..cb2c851 100644 --- a/doc/API-html/_nex_picture_8h_source.html +++ b/doc/API-html/_nex_picture_8h_source.html @@ -80,7 +80,7 @@ diff --git a/doc/API-html/_nex_pointer_8cpp_source.html b/doc/API-html/_nex_pointer_8cpp_source.html index cb46b16..52765d2 100644 --- a/doc/API-html/_nex_pointer_8cpp_source.html +++ b/doc/API-html/_nex_pointer_8cpp_source.html @@ -90,7 +90,7 @@ diff --git a/doc/API-html/_nex_pointer_8h_source.html b/doc/API-html/_nex_pointer_8h_source.html index f08691b..1ee209c 100644 --- a/doc/API-html/_nex_pointer_8h_source.html +++ b/doc/API-html/_nex_pointer_8h_source.html @@ -74,7 +74,7 @@ diff --git a/doc/API-html/_nex_progress_bar_8cpp.html b/doc/API-html/_nex_progress_bar_8cpp.html index 31c9468..4757238 100644 --- a/doc/API-html/_nex_progress_bar_8cpp.html +++ b/doc/API-html/_nex_progress_bar_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_progress_bar_8cpp_source.html b/doc/API-html/_nex_progress_bar_8cpp_source.html index 3ebd90d..61c2b3f 100644 --- a/doc/API-html/_nex_progress_bar_8cpp_source.html +++ b/doc/API-html/_nex_progress_bar_8cpp_source.html @@ -92,7 +92,7 @@ diff --git a/doc/API-html/_nex_progress_bar_8h.html b/doc/API-html/_nex_progress_bar_8h.html index 2275bae..88fe157 100644 --- a/doc/API-html/_nex_progress_bar_8h.html +++ b/doc/API-html/_nex_progress_bar_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_progress_bar_8h_source.html b/doc/API-html/_nex_progress_bar_8h_source.html index cffd730..e939b72 100644 --- a/doc/API-html/_nex_progress_bar_8h_source.html +++ b/doc/API-html/_nex_progress_bar_8h_source.html @@ -75,7 +75,7 @@ diff --git a/doc/API-html/_nex_slice_8cpp.html b/doc/API-html/_nex_slice_8cpp.html index 9de7767..c0913c7 100644 --- a/doc/API-html/_nex_slice_8cpp.html +++ b/doc/API-html/_nex_slice_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_slice_8cpp_source.html b/doc/API-html/_nex_slice_8cpp_source.html index 5000140..6d3f037 100644 --- a/doc/API-html/_nex_slice_8cpp_source.html +++ b/doc/API-html/_nex_slice_8cpp_source.html @@ -118,7 +118,7 @@ diff --git a/doc/API-html/_nex_slice_8h.html b/doc/API-html/_nex_slice_8h.html index 8e0d083..ded2848 100644 --- a/doc/API-html/_nex_slice_8h.html +++ b/doc/API-html/_nex_slice_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_slice_8h_source.html b/doc/API-html/_nex_slice_8h_source.html index c2caa77..60fb63b 100644 --- a/doc/API-html/_nex_slice_8h_source.html +++ b/doc/API-html/_nex_slice_8h_source.html @@ -78,7 +78,7 @@ diff --git a/doc/API-html/_nex_text_8cpp.html b/doc/API-html/_nex_text_8cpp.html index 7d38557..f19086e 100644 --- a/doc/API-html/_nex_text_8cpp.html +++ b/doc/API-html/_nex_text_8cpp.html @@ -66,7 +66,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_text_8cpp_source.html b/doc/API-html/_nex_text_8cpp_source.html index 81bcb44..144c39e 100644 --- a/doc/API-html/_nex_text_8cpp_source.html +++ b/doc/API-html/_nex_text_8cpp_source.html @@ -102,7 +102,7 @@ diff --git a/doc/API-html/_nex_text_8h.html b/doc/API-html/_nex_text_8h.html index 219ae5e..60502e6 100644 --- a/doc/API-html/_nex_text_8h.html +++ b/doc/API-html/_nex_text_8h.html @@ -75,7 +75,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_text_8h_source.html b/doc/API-html/_nex_text_8h_source.html index 99e7a2d..ead8c61 100644 --- a/doc/API-html/_nex_text_8h_source.html +++ b/doc/API-html/_nex_text_8h_source.html @@ -80,7 +80,7 @@ diff --git a/doc/API-html/_nex_touch_8cpp-example.html b/doc/API-html/_nex_touch_8cpp-example.html index bb8e8c3..271da47 100644 --- a/doc/API-html/_nex_touch_8cpp-example.html +++ b/doc/API-html/_nex_touch_8cpp-example.html @@ -16,7 +16,6 @@ -
API
@@ -43,7 +42,7 @@
NexTouch.cpp
-
Show how to use API of class NexButton.
+
Show how to use API of class NexPicture.
Author
Wu Pengfei (email:pengf.nosp@m.ei.w.nosp@m.u@ite.nosp@m.ad.c.nosp@m.c)
Date
2015/7/10
diff --git a/doc/API-html/_nex_touch_8cpp.html b/doc/API-html/_nex_touch_8cpp.html index 56de0a3..0e24648 100644 --- a/doc/API-html/_nex_touch_8cpp.html +++ b/doc/API-html/_nex_touch_8cpp.html @@ -98,7 +98,7 @@ This program is free software; you can redistribute it and/or modify it under th
-
Examples:
CompHotspot.ino.
+
Examples:
CompButton.ino, CompHotspot.ino, CompPage.ino, CompPicture.ino, CompPointer.ino, CompProgressBar.ino, CompSlice.ino, and CompText.ino.

Definition at line 423 of file NexTouch.cpp.

@@ -131,7 +131,7 @@ This program is free software; you can redistribute it and/or modify it under th
-
Examples:
CompHotspot.ino.
+
Examples:
CompButton.ino, CompHotspot.ino, CompPage.ino, CompPicture.ino, CompPointer.ino, CompProgressBar.ino, CompSlice.ino, and CompText.ino.

Definition at line 440 of file NexTouch.cpp.

@@ -140,7 +140,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_touch_8cpp_source.html b/doc/API-html/_nex_touch_8cpp_source.html index fdfcb88..05111ee 100644 --- a/doc/API-html/_nex_touch_8cpp_source.html +++ b/doc/API-html/_nex_touch_8cpp_source.html @@ -413,7 +413,7 @@ diff --git a/doc/API-html/_nex_touch_8h.html b/doc/API-html/_nex_touch_8h.html index be48913..919ba3b 100644 --- a/doc/API-html/_nex_touch_8h.html +++ b/doc/API-html/_nex_touch_8h.html @@ -145,7 +145,7 @@ This program is free software; you can redistribute it and/or modify it under th diff --git a/doc/API-html/_nex_touch_8h_source.html b/doc/API-html/_nex_touch_8h_source.html index 0384d51..0daa9d6 100644 --- a/doc/API-html/_nex_touch_8h_source.html +++ b/doc/API-html/_nex_touch_8h_source.html @@ -163,7 +163,7 @@ diff --git a/doc/API-html/annotated.html b/doc/API-html/annotated.html index 3236e8e..bace38f 100644 --- a/doc/API-html/annotated.html +++ b/doc/API-html/annotated.html @@ -67,7 +67,7 @@ diff --git a/doc/API-html/class_nex_button-members.html b/doc/API-html/class_nex_button-members.html index ab26653..d592d6e 100644 --- a/doc/API-html/class_nex_button-members.html +++ b/doc/API-html/class_nex_button-members.html @@ -72,7 +72,7 @@ diff --git a/doc/API-html/class_nex_button.html b/doc/API-html/class_nex_button.html index 0ed0c58..1a0f9fd 100644 --- a/doc/API-html/class_nex_button.html +++ b/doc/API-html/class_nex_button.html @@ -127,7 +127,8 @@ Additional Inherited Members

Detailed Description

NexButton,subclass of NexTouch,provides simple methods to control button component.

- +
Examples:
CompButton.ino, CompPointer.ino, CompProgressBar.ino, and CompText.ino.
+

Definition at line 25 of file NexButton.h.

Member Function Documentation

@@ -162,7 +163,8 @@ Additional Inherited Members
- +
Examples:
CompButton.ino, CompPointer.ino, and CompProgressBar.ino.
+

Definition at line 70 of file NexButton.cpp.

@@ -200,7 +202,8 @@ Additional Inherited Members
Returns
the text buffer length
- +
Examples:
CompButton.ino.
+

Definition at line 35 of file NexButton.cpp.

@@ -233,7 +236,8 @@ Additional Inherited Members - +
Examples:
CompButton.ino.
+

Definition at line 53 of file NexButton.cpp.

@@ -245,7 +249,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_hotspot-members.html b/doc/API-html/class_nex_hotspot-members.html index 4d1d93a..93135f0 100644 --- a/doc/API-html/class_nex_hotspot-members.html +++ b/doc/API-html/class_nex_hotspot-members.html @@ -72,7 +72,7 @@ diff --git a/doc/API-html/class_nex_hotspot.html b/doc/API-html/class_nex_hotspot.html index 5d58774..8e2f80d 100644 --- a/doc/API-html/class_nex_hotspot.html +++ b/doc/API-html/class_nex_hotspot.html @@ -197,7 +197,7 @@ Additional Inherited Members

Register hotspot push callback function.

Parameters
- +
pop- the pointer to hotspot push callback function.
push- the pointer to hotspot push callback function.
ptr- the parameter to be transmitted to hotspot push callback function.
@@ -215,7 +215,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_page-members.html b/doc/API-html/class_nex_page-members.html index 1e59b75..f81e528 100644 --- a/doc/API-html/class_nex_page-members.html +++ b/doc/API-html/class_nex_page-members.html @@ -71,7 +71,7 @@ diff --git a/doc/API-html/class_nex_page.html b/doc/API-html/class_nex_page.html index ce5041c..b6c9302 100644 --- a/doc/API-html/class_nex_page.html +++ b/doc/API-html/class_nex_page.html @@ -124,7 +124,8 @@ Additional Inherited Members

Detailed Description

NexPage,subclass of NexTouch,provides simple methods to control page component.

- +
Examples:
CompPage.ino.
+

Definition at line 25 of file NexPage.h.

Member Function Documentation

@@ -159,7 +160,8 @@ Additional Inherited Members
- +
Examples:
CompPage.ino.
+

Definition at line 55 of file NexPage.cpp.

@@ -186,7 +188,8 @@ Additional Inherited Members - +
Examples:
CompPage.ino.
+

Definition at line 33 of file NexPage.cpp.

@@ -198,7 +201,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_picture-members.html b/doc/API-html/class_nex_picture-members.html index e5eb446..376bdf0 100644 --- a/doc/API-html/class_nex_picture-members.html +++ b/doc/API-html/class_nex_picture-members.html @@ -72,7 +72,7 @@ diff --git a/doc/API-html/class_nex_picture.html b/doc/API-html/class_nex_picture.html index b066c7f..2e69cdb 100644 --- a/doc/API-html/class_nex_picture.html +++ b/doc/API-html/class_nex_picture.html @@ -127,7 +127,8 @@ Additional Inherited Members

Detailed Description

NexPicture,subclass of NexTouch,provides simple methods to control picture component.

- +
Examples:
CompPicture.ino.
+

Definition at line 25 of file NexPicture.h.

Member Function Documentation

@@ -162,7 +163,8 @@ Additional Inherited Members - +
Examples:
CompPicture.ino.
+

Definition at line 72 of file NexPicture.cpp.

@@ -188,13 +190,15 @@ Additional Inherited Members -

true - success.

Return values
+
Return values
+
true- success.
false- failed.
- +
Examples:
CompPicture.ino.
+

Definition at line 35 of file NexPicture.cpp.

@@ -227,7 +231,8 @@ Additional Inherited Members
- +
Examples:
CompPicture.ino.
+

Definition at line 52 of file NexPicture.cpp.

@@ -239,7 +244,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_pointer-members.html b/doc/API-html/class_nex_pointer-members.html index afebed7..ef508fb 100644 --- a/doc/API-html/class_nex_pointer-members.html +++ b/doc/API-html/class_nex_pointer-members.html @@ -70,7 +70,7 @@ diff --git a/doc/API-html/class_nex_pointer.html b/doc/API-html/class_nex_pointer.html index 5718970..56a3987 100644 --- a/doc/API-html/class_nex_pointer.html +++ b/doc/API-html/class_nex_pointer.html @@ -120,7 +120,8 @@ Additional Inherited Members

Detailed Description

NexPointer,subclass of NexTouch,provides simple methods to control pointer component.

- +
Examples:
CompPointer.ino.
+

Definition at line 10 of file NexPointer.h.

Member Function Documentation

@@ -151,7 +152,8 @@ Additional Inherited Members - +
Examples:
CompPointer.ino.
+

Definition at line 20 of file NexPointer.cpp.

@@ -184,7 +186,8 @@ Additional Inherited Members - +
Examples:
CompPointer.ino.
+

Definition at line 37 of file NexPointer.cpp.

@@ -196,7 +199,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_progress_bar-members.html b/doc/API-html/class_nex_progress_bar-members.html index db145f7..a82863b 100644 --- a/doc/API-html/class_nex_progress_bar-members.html +++ b/doc/API-html/class_nex_progress_bar-members.html @@ -70,7 +70,7 @@ diff --git a/doc/API-html/class_nex_progress_bar.html b/doc/API-html/class_nex_progress_bar.html index d64a444..f6e0d83 100644 --- a/doc/API-html/class_nex_progress_bar.html +++ b/doc/API-html/class_nex_progress_bar.html @@ -120,7 +120,8 @@ Additional Inherited Members

Detailed Description

NexProgressBar,subclass of NexTouch,provides simple methods to control progress bar component.

- +
Examples:
CompProgressBar.ino.
+

Definition at line 25 of file NexProgressBar.h.

Member Function Documentation

@@ -151,7 +152,8 @@ Additional Inherited Members - +
Examples:
CompProgressBar.ino.
+

Definition at line 35 of file NexProgressBar.cpp.

@@ -184,7 +186,8 @@ Additional Inherited Members - +
Examples:
CompProgressBar.ino.
+

Definition at line 52 of file NexProgressBar.cpp.

@@ -196,7 +199,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_slice-members.html b/doc/API-html/class_nex_slice-members.html index 2368b04..3656440 100644 --- a/doc/API-html/class_nex_slice-members.html +++ b/doc/API-html/class_nex_slice-members.html @@ -70,7 +70,7 @@ diff --git a/doc/API-html/class_nex_slice.html b/doc/API-html/class_nex_slice.html index b3ae5e5..33b9d9f 100644 --- a/doc/API-html/class_nex_slice.html +++ b/doc/API-html/class_nex_slice.html @@ -121,7 +121,8 @@ Additional Inherited Members

Detailed Description

NexSlice,subclass of NexTouch,provides simple methods to control slice component.

- +
Examples:
CompSlice.ino.
+

Definition at line 25 of file NexSlice.h.

Member Function Documentation

@@ -156,7 +157,8 @@ Additional Inherited Members - +
Examples:
CompSlice.ino.
+

Definition at line 72 of file NexSlice.cpp.

@@ -168,7 +170,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_text-members.html b/doc/API-html/class_nex_text-members.html index 02bb96d..10590b4 100644 --- a/doc/API-html/class_nex_text-members.html +++ b/doc/API-html/class_nex_text-members.html @@ -72,7 +72,7 @@ diff --git a/doc/API-html/class_nex_text.html b/doc/API-html/class_nex_text.html index cee9b17..2e2652c 100644 --- a/doc/API-html/class_nex_text.html +++ b/doc/API-html/class_nex_text.html @@ -127,7 +127,8 @@ Additional Inherited Members

Detailed Description

NexText,subclass of NexTouch,provides simple methods to control text component.

- +
Examples:
CompText.ino.
+

Definition at line 25 of file NexText.h.

Member Function Documentation

@@ -200,7 +201,8 @@ Additional Inherited Members
Returns
the the length of text value buffer.
- +
Examples:
CompText.ino.
+

Definition at line 35 of file NexText.cpp.

@@ -233,7 +235,8 @@ Additional Inherited Members - +
Examples:
CompText.ino.
+

Definition at line 53 of file NexText.cpp.

@@ -245,7 +248,7 @@ Additional Inherited Members diff --git a/doc/API-html/class_nex_touch-members.html b/doc/API-html/class_nex_touch-members.html index 0627a9b..ad297ba 100644 --- a/doc/API-html/class_nex_touch-members.html +++ b/doc/API-html/class_nex_touch-members.html @@ -67,7 +67,7 @@ diff --git a/doc/API-html/class_nex_touch.html b/doc/API-html/class_nex_touch.html index b274ed0..34cae4a 100644 --- a/doc/API-html/class_nex_touch.html +++ b/doc/API-html/class_nex_touch.html @@ -116,7 +116,7 @@ Static Public Member Functions

Detailed Description

Root Class of Nextion Components.

-
Examples:
CompHotspot.ino.
+
Examples:
CompButton.ino, CompHotspot.ino, CompPage.ino, CompPicture.ino, CompPointer.ino, CompProgressBar.ino, CompSlice.ino, and CompText.ino.

Definition at line 63 of file NexTouch.h.

Constructor & Destructor Documentation

@@ -181,7 +181,7 @@ Static Public Member Functions cid- component id. name- component name. pop- pop event function pointer. - pop_str- the parameter was transmitted to pop event function pointer. + pop_ptr- the parameter was transmitted to pop event function pointer. push- push event function pointer. push_ptr- the parameter was transmitted to push event function pointer. @@ -477,7 +477,7 @@ Static Public Member Functions diff --git a/doc/API-html/classes.html b/doc/API-html/classes.html index 84fdc74..3c37e92 100644 --- a/doc/API-html/classes.html +++ b/doc/API-html/classes.html @@ -63,7 +63,7 @@ diff --git a/doc/API-html/dir_0726b97e666c2e7f518aadd1fe5118dc.html b/doc/API-html/dir_0726b97e666c2e7f518aadd1fe5118dc.html index 7745013..b1d9a48 100644 --- a/doc/API-html/dir_0726b97e666c2e7f518aadd1fe5118dc.html +++ b/doc/API-html/dir_0726b97e666c2e7f518aadd1fe5118dc.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_376a8598cfd3d58455c161124a3e8051.html b/doc/API-html/dir_376a8598cfd3d58455c161124a3e8051.html index 0abf4fb..d83f370 100644 --- a/doc/API-html/dir_376a8598cfd3d58455c161124a3e8051.html +++ b/doc/API-html/dir_376a8598cfd3d58455c161124a3e8051.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_7962cac16a99e8bbaaea18abede03fcb.html b/doc/API-html/dir_7962cac16a99e8bbaaea18abede03fcb.html index 7fec5c5..b6c4565 100644 --- a/doc/API-html/dir_7962cac16a99e8bbaaea18abede03fcb.html +++ b/doc/API-html/dir_7962cac16a99e8bbaaea18abede03fcb.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_9bbf8342b0f9a157b7af08fe1412fc17.html b/doc/API-html/dir_9bbf8342b0f9a157b7af08fe1412fc17.html index 4b7bfda..a32a019 100644 --- a/doc/API-html/dir_9bbf8342b0f9a157b7af08fe1412fc17.html +++ b/doc/API-html/dir_9bbf8342b0f9a157b7af08fe1412fc17.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_c918e8bf3fc71f849978cdb0d900e61c.html b/doc/API-html/dir_c918e8bf3fc71f849978cdb0d900e61c.html index 5542eaa..3154190 100644 --- a/doc/API-html/dir_c918e8bf3fc71f849978cdb0d900e61c.html +++ b/doc/API-html/dir_c918e8bf3fc71f849978cdb0d900e61c.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_ce36ac18ad3deaf5eae0bd2e09775a7d.html b/doc/API-html/dir_ce36ac18ad3deaf5eae0bd2e09775a7d.html index 804db65..cc3646c 100644 --- a/doc/API-html/dir_ce36ac18ad3deaf5eae0bd2e09775a7d.html +++ b/doc/API-html/dir_ce36ac18ad3deaf5eae0bd2e09775a7d.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_d28a4824dc47e487b107a5db32ef43c4.html b/doc/API-html/dir_d28a4824dc47e487b107a5db32ef43c4.html index de617c8..e88d91f 100644 --- a/doc/API-html/dir_d28a4824dc47e487b107a5db32ef43c4.html +++ b/doc/API-html/dir_d28a4824dc47e487b107a5db32ef43c4.html @@ -70,7 +70,7 @@ Directories diff --git a/doc/API-html/dir_f3d39c87bc262720c50d5e3885667b8a.html b/doc/API-html/dir_f3d39c87bc262720c50d5e3885667b8a.html index 0348f55..6fe3bb9 100644 --- a/doc/API-html/dir_f3d39c87bc262720c50d5e3885667b8a.html +++ b/doc/API-html/dir_f3d39c87bc262720c50d5e3885667b8a.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/dir_f76977d9ffe8ddf3ad01f3d689aa5df4.html b/doc/API-html/dir_f76977d9ffe8ddf3ad01f3d689aa5df4.html index 7acc7ea..66b6b39 100644 --- a/doc/API-html/dir_f76977d9ffe8ddf3ad01f3d689aa5df4.html +++ b/doc/API-html/dir_f76977d9ffe8ddf3ad01f3d689aa5df4.html @@ -56,7 +56,7 @@ Files diff --git a/doc/API-html/examples.html b/doc/API-html/examples.html index 8ab0fb3..1099196 100644 --- a/doc/API-html/examples.html +++ b/doc/API-html/examples.html @@ -44,15 +44,27 @@
Here is a list of all examples:
diff --git a/doc/API-html/files.html b/doc/API-html/files.html index edbee78..110b41c 100644 --- a/doc/API-html/files.html +++ b/doc/API-html/files.html @@ -91,7 +91,7 @@ diff --git a/doc/API-html/functions.html b/doc/API-html/functions.html index c7e09ea..dcb3a9a 100644 --- a/doc/API-html/functions.html +++ b/doc/API-html/functions.html @@ -201,7 +201,7 @@ diff --git a/doc/API-html/functions_func.html b/doc/API-html/functions_func.html index dbe86f1..e1d5f2d 100644 --- a/doc/API-html/functions_func.html +++ b/doc/API-html/functions_func.html @@ -201,7 +201,7 @@ diff --git a/doc/API-html/globals.html b/doc/API-html/globals.html index 1634953..db00c78 100644 --- a/doc/API-html/globals.html +++ b/doc/API-html/globals.html @@ -64,7 +64,7 @@ diff --git a/doc/API-html/globals_func.html b/doc/API-html/globals_func.html index 8b9265f..181d718 100644 --- a/doc/API-html/globals_func.html +++ b/doc/API-html/globals_func.html @@ -64,7 +64,7 @@ diff --git a/doc/API-html/hierarchy.html b/doc/API-html/hierarchy.html index 665169e..3720bc2 100644 --- a/doc/API-html/hierarchy.html +++ b/doc/API-html/hierarchy.html @@ -67,7 +67,7 @@ diff --git a/doc/API-html/index.hhc b/doc/API-html/index.hhc index 4eec800..e5c8d8f 100644 --- a/doc/API-html/index.hhc +++ b/doc/API-html/index.hhc @@ -4,7 +4,7 @@ diff --git a/doc/API-html/index.hhk b/doc/API-html/index.hhk index 79eaafc..95a0e93 100644 --- a/doc/API-html/index.hhk +++ b/doc/API-html/index.hhk @@ -106,7 +106,6 @@
  • -
  • +
  • diff --git a/doc/API-html/index.hhp b/doc/API-html/index.hhp index 8327a71..82ae6a3 100644 --- a/doc/API-html/index.hhp +++ b/doc/API-html/index.hhp @@ -13,8 +13,14 @@ Title=API main="API","index.hhc","index.hhk","index.html","index.html",,,,,0x23520,,0x10387e,,,,,,,,0 [FILES] +_comp_button_8ino-example.html _comp_hotspot_8ino-example.html -_nex_touch_8cpp-example.html +_comp_page_8ino-example.html +_comp_picture_8ino-example.html +_comp_pointer_8ino-example.html +_comp_progress_bar_8ino-example.html +_comp_slice_8ino-example.html +_comp_text_8ino-example.html _comp_button_8ino_source.html _comp_hotspot_8ino_source.html _comp_page_8ino_source.html diff --git a/doc/API-html/index.html b/doc/API-html/index.html index ca07b2f..5dfe7aa 100644 --- a/doc/API-html/index.html +++ b/doc/API-html/index.html @@ -43,10 +43,35 @@
    API Documentation
    -
    +

    Nextion Library for Arduino

    +

    Nextion Arduino library provides an easy-to-use way to manipulate Nextion serial displays. Users can use the libarry freely, either in commerical projects or open-source prjects, without any additional condiitons.

    +

    For more information about the Nextion display project, please visit the wiki。 The wiki provdies all the necessary technical documnets, quick start guide, tutorials, demos, as well as some useful resources.

    +

    To get your Nextion display, please visit iMall.

    +

    To discuss the project? Request new features? Report a BUG? please visit the Forums

    +

    Source

    +

    Latest source code can be download at https://github.com/itead/ITEADLIB_Arduino_Nextion.

    +

    You can clone it by:

    git clone https://github.com/itead/ITEADLIB_Arduino_Nextion
    +

    Hareware requirement

    + +

    Suppported Mainboards:

    + +
    +

    DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004

    +

    Copyright (C) 2014 ITEAD Studio

    +

    Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.

       DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 
    +

    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

    +

    0. You just DO WHAT THE FUCK YOU WANT TO.

    +
    +
    diff --git a/doc/API-html/md_readme.html b/doc/API-html/md_readme.html index 702e1a7..1192c4e 100644 --- a/doc/API-html/md_readme.html +++ b/doc/API-html/md_readme.html @@ -4,7 +4,7 @@ -API: Nextion Library for Arduino +API: readme @@ -40,37 +40,13 @@
    -
    Nextion Library for Arduino
    +
    readme
    -

    Nextion Arduino library provides an easy-to-use way to manipulate Nextion serial displays. Users can use the libarry freely, either in commerical projects or open-source prjects, without any additional condiitons.

    -

    For more information about the Nextion display project, please visit the wiki。 The wiki provdies all the necessary technical documnets, quick start guide, tutorials, demos, as well as some useful resources.

    -

    To get your Nextion display, please visit iMall.

    -

    To discuss the project? Request new features? Report a BUG? please visit the Forums

    -

    Source

    -

    Latest source code can be download at https://github.com/itead/ITEADLIB_Arduino_Nextion.

    -

    You can clone it by:

    git clone https://github.com/itead/ITEADLIB_Arduino_Nextion
    -

    Hareware requirement

    -
      -
    • RAM: not less than 2KBytes
    • -
    • Serial: two serial (communication and debug)
    • -
    -

    Suppported Mainboards:

    -
      -
    • Iteaduino MEGA2560
    • -
    • Arduino MEGA2560
    • -
    -
    -

    DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004

    -

    Copyright (C) 2014 ITEAD Studio

    -

    Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.

       DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 
    -

    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

    -

    0. You just DO WHAT THE FUCK YOU WANT TO.

    -
    -
    +
    diff --git a/doc/API-html/pages.html b/doc/API-html/pages.html index fdd800d..39a379b 100644 --- a/doc/API-html/pages.html +++ b/doc/API-html/pages.html @@ -45,13 +45,13 @@
    Here is a list of all related documentation pages:
    diff --git a/doc/API-html/readme_8md_source.html b/doc/API-html/readme_8md_source.html index ff634bf..2a88d72 100644 --- a/doc/API-html/readme_8md_source.html +++ b/doc/API-html/readme_8md_source.html @@ -49,62 +49,64 @@
    readme.md
    -
    1 # Nextion Library for Arduino
    +
    1 @mainpage
    2 
    -
    3 Nextion Arduino library provides an easy-to-use way to manipulate Nextion serial displays.
    -
    4 Users can use the libarry freely, either in commerical projects or open-source prjects, without any additional condiitons.
    -
    5 
    -
    6 For more information about the Nextion display project, please visit [the wiki。](http://wiki.iteadstudio.com/Nextion_HMI_Solution)
    -
    7 The wiki provdies all the necessary technical documnets, quick start guide, tutorials, demos, as well as some useful resources.
    -
    8 
    -
    9 To get your Nextion display, please visit [iMall.](http://imall.itead.cc/display/nextion.html)
    +
    3 # Nextion Library for Arduino
    +
    4 
    +
    5 Nextion Arduino library provides an easy-to-use way to manipulate Nextion serial displays.
    +
    6 Users can use the libarry freely, either in commerical projects or open-source prjects, without any additional condiitons.
    +
    7 
    +
    8 For more information about the Nextion display project, please visit [the wiki。](http://wiki.iteadstudio.com/Nextion_HMI_Solution)
    +
    9 The wiki provdies all the necessary technical documnets, quick start guide, tutorials, demos, as well as some useful resources.
    10 
    -
    11 To discuss the project? Request new features? Report a BUG? please visit the [Forums](http://support.iteadstudio.com/discussions/1000058038)
    +
    11 To get your Nextion display, please visit [iMall.](http://imall.itead.cc/display/nextion.html)
    12 
    -
    13 ​
    -
    14 # Source
    -
    15 
    -
    16 Latest source code can be download at https://github.com/itead/ITEADLIB_Arduino_Nextion.
    +
    13 To discuss the project? Request new features? Report a BUG? please visit the [Forums](http://support.iteadstudio.com/discussions/1000058038)
    +
    14 
    +
    15 ​
    +
    16 # Source
    17 
    -
    18 You can clone it by:
    +
    18 Latest source code can be download at https://github.com/itead/ITEADLIB_Arduino_Nextion.
    19 
    -
    20  git clone https://github.com/itead/ITEADLIB_Arduino_Nextion
    +
    20 You can clone it by:
    21 
    -
    22 # Hareware requirement
    +
    22  git clone https://github.com/itead/ITEADLIB_Arduino_Nextion
    23 
    -
    24  - RAM: not less than 2KBytes
    -
    25  - Serial: two serial (communication and debug)
    -
    26 
    -
    27 # Suppported Mainboards:
    +
    24 # Hareware requirement
    +
    25 
    +
    26  - RAM: not less than 2KBytes
    +
    27  - Serial: two serial (communication and debug)
    28 
    -
    29  - Iteaduino MEGA2560
    -
    30  - Arduino MEGA2560
    -
    31 
    -
    32 
    -
    33 -------------------------------------------------------------------------------
    +
    29 # Suppported Mainboards:
    +
    30 
    +
    31  - Iteaduino MEGA2560
    +
    32  - Arduino MEGA2560
    +
    33 
    34 
    -
    35 
    -
    36  DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    -
    37  Version 2, December 2004
    -
    38 
    -
    39  Copyright (C) 2014 ITEAD Studio
    +
    35 -------------------------------------------------------------------------------
    +
    36 
    +
    37 
    +
    38  DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    +
    39  Version 2, December 2004
    40 
    -
    41  Everyone is permitted to copy and distribute verbatim or modified
    -
    42  copies of this license document, and changing it is allowed as long
    -
    43  as the name is changed.
    -
    44 
    -
    45  DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    -
    46 
    -
    47  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
    -
    48 
    -
    49  0. You just DO WHAT THE FUCK YOU WANT TO.
    +
    41  Copyright (C) 2014 ITEAD Studio
    +
    42 
    +
    43  Everyone is permitted to copy and distribute verbatim or modified
    +
    44  copies of this license document, and changing it is allowed as long
    +
    45  as the name is changed.
    +
    46 
    +
    47  DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    +
    48 
    +
    49  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
    50 
    -
    51 
    -
    52 -------------------------------------------------------------------------------
    +
    51  0. You just DO WHAT THE FUCK YOU WANT TO.
    +
    52 
    +
    53 
    +
    54 -------------------------------------------------------------------------------
    diff --git a/doc/API.chm b/doc/API.chm index 349e4fe..9202020 100644 Binary files a/doc/API.chm and b/doc/API.chm differ diff --git a/examples/CompButton/CompButton.ino b/examples/CompButton/CompButton.ino index 44627cf..e1f69ee 100644 --- a/examples/CompButton/CompButton.ino +++ b/examples/CompButton/CompButton.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompButton.ino * * @par Show how to use API of class NexButton. * diff --git a/examples/CompPage/CompPage.ino b/examples/CompPage/CompPage.ino index 5ce07ff..e8105c4 100644 --- a/examples/CompPage/CompPage.ino +++ b/examples/CompPage/CompPage.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompPage.ino * * @par Show how to use API of class NexPage. * diff --git a/examples/CompPicture/CompPicture.ino b/examples/CompPicture/CompPicture.ino index 74d4d99..a727f98 100644 --- a/examples/CompPicture/CompPicture.ino +++ b/examples/CompPicture/CompPicture.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompPicture.ino * * @par Show how to use API of class NexPicture. * diff --git a/examples/CompPointer/CompPointer.ino b/examples/CompPointer/CompPointer.ino index f47a37f..8d0e7ca 100644 --- a/examples/CompPointer/CompPointer.ino +++ b/examples/CompPointer/CompPointer.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompPointer.ino * * @par Show how to use API of class NexPointer. * diff --git a/examples/CompProgressBar/CompProgressBar.ino b/examples/CompProgressBar/CompProgressBar.ino index 09b6988..d68533c 100644 --- a/examples/CompProgressBar/CompProgressBar.ino +++ b/examples/CompProgressBar/CompProgressBar.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompProgressBar.ino * * @par Show how to use API of class NexProgressBar. * diff --git a/examples/CompSlice/CompSlice.ino b/examples/CompSlice/CompSlice.ino index a5ec8c1..d8d19bd 100644 --- a/examples/CompSlice/CompSlice.ino +++ b/examples/CompSlice/CompSlice.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompSlice.ino * * @par Show how to use API of class NexSlice. * diff --git a/examples/CompText/CompText.ino b/examples/CompText/CompText.ino index daba38b..a22807f 100644 --- a/examples/CompText/CompText.ino +++ b/examples/CompText/CompText.ino @@ -1,5 +1,5 @@ /** - * @example NexTouch.cpp + * @example CompText.ino * * @par Show how to use API of class NexText. * diff --git a/readme.md b/readme.md index fb50df7..60c907a 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,5 @@ +@mainpage + # Nextion Library for Arduino Nextion Arduino library provides an easy-to-use way to manipulate Nextion serial displays.