CN112565737B - Networking control method for three-dimensional display - Google Patents

Networking control method for three-dimensional display Download PDF

Info

Publication number
CN112565737B
CN112565737B CN202011385465.5A CN202011385465A CN112565737B CN 112565737 B CN112565737 B CN 112565737B CN 202011385465 A CN202011385465 A CN 202011385465A CN 112565737 B CN112565737 B CN 112565737B
Authority
CN
China
Prior art keywords
networking
chip
packstr
command
communication
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN202011385465.5A
Other languages
Chinese (zh)
Other versions
CN112565737A (en
Inventor
董娟
杨喜林
张恬
王欣
徐春静
王伊冬
李伟峰
张德剑
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Heilongjiang College of Construction
Original Assignee
Heilongjiang College of Construction
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Heilongjiang College of Construction filed Critical Heilongjiang College of Construction
Priority to CN202011385465.5A priority Critical patent/CN112565737B/en
Publication of CN112565737A publication Critical patent/CN112565737A/en
Application granted granted Critical
Publication of CN112565737B publication Critical patent/CN112565737B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N13/00Stereoscopic video systems; Multi-view video systems; Details thereof
    • H04N13/30Image reproducers
    • H04N13/398Synchronisation thereof; Control thereof
    • GPHYSICS
    • G08SIGNALLING
    • G08CTRANSMISSION SYSTEMS FOR MEASURED VALUES, CONTROL OR SIMILAR SIGNALS
    • G08C17/00Arrangements for transmitting signals characterised by the use of a wireless electrical link
    • G08C17/02Arrangements for transmitting signals characterised by the use of a wireless electrical link using a radio link
    • GPHYSICS
    • G08SIGNALLING
    • G08CTRANSMISSION SYSTEMS FOR MEASURED VALUES, CONTROL OR SIMILAR SIGNALS
    • G08C23/00Non-electrical signal transmission systems, e.g. optical systems
    • G08C23/04Non-electrical signal transmission systems, e.g. optical systems using light waves, e.g. infrared
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04WWIRELESS COMMUNICATION NETWORKS
    • H04W48/00Access restriction; Network selection; Access point selection
    • H04W48/08Access restriction or access information delivery, e.g. discovery data delivery
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04WWIRELESS COMMUNICATION NETWORKS
    • H04W48/00Access restriction; Network selection; Access point selection
    • H04W48/16Discovering, processing access restriction or access information

Abstract

The invention discloses a networking control method of a three-dimensional display. The method comprises the following steps: the control command pcCmd is sent through a designated networking communication serial port number COM_ESP8266, and communication command end identifiers 0x0d and 0x0a of the communication module are automatically added after the pcCmd; starting a special hardware timer ESP_TMR_ID for networking communication, and setting the timing time as iTimeOut; delaying for 1 millisecond, and executing Idle polling function Idle (); checking whether the timer esp_tmr_id times out; checking whether the networking communication serial port receives data information sent by the networking chip; and finally, delaying iDelay_ms to ensure that the system enters a stable state, and setting the value of iDelay_ms to 0. The invention improves the reliability and stability of communication between the three-dimensional display and the networking chip.

Description

Networking control method for three-dimensional display
Technical Field
The invention relates to a networking control method of a three-dimensional display, and belongs to the technical field of three-dimensional LED stereoscopic display.
Background
In the running process of the three-dimensional display, a user may change the animation effect, the text information to be displayed and the like in real time, and the modification purpose is the best choice through the mobile phone terminal APP, the applet and the WEB, so that the three-dimensional display is required to be provided with a chip which can be connected with the Internet. The specific networking mode is not limited by the WIFI network and the mobile data network, and the NBIOT mobile data network of the Internet of things is limited in communication bandwidth, an operator charges flow rate fees, networking equipment is expensive and the like, so that the wireless communication system is not suitable for a three-dimensional display. Because the three-dimensional display has the characteristics of basically fixed use places and larger use data flow, the networking equipment of the three-dimensional display is preferably a WIFI module.
At present, most three-dimensional displays adopt STM32 series singlechips as main control chips, ESP8266 is used as a networked WIFI module, and compared with a networking mechanism, a TcpIP communication protocol and a Socket network Socket programming interface system of a PC, the communication assembly and a communication program of the current singlechips and networking equipment are still not mature, related reference materials and source programs are fewer, the program design of related developers is relatively laborious, the designed program codes are lengthy, and the problems of low reliability and stability of communication exist.
Disclosure of Invention
The invention aims to provide a networking control method for a three-dimensional display, which aims to solve the problems in the prior art.
A three-dimensional stereoscopic display networking control method, comprising the following steps:
step one, a control command pcCmd is sent through a designated networking communication serial number COM_ESP8266, and communication command end identifiers 0x0d and 0x0a of a communication module are automatically added after the pcCmd;
step two, starting a special hardware timer ESP_TMR_ID for networking communication, and setting the timing time as iTimeOut;
step three, delaying for 1 millisecond, and executing Idle polling function Idle ()' of the three-dimensional display in the time;
step four, checking whether a timer ESP_TMR_ID is overtime, if so, the function does not receive a successful identification of command execution of the networking chip within a specified time, the function execution fails, 0 is returned, and the function execution is ended; if the time-out is not over, executing the fifth step;
step five, checking whether the networking communication serial port receives data information sent by the networking chip, if yes, comparing whether the information is pAckStr, if yes, successfully executing the function, returning to step 1, and ending the function execution, wherein the matching method of the data information sent by the networking chip and the pAckStr is as follows: checking whether the data from the networking chip is received in the networking communication serial port receiving data buffer area, and if not, directly returning to the step three; if the character number iPos of checking the pAckStr is set to 0, reading one byte from the received data buffer area, checking whether the character number iPos is the first byte of the pAckStr, if not, directly returning to the step three, setting the iPos value to be 1, judging whether the iPos value is the length value of the pAckStr character string, if so, indicating that the complete pAckStr character string content has been received, executing successfully, returning the function to 1 and ending; if not, returning to the third step, under the condition that the networking communication serial port receiving data buffer area is not empty, continuing to read one byte from the receiving data buffer area, checking whether the byte is the 2 nd byte of pAckStr, if not, setting the iPos value to 0, then directly returning to the third step, if so, setting the iPos value to be added with 1, and simultaneously judging whether the iPos value is the pAckStr character string length value, wherein the process is executed circularly all the time;
and step six, finally, delaying iDelay_ms to ensure that the system enters a stable state, and setting the value of iDelay_ms to 0.
Further, in the third step, the Idle polling function Idle () includes the following information: if the user key is set, detecting user key information of the system; if the infrared remote controller is arranged, detecting information received by infrared of the system; if the network communication content is detected to be received, unpacking and analyzing the data packet are carried out; if the system is provided with a capacitive display screen, carrying out identification of key values of keys of users of the capacitive display screen; if the system has an input device including a temperature sensor, an input value update calculation is performed.
Further, the parameter interfaces are as follows:
pcCmd is a control command sent to the networking chip by the main control chip;
the pAckStr is the content of a character string which is successfully executed by the command which the master control chip expects the networking chip to give a reply;
the iTimeOut is the time of waiting for the networking chip to reply to the pAckStr by the set master control chip, and the unit is milliseconds;
the iRetry is the number of times that the master control chip repeatedly sends Cmd if the master control chip does not receive pAckStr in usTimeOut, namely, if the execution of the networking chip command fails;
iDelay_ms is delay time after successful command execution, and the unit is millisecond;
the bPrintf is whether or not command execution information is output to the information print serial port.
The invention has the main advantages that: the invention provides a networking control method of a three-dimensional display, by which a program designer can realize efficient call of a networking chip, and the control process of sending an instruction to the networking chip and waiting for the reply of execution result information is simplified, so that the reliability and stability of communication between the three-dimensional display and the networking chip are improved.
Drawings
Fig. 1 is a method flow chart of a three-dimensional stereoscopic display networking control method of the invention.
Detailed Description
The following description of the embodiments of the present invention will be made clearly and completely with reference to the accompanying drawings, in which it is apparent that the embodiments described are only some embodiments of the present invention, but not all embodiments. All other embodiments, which can be made by those skilled in the art based on the embodiments of the invention without making any inventive effort, are intended to be within the scope of the invention.
Referring to fig. 1, a three-dimensional stereoscopic display networking control method includes the following steps:
step one, a control command pcCmd is sent through a designated networking communication serial number COM_ESP8266, and communication command end identifiers 0x0d and 0x0a of a communication module are automatically added after the pcCmd;
step two, starting a special hardware timer ESP_TMR_ID for networking communication, and setting the timing time as iTimeOut;
step three, delaying for 1 millisecond, and executing Idle polling function Idle ()' of the three-dimensional display in the time;
step four, checking whether a timer ESP_TMR_ID is overtime, if so, the function does not receive a successful identification of command execution of the networking chip within a specified time, the function execution fails, 0 is returned, and the function execution is ended; if the time-out is not over, executing the fifth step;
step five, checking whether the networking communication serial port receives data information sent by the networking chip, if yes, comparing whether the information is pAckStr, if yes, successfully executing the function, returning to step 1, and ending the function execution, wherein the matching method of the data information sent by the networking chip and the pAckStr is as follows: checking whether the data from the networking chip is received in the networking communication serial port receiving data buffer area, and if not, directly returning to the step three; if the character number iPos of checking the pAckStr is set to 0, reading one byte from the received data buffer area, checking whether the character number iPos is the first byte of the pAckStr, if not, directly returning to the step three, setting the iPos value to be 1, judging whether the iPos value is the length value of the pAckStr character string, if so, indicating that the complete pAckStr character string content has been received, executing successfully, returning the function to 1 and ending; if not, returning to the third step, under the condition that the networking communication serial port receiving data buffer area is not empty, continuing to read one byte from the receiving data buffer area, checking whether the byte is the 2 nd byte of pAckStr, if not, setting the iPos value to 0, then directly returning to the third step, if so, setting the iPos value to be added with 1, and simultaneously judging whether the iPos value is the pAckStr character string length value, wherein the process is executed circularly all the time;
and step six, finally, delaying iDelay_ms to ensure that the system enters a stable state, and setting the value of iDelay_ms to 0 in most applications.
Further, in the third step, the Idle polling function Idle () includes the following information: if the user key is set, detecting user key information of the system; if the infrared remote controller is arranged, detecting information received by infrared of the system; if the network communication content is detected to be received, unpacking and analyzing the data packet are carried out; if the system is provided with a capacitive display screen, carrying out identification of key values of keys of users of the capacitive display screen; if the system has an input device including a temperature sensor, an input value update calculation is performed.
Further, the important interface function ESP_SendAT_WaitResponse is used for sending a control command to the networking chip by the main control chip, and if the main control chip receives a designated command execution success character string replied from the networking chip within designated reply time, the command execution is successful, and the function returns true; if the specified reply content is not received within the specified time, retransmitting according to the user requirement, and if the execution is not successful finally, returning to false. Meanwhile, the user can set whether to output the command execution result through the networking information printing serial port. The specific parameter interfaces are as follows:
pcCmd is a control command sent to the networking chip by the main control chip;
the pAckStr is the content of a character string which is successfully executed by the command which the master control chip expects the networking chip to give a reply;
the iTimeOut is the time of waiting for the networking chip to reply to the pAckStr by the set master control chip, and the unit is milliseconds;
the iRetry is the number of times that the master control chip repeatedly sends Cmd if the master control chip does not receive pAckStr in usTimeOut, namely, if the execution of the networking chip command fails;
iDelay_ms is delay time after successful command execution, and the unit is millisecond;
the bPrintf is whether or not command execution information is output to the information print serial port.
The following are specific examples:
the invention takes ESP8266 networking chip as an example to illustrate the whole implementation process of the networking control component, and other networking chips only need to simply modify the corresponding networking command content.
The main control chip can realize that the networking chip is connected to the appointed WIFI by calling the following 4 commands, establishes TCP connection with the appointed server port, and then sets the connection as a transparent transmission mode and enters the transparent transmission mode:
1、ESP_SendAT_WaitResponse(“AT+CWJAP=WifiName,123456789”,“OK\r\n”,15000,1,0,true);
the content of the transfer parameters is as follows:
pcCmd=“AT+CWJAP=WifiName,123456789”
pAckStr=“OK\r\n”
iTimeOut=15000
iRetry=1
iDelay_ms=0
bPrintf=true
the function of the command is that the master control chip sends an instruction "at+cwijap=wifiname, 123456789" to the networking chip, the networking chip is required to be connected to a hot spot named "WifiName" by a password "123456789", the networking chip is expected and monitored to be successfully executed and a data string "ok\r\n" is replied, the monitoring duration is 15 seconds, the instruction is sent once, and the connection information is output from the information printing serial port.
2、ESP_SendAT_WaitResponse("AT+CIPSTART=TCP,192.168.0.1,8887”,“OK\r\n”,10000,1,0,true);
The content of the transfer parameters is as follows:
pcCmd=“AT+CIPSTART=TCP,192.168.0.1,8887”
pAckStr=“OK\r\n”
iTimeOut=10000
iRetry=1
iDelay_ms=0
bPrintf=true
the function of the command is that the master chip sends an instruction "at+cipstart=tcp, 192.168.0.1,8887" to the networking chip, the networking chip is required to establish a TCP connection with the server 8887 port with an IP address of 192.168.0.1, the networking chip is expected and monitored to execute successfully and reply to the data string "ok\r\n", the monitoring duration is 10 seconds, the instruction is sent only once, and the connection information is output from the information printing serial port.
3、ESP_SendAT_WaitResponse(“AT+CIPMODE=1",“OK\r\n”,5000,3,0,true);
The content of the transfer parameters is as follows:
pcCmd=“AT+CIPMODE=1”
pAckStr=“OK\r\n”
iTimeOut=5000
iRetry=3
iDelay_ms=0
bPrintf=true
the command has the effects that the main control chip sends an instruction of 'AT+CIPLMODE=1' to the networking chip, the TCP connection just established between the networking chip and the server is required to be transmitted in a transparent transmission mode, the successful execution of the networking chip is expected and monitored, the data string 'OK\r\n' is replied, the monitoring duration is 5 seconds, the main control chip sends the instruction for 3 times AT the interval of 5 seconds under the condition that the successful execution data string is not received, and the connection information is output from the information printing serial port.
4、ESP_SendAT_WaitResponse(“AT+CIPSEND",“OK\r\n”,5000,3,100,true);
The content of the transfer parameters is as follows:
pcCmd=“AT+CIPSEND”
pAckStr=“OK\r\n”
iTimeOut=5000
iRetry=3
iDelay_ms=100
bPrintf=true
the command has the function that the main control chip sends an instruction of 'AT+CIPSED' to the networking chip, the networking chip is required to enter a transparent transmission mode, the networking chip is expected and monitored to be successfully executed and the data string 'OK\r\n' is replied, the monitoring duration is 5 seconds, the main control chip sends the instruction for 3 times AT the interval of 5 seconds AT most under the condition that the successful execution data string is not received, and the connection information is output from the information printing serial port after 100 milliseconds of delay is carried out when the command is finished.

Claims (2)

1. The networking control method for the three-dimensional display is characterized by comprising the following steps of:
step one, a control command pcCmd is sent through a designated networking communication serial number COM_ESP8266, and communication command end identifiers 0x0d and 0x0a of a communication module are automatically added after the pcCmd;
step two, starting a special hardware timer ESP_TMR_ID for networking communication, and setting the timing time as iTimeOut;
step three, delaying for 1 millisecond, and executing Idle polling function Idle ()' of the three-dimensional display in the time;
step four, checking whether a timer ESP_TMR_ID is overtime, if so, the function does not receive a successful identification of command execution of the networking chip within a specified time, the function execution fails, 0 is returned, and the function execution is ended; if the time-out is not over, executing the fifth step;
step five, checking whether the networking communication serial port receives data information sent by the networking chip, if yes, comparing whether the information is pAckStr, if yes, successfully executing the function, returning to step 1, and ending the function execution, wherein the matching method of the data information sent by the networking chip and the pAckStr is as follows: checking whether the data from the networking chip is received in the networking communication serial port receiving data buffer area, and if not, directly returning to the step three; if the character number iPos of checking the pAckStr is set to 0, reading one byte from the received data buffer area, checking whether the character number iPos is the first byte of the pAckStr, if not, directly returning to the step three, setting the iPos value to be 1, judging whether the iPos value is the length value of the pAckStr character string, if so, indicating that the complete pAckStr character string content has been received, executing successfully, returning the function to 1 and ending; if not, returning to the third step, under the condition that the networking communication serial port receiving data buffer area is not empty, continuing to read one byte from the receiving data buffer area, checking whether the byte is the 2 nd byte of pAckStr, if not, setting the iPos value to 0, then directly returning to the third step, if so, setting the iPos value to be added with 1, and simultaneously judging whether the iPos value is the pAckStr character string length value, wherein the process is executed circularly all the time;
step six, finally, delaying iDelay_ms to ensure that the system enters a stable state, and setting the value of iDelay_ms to 0;
the parameter interfaces are as follows:
pcCmd is a control command sent to the networking chip by the main control chip;
the pAckStr is the content of a character string which is successfully executed by the command which the master control chip expects the networking chip to give a reply;
the iTimeOut is the time of waiting for the networking chip to reply to the pAckStr by the set master control chip, and the unit is milliseconds;
the iRetry is the number of times that the master control chip repeatedly sends Cmd if the master control chip does not receive pAckStr in usTimeOut, namely, if the execution of the networking chip command fails;
iDelay_ms is delay time after successful command execution, and the unit is millisecond;
bPrintf is whether command execution information is output to the information printing serial port;
ESP_SendAT_WaitResponse(“AT+CWJAP=WifiName,123456789”,“OK\r\n”,15000,1,0,true);
the content of the transfer parameters is as follows:
pcCmd=“AT+CWJAP=WifiName,123456789”
pAckStr=“OK\r\n”
iTimeOut=15000
iRetry=1
iDelay_ms=0
bPrintf=true
the function of the command is that the master control chip sends an instruction "at+cwijap=wifiname, 123456789" to the networking chip, the networking chip is required to be connected to a hot spot named "WifiName" by a password "123456789", the networking chip is expected and monitored to be successfully executed and a data string "ok\r\n" is replied, the monitoring duration is 15 seconds, the instruction is sent once, and the connection information is output from the information printing serial port.
2. The networking control method for three-dimensional displays according to claim 1, wherein in step three, the Idle polling function Idle () includes the following information: if the user key is set, detecting user key information of the system; if the infrared remote controller is arranged, detecting information received by infrared of the system; if the network communication content is detected to be received, unpacking and analyzing the data packet are carried out; if the system is provided with a capacitive display screen, carrying out identification of key values of keys of users of the capacitive display screen; if the system has an input device including a temperature sensor, an input value update calculation is performed.
CN202011385465.5A 2020-12-01 2020-12-01 Networking control method for three-dimensional display Active CN112565737B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011385465.5A CN112565737B (en) 2020-12-01 2020-12-01 Networking control method for three-dimensional display

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011385465.5A CN112565737B (en) 2020-12-01 2020-12-01 Networking control method for three-dimensional display

Publications (2)

Publication Number Publication Date
CN112565737A CN112565737A (en) 2021-03-26
CN112565737B true CN112565737B (en) 2024-01-30

Family

ID=75047028

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011385465.5A Active CN112565737B (en) 2020-12-01 2020-12-01 Networking control method for three-dimensional display

Country Status (1)

Country Link
CN (1) CN112565737B (en)

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2002039302A1 (en) * 2000-11-10 2002-05-16 Iready Corporation Internet modem streaming socket method
CN101144913A (en) * 2007-10-16 2008-03-19 东南大学 Three-dimensional stereo display
CN102801714A (en) * 2012-07-26 2012-11-28 杭州电子科技大学 Method for analyzing and reducing SQL (Structured Query Language) command in TNS (Transparent Network Substrate) protocol in by-pass manner
CN104317255A (en) * 2014-07-06 2015-01-28 吉林农业科技学院 Internet-of-things-based intelligent household control system
CN104936317A (en) * 2015-06-24 2015-09-23 苏州科技学院 WiFi/dual 24L01 gateway
CN105049935A (en) * 2015-07-30 2015-11-11 Tcl集团股份有限公司 Method and system for managing screen end program of modularized television
CN106304485A (en) * 2016-08-23 2017-01-04 暨南大学 Multifunctional intelligent desk lamp based on STM32 and intelligent control method thereof
CN110113403A (en) * 2019-04-28 2019-08-09 深圳市创维群欣安防科技股份有限公司 A kind of processing method, device and the computer equipment of AT instruction

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10533881B2 (en) * 2016-04-10 2020-01-14 Forum Us, Inc. Airflow sensor assembly for monitored heat exchanger system

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2002039302A1 (en) * 2000-11-10 2002-05-16 Iready Corporation Internet modem streaming socket method
CN101144913A (en) * 2007-10-16 2008-03-19 东南大学 Three-dimensional stereo display
CN102801714A (en) * 2012-07-26 2012-11-28 杭州电子科技大学 Method for analyzing and reducing SQL (Structured Query Language) command in TNS (Transparent Network Substrate) protocol in by-pass manner
CN104317255A (en) * 2014-07-06 2015-01-28 吉林农业科技学院 Internet-of-things-based intelligent household control system
CN104936317A (en) * 2015-06-24 2015-09-23 苏州科技学院 WiFi/dual 24L01 gateway
CN105049935A (en) * 2015-07-30 2015-11-11 Tcl集团股份有限公司 Method and system for managing screen end program of modularized television
CN106304485A (en) * 2016-08-23 2017-01-04 暨南大学 Multifunctional intelligent desk lamp based on STM32 and intelligent control method thereof
CN110113403A (en) * 2019-04-28 2019-08-09 深圳市创维群欣安防科技股份有限公司 A kind of processing method, device and the computer equipment of AT instruction

Non-Patent Citations (5)

* Cited by examiner, † Cited by third party
Title
esp8266中文资料汇总;匿名;《https://m.elecfans.com/article/682654.html》;20180524;全文 *
ESP8266的AT指令模块程序;大橙子疯;《https://blog.csdn.net/qq_24130227/article/details/82225719》;全文 *
基于SIP协议的智能家居网关的研究与实现;季雨枫;《中国优秀硕士学位论文全文数据库 工程科技Ⅱ辑》;20190115(第1期);第2.1、4.2.2节 *
基于STM32的家庭环境监测与控制系统设计;杨璐璐;《中国优秀硕士学位论文全文数据库 工程科技Ⅱ辑》;20200715(第7期);第4.4节 *
烂大街的ESP8266该怎么玩!;果果小师弟;《https://zhuanlan.zhihu.com/p/166536234》;20201001;全文 *

Also Published As

Publication number Publication date
CN112565737A (en) 2021-03-26

Similar Documents

Publication Publication Date Title
KR101691446B1 (en) Method, apparatus, and system for intelligently controlling device, and plug-and-play device
US9811870B2 (en) Information processing method, apparatus and payment system
WO2017113654A1 (en) Interaction method and apparatus for smart watch and wechat platform, and smart watch
CN108833950A (en) A kind of barrage message issuing method, server, system and storage medium
CN106452833B (en) Data transmission method for RTU multi-protocol dynamic loading
CN108337308B (en) Data communication method, device and system for LWM2M client and upper computer
TW202132980A (en) Distribution network method, intelligent terminal, intelligent device and computer-readable storage medium of intelligent equipment
CN113490218A (en) Pairing method, pairing device, Bluetooth remote controller, intelligent device and storage medium
CN110045705B (en) Intelligent home control method, device and system adopting heterogeneous wireless network
CN114363225B (en) MTQQ protocol-based equipment debugging mode, system and storage medium
CN112565737B (en) Networking control method for three-dimensional display
CN113965904A (en) Device registration method, device and storage medium
US8396947B2 (en) Active monitoring system for serial monitoring device and method thereof
CN112181147B (en) Small program-based wearable device interaction method and device and electronic device
CN111884938B (en) Router information acquisition method and device
CN106330397B (en) method and device for realizing data interaction by ZigBee and Modbus RTU (remote terminal Unit) protocols
CN110113430B (en) Communication method between mobile phone and raspberry pie based on cloud database
CN111141015A (en) Remote air conditioner control method
CN110798355A (en) Network distribution method and device for intelligent socket, intelligent socket and storage medium
CN102710760A (en) Embedded network terminal synchronous configuration method and equipment
CN112637370B (en) Data processing method, device, equipment and storage medium
CN114253210A (en) Json-RPC-based PLC communication system and method
CN109639830B (en) NB-IoT-based building temperature and humidity monitoring system and monitoring method applying same
CN108540847B (en) System and method for fusing one-time programming and displaying of video signal terminal production data
CN111343261A (en) Mobile phone data backup method based on wireless hotspot transmission

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant