Add functions for new items based on the IDE.

This commit is contained in:
huangxiaoming
2016-09-27 16:04:39 +08:00
parent d6c42dbf62
commit f104dd861b
31 changed files with 3345 additions and 33 deletions

4
NexCrop.cpp Normal file → Executable file
View File

@@ -20,7 +20,7 @@ NexCrop::NexCrop(uint8_t pid, uint8_t cid, const char *name)
{
}
bool NexCrop::getPic(uint32_t *number)
bool NexCrop::Get_background_crop_picc(uint32_t *number)
{
String cmd = String("get ");
cmd += getObjName();
@@ -29,7 +29,7 @@ bool NexCrop::getPic(uint32_t *number)
return recvRetNumber(number);
}
bool NexCrop::setPic(uint32_t number)
bool NexCrop::Set_background_crop_picc(uint32_t number)
{
char buf[10] = {0};
String cmd;