Posts

Showing posts with the label Matplotlib

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...

💽 Disk Space Analyzer GUI App in Python – FuzzuTech | Analyze Your Drives with Live Pie Charts!

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Code : import customtkinter as ctk import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg import psutil import shutil # Appearance ctk.set_appearance_mode("System") ctk.set_default_color_theme("blue") # GUI app = ctk.CTk() app.title("Disk Space Analyzer - FuzzuTech") app.geometry("600x500") app.resizable(False, False) # Title title = ctk.CTkLabel(app, text="💾 Disk Space Analyzer", font=("Arial Black", 22)) title.pack(pady=20) # Frame for pie chart frame = ctk.CTkFrame(app, width=600, height=400) frame.pack(pady=10) # Pie chart generation def show_pie_chart():     for widget in frame.winfo_children():         widget.destroy()     partitions = psutil.disk_partitions()     labels, sizes = [], []     for part in partitions:         try:             usage = shutil.disk_usage(part.mountpoint)    ...

Typing Speed Visualizer – Real-Time Python App with Live WPM Graph | FuzzuTech

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Code : import tkinter as tk from tkinter import ttk import time import threading import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg class TypingVisualizer:     def __init__(self):         self.root = tk.Tk()         self.root.title("Typing Speed Visualizer - FuzzuTech")         self.root.geometry("650x700")         self.root.config(bg="#0f172a")         self.text_input = tk.Text(self.root, height=10, font=("Consolas", 14), bg="#1e293b", fg="white", insertbackground="white")         self.text_input.pack(padx=20, pady=(30, 10), fill=tk.X)         self.stats_label = tk.Label(self.root, text="WPM: 0 | Accuracy: 100%", font=("Arial", 12), fg="white", bg="#0f172a")         self.stats_label.pack()         self.fig, self.ax = ...