Introduction - If you have any usage issues, please Google them yourself
Pinyin input method query function: unsigned char code * py_ime (unsigned char input_py_val[]);
Input_py_val is an input pinyin code string head pointer,
The starting address of the return value is Chinese, when is 0, the query failed
Application examples:
{
Unsigned char input_string[]={"bang"};
Unsigned char chines_string[100];
Sprintf (chines_string, "%s", py_ime (input_string));
}