Posts

Showing posts from September, 2025

Python ML Hand Gesture Control GUI 🖐 | Control PC with Gestures (No CV2/No Mediapipe)

Image
  Demo : Click Video 👇👇👇 Features: Hand gestures mapped to PC actions (Launch apps, Show desktop, Lock screen) Modern GUI with Dark Mode Works with ML model or Random Simulation Code : import customtkinter as ctk import imageio import threading import numpy as np import pyautogui from PIL import Image, ImageTk import tensorflow as tf import os import random # ===== GUI Settings ===== ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class GestureApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Fuzzu ML Hand Gesture Control (No CV2/No Mediapipe)")         self.geometry("500x500")         self.resizable(False, False)         # Camera         self.camera = None         self.gesture_enabled = False         # Title         self.la...

Python IoT Smart Energy Meter GUI (CTkinter + MQTT) — Live Power, kWh & Daily Cost

Image
  Demo : Click Video 👇👇👇 Slug: python-iot-smart-energy-meter-ctkinter-mqtt-live-power-cost Description : Build a Python IoT Smart Energy Meter GUI (CTkinter + MQTT) with live charts, kWh & daily cost estimate. Demo Mode included. Code & setup inside. Features : Hero image: GUI dashboard screenshot (dark glass UI + chart) Intro: what/why + 5-line value pitch Features: KPI cards, live chart, tariff → cost/day, Demo Mode, MQTT topic/broker Quick Start: install, run, default broker/topic, JSON payload example Code Embed: main.py snippet + repo link Use Cases: home audit, student projects, ESP32/RPi CTA: Subscribe to FuzzuTech; comment “BILL ₹ SAVED” for assets FAQ: MQTT not available? Use Demo Mode; change tariff? Code : # -*- coding: utf-8 -*- """ FuzzuTech — IoT Smart Energy Meter GUI Modern + Stylish + Attractive (CustomTkinter) with MQTT subscribe + live chart. - Dark theme, glassy cards, neon accents - Real-time power line-chart (las...