Home > Software engineering >  Zigbee communication
Zigbee communication

Time:10-13

How will the value of the temperature and humidity, DHT11 through a zigbee is passed to another zigbee and displayed on the 1602

 
Write_com (0 x82);
Write_data (0 x30 + U8T_data_H/10);
Write_com (0 x83);
Write_data (0 x30 + U8T_data_H % 10);


Write_com (0 x80 + 0 x43);
Write_data (0 x30 + U8RH_data_H/10);
Write_com (0 x80 + 0 x44);
Write_data (0 x30 + U8RH_data_H % 10);

CodePudding user response:

The problem is divided into two blocks:
1. The communication between modules
2. The display is the controller module (SCM) deal with
  • Related