Huawei’s Smart Home Strategy: What Drives Its Success?

Compared to Huawei’s position in the smartphone market, its smart home business is not as prominent. However, at the AWE (China Household Appliances and Consumer Electronics Expo), smartphones naturally do not take center stage; instead, home appliances are in the spotlight. Therefore, after launching the Matebook products at MWC and before the P20 smartphone release … Read more

The Challenges Facing Smart Home Development in 2020

Regarding the statement “smart homes have great prospects,” readers may have grown tired of hearing it in recent years. According to data provided by 36kr, the scale of China’s smart home market has been steadily increasing from 2015 to 2023, and by 2020, it is expected to exceed 200 billion yuan. Especially with the gradual … Read more

The True Explosion of Smart Home: A Need for a Popularization Battle

Produced by Internet Analysis SalonWritten by Dai Xihai Edited by HEThe AWE (China Household Appliances and Consumer Electronics Expo) is about to be held, and discussions about smart homes are heating up. When people talk about smart homes, they often confuse two concepts: point solutions and whole-house systems. Currently, point solutions represented by companies like … Read more

Smart Home or Foolish Home?

In the last issue of >>> Advanced Windows and Doors <<<, it was mentioned that in the latest season of “Dream Home Makeover,” there was an episode about the renovation of a school district house that utilized moorgen’s smart lighting system. Different working modes will have different lighting to adapt to the current scene. Everyone … Read more

The Impact of Smart Home Technology on Relationships

A while ago, a female reader complained to us about a minor issue. While dating her boyfriend, they had purchased some smart home appliances to keep up with the trend. During the setup, her boyfriend, wanting to showcase his “masculine strength,” bound all the devices to his phone for initialization. However, due to their unfamiliarity … Read more

Cutting-Edge Technology: Edge Computing Applications of ABB PLC for Intelligent On-Site Decision Making

In the wave of Industry 4.0, the intelligence of equipment has become a key factor in the upgrade of the manufacturing industry. Today, let’s discuss the application of ABB PLC in the field of edge computing and see how to enable production lines to have the ability to “think autonomously”. What is Edge Computing? Think … Read more

TrouBLE: Implementation of Host Layer for Bluetooth Low Energy (BLE)

Experimental Integration of Tauri and Verso Verso is a browser based on the Servo rendering engine written in Rust, designed to simplify its API for ease of use. With the new custom runtime <span>tauri-runtime-verso</span>, developers can easily switch runtimes. The current integration includes features of <span>tauri-cli</span>, supports the React framework, etc., but is not as … Read more

Using Ansible Playbook to Copy Multiple Files to Target Server

Using with_items to Copy Multiple Files/Directories If you want to copy multiple files, you can use with_items to iterate over them. — – hosts: all remote_user: root gather_facts: false tasks: – name : copy file copy: src: /root/{{item}} dest: /usr/local/apps/ with_items: [’45.txt’, ‘run.sh’,’node_exporter.tar.gz’] [root@ansible ~]# ansible-playbook -C copy.yaml [root@ansible ~]# ansible-playbook copy.yaml Check the copied … Read more

Ansible Installation: From Beginner to Abandonment (Part 2)

Ansible Installation There are three installation methods for Ansible: Source Installation, Distribution Installation, and Python Installation. When using either Distribution Installation or Python Installation, there are two installation packages for Ansible, which are as follows: • <span>ansible-core</span>: A minimal language and runtime package that includes a set of built-in modules and plugins. • <span>ansible</span>: A … Read more

Ansible Configuration File: From Basics to Advanced

Ansible Configuration File Ansible looks for a file named <span>ansible.cfg</span> as its configuration file. [root@ansible ansible]# ansible –version ansible [core 2.16.3] config file = /root/ansible/ansible.cfg configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /usr/local/lib/python3.12/site-packages/ansible_core-2.16.3-py3.12.egg/ansible ansible collection location = /root/.ansible/collections:/usr/share/ansible/collections executable location = /usr/local/bin/ansible python version = 3.12.8 (main, Dec 12 2024, … Read more