Playing with arduino without hardware

tinkercad

 

This is my video 3 years ago, but I think this is always a fun way to play with Arduino, you can do it everywhere, and every time you want to test something with Arduino, with tinkercad you can interact with sensors, passive component, power supply, and so on.

It is convenient if you have an idea in your mind and want to test something but you don’t have hardware around you, with simple drag and drop and also interaction with buttons etc, you can have the feel as you do with real hardware

If you are a student, or hobbyist who likes playing and programming with hardware you must try tinkercad, it is free and web-based, you only need an internet connection to play around

Related: The 2026 Hardware Revolution: Arduino, Edge AI, and Matter 1.4.

Related: The Future of DIY Hardware: Arduino meets Edge AI (2026 Edition).

Script for text finder inside excel file

Susiloharjo

I made a Python script to look at some text inside my Excel file, this script can look at multiple Excel files inside a folder row by row and sheet by sheet, i use this with google collabs combined with google drive to store the file. you can find the code here at my github. … Read more

Popular IoT Platforms Used by Big Companies

Platform Features Scalability Number of Subscribers Companies Using Amazon AWS IoT Core – Device connectivity to the cloud – Device management – Security – Data analysis – Application development Large scale – Handles millions of devices 1 million+ Amazon, Philips, Siemens, GE Healthcare, Honeywell Google Cloud IoT – Device connectivity to the cloud – Device … Read more

Choosing the right chart for data visualization

chart

Bar and Column Charts: These charts shine when comparing distinct groups or categories. Bar charts excel at showcasing differences between categories and tracking changes over time. Perfect for representing categorical data. Pie Charts: These charts are designed to display the proportions or percentages of a whole. Ideal for nominal or ordinal categories. However, stick to … Read more

Add heroicons in nextjs

Install library Related: howto install fortinet client on ubuntu 22.04. Related: How to Install OpenClaw on Ubuntu Server: A Step-by-Step Guide. npm install @heroicons/react Howto use import { BeakerIcon } from ‘@heroicons/react/24/solid’ function MyComponent() { return ( <div> <BeakerIcon className=”h-6 w-6 text-blue-500″ /> <p>…</p> </div> ) }