Getting Started with Smart Home Modules After Upgrading My Monitor

Getting Started with Smart Home Modules After Upgrading My Monitor

I don’t know if my brain was flooded back then, but I bought a cheap 2K curved screen. It looks nice, but writing code on it makes me question my life. During remote work, I finally decided to buy a 4K monitor, and I immediately felt the difference. With the adjustment of the monitor and … Read more

Coding While Parenting: Fun Embedded Hardware Insights from the Playground

Coding While Parenting: Fun Embedded Hardware Insights from the Playground

Author: Xiaoyu, Typesetting: Xiaoyu WeChat Official Account: Chip Home (ID: chiphome-dy) 01 Coding While Parenting I used to think that after work I had plenty of time, and I could still work for another two or three hours at home, feeling very motivated to learn. But after getting married and having a child, I basically … Read more

Dynamically Loading .out Files in VxWorks

Dynamically Loading .out Files in VxWorks

Click “Read the original text” to access more VxWorks resources How to dynamically load .out files under VxWorks, the following is the actual code for reference: //Device.cpp #include "other.h" #ifdef __cplusplus extern "C" { #endif int initDevice(char *arg); #ifdef __cplusplus } #endif int initDevice(char *arg) { printf("%s\n", arg); } The generated .out file needs to … Read more

5 Great Raspberry Pi Projects for Classroom Demonstrations

5 Great Raspberry Pi Projects for Classroom Demonstrations

1. Minecraft: Pi Source from Raspberry Pi Foundation. CC BY-SA 4.0[1] “Minecraft” is a game that almost every teenager loves, and it successfully captures the attention of young people, becoming one of the games that can inspire creativity among them. This Raspberry Pi version of Minecraft is not just a creative building game, but also … Read more