Skip to content

dheerusri324/smartwaste360

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

184 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŒ SmartWaste360 - AI-Powered Waste Management Platform

Live Demo Backend API License API Version

A comprehensive waste management solution leveraging AI for waste classification, IoT-powered smart bin monitoring, real-time collection tracking, and community engagement. Built for smart cities and environmentally conscious communities.

๐ŸŽฏ LIVE APPLICATION

๐ŸŒ Production URLs:

โœจ Features

๐Ÿค– AI-Powered Waste Classification

  • Real-time waste type detection powered by Google Gemini AI
  • Camera integration for instant waste identification
  • Supports multiple categories: Plastic, Paper, Glass, Metal, Organic, E-waste, Textile
  • Confidence scoring and disposal recommendations

๐Ÿ“ก IoT Smart Bin Monitoring

  • ESP32 + HC-SR04 ultrasonic sensor for real-time bin fill-level detection
  • Live dashboard with fill percentage, estimated weight, and historical charts
  • Automatic collection point status updates from sensor data
  • Smart-send: data transmitted only when fill level changes (reduces bandwidth)
  • Median filtering for noise-resistant sensor readings
  • API key authentication for secure device communication

๐Ÿ—บ๏ธ Interactive Maps & Collection Points

  • Real-time colony and collection point mapping with Leaflet
  • Location-based waste collection scheduling
  • Route optimization for collectors using TSP solver with 2-opt improvement
  • Traffic-aware route planning with time-of-day adjustments

๐Ÿ‘ฅ Multi-Role Platform

  • Users: Register, classify waste, book collections, track points, view waste history
  • Collectors: Manage pickups, schedule collections, view optimized routes, analytics dashboard
  • Admins: System management, user oversight, analytics, system health monitoring

๐Ÿ“Š Real-Time Analytics

  • Comprehensive waste collection statistics and dashboards
  • Colony-wise performance tracking and leaderboards
  • Environmental impact tracking (COโ‚‚ saved, weight recycled)
  • Weekly impact summary reports

๐Ÿ”” Smart Notifications

  • 7 notification types: reminders, achievements, colony threshold alerts, collection scheduled/completed, weekly summaries, streak milestones
  • Automated inactivity reminders for engagement
  • Colony threshold alerts when bins are near capacity

๐Ÿ† Gamification & Community

  • Points-based reward system with configurable points per waste type
  • Colony leaderboards and user rankings
  • Achievement system with streak tracking
  • Colony-based competition for waste reduction

๐Ÿš€ Quick Start

For Users:

  1. Visit SmartWaste360
  2. Register a new account
  3. Start classifying waste with your camera
  4. Book waste collections in your area

For Collectors:

  1. Go to Collector Login
  2. Use your collector credentials
  3. View available pickups on the map
  4. Use the pickup scheduler for optimized routes
  5. Complete collections and update status

For Admins:

  1. Access Admin Panel
  2. Login with admin credentials
  3. Manage collectors, view analytics, oversee system health

๐Ÿ—๏ธ Project Structure

smartwaste360/
โ”œโ”€โ”€ app.py                          # Flask app factory (API v6.0.0)
โ”œโ”€โ”€ start_app.py                    # Automated startup script
โ”œโ”€โ”€ wsgi.py                         # WSGI entry point (Gunicorn)
โ”œโ”€โ”€ Procfile                        # Render deployment command
โ”œโ”€โ”€ render.yaml                     # Render service config
โ”œโ”€โ”€ vercel.json                     # Vercel deployment config
โ”œโ”€โ”€ Dockerfile                      # Container build
โ”‚
โ”œโ”€โ”€ backend/
โ”‚   โ”œโ”€โ”€ config/
โ”‚   โ”‚   โ””โ”€โ”€ database.py             # PostgreSQL connection manager
โ”‚   โ”œโ”€โ”€ routes/                     # 20 Flask Blueprints
โ”‚   โ”‚   โ”œโ”€โ”€ auth.py                 # User/Collector/Admin authentication
โ”‚   โ”‚   โ”œโ”€โ”€ waste.py                # Waste classification (Gemini AI)
โ”‚   โ”‚   โ”œโ”€โ”€ booking.py              # Collection booking system
โ”‚   โ”‚   โ”œโ”€โ”€ collector.py            # Collector operations
โ”‚   โ”‚   โ”œโ”€โ”€ admin.py                # Admin dashboard endpoints
โ”‚   โ”‚   โ”œโ”€โ”€ analytics.py            # Analytics & reporting
โ”‚   โ”‚   โ”œโ”€โ”€ iot.py                  # IoT sensor data ingestion
โ”‚   โ”‚   โ”œโ”€โ”€ colony.py               # Colony management
โ”‚   โ”‚   โ”œโ”€โ”€ collection_points.py    # Collection point CRUD
โ”‚   โ”‚   โ”œโ”€โ”€ leaderboard.py          # Rankings & leaderboards
โ”‚   โ”‚   โ”œโ”€โ”€ camera.py               # Camera/image upload
โ”‚   โ”‚   โ”œโ”€โ”€ transaction.py          # User waste transactions
โ”‚   โ”‚   โ”œโ”€โ”€ health.py               # Health check endpoint
โ”‚   โ”‚   โ””โ”€โ”€ migration.py            # Database migration runner
โ”‚   โ”œโ”€โ”€ models/                     # 12 data models
โ”‚   โ”‚   โ”œโ”€โ”€ user.py, collector.py, colony.py, booking.py
โ”‚   โ”‚   โ”œโ”€โ”€ waste.py, collection_point.py, transaction.py
โ”‚   โ”‚   โ”œโ”€โ”€ admin.py, analytics.py, achievement.py
โ”‚   โ”‚   โ””โ”€โ”€ route_optimizer.py
โ”‚   โ”œโ”€โ”€ services/                   # Business logic layer
โ”‚   โ”‚   โ”œโ”€โ”€ ml_service.py           # Gemini AI integration
โ”‚   โ”‚   โ”œโ”€โ”€ analytics_service.py    # Analytics calculations
โ”‚   โ”‚   โ”œโ”€โ”€ notification_service.py # 7 notification types
โ”‚   โ”‚   โ”œโ”€โ”€ route_optimization.py   # TSP + 2-opt route solver
โ”‚   โ”‚   โ”œโ”€โ”€ realtime_service.py     # Live stats & system health
โ”‚   โ”‚   โ””โ”€โ”€ points_service.py       # Points reward system
โ”‚   โ””โ”€โ”€ utils/                      # Validation, geo, file utilities
โ”‚
โ”œโ”€โ”€ frontend/                       # React 18 SPA
โ”‚   โ”œโ”€โ”€ src/
โ”‚   โ”‚   โ”œโ”€โ”€ pages/                  # 20 page components
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ Home, Login, Register, Dashboard
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ Camera, Maps, Leaderboard
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ IoTMonitor                          # Live sensor dashboard
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ PickupScheduler, AnalyticsDashboard  # Collector tools
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ CollectorDashboard, CollectorSettings
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ AdminLogin, AdminDashboard
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ StatsPage, WasteHistoryPage, SettingsPage
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ NotFound
โ”‚   โ”‚   โ”œโ”€โ”€ components/             # 9 component groups
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ admin/, auth/, camera/, collector/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ common/ (ProtectedRoute, LoginSelector)
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ dashboard/, layout/, leaderboard/, maps/
โ”‚   โ”‚   โ”œโ”€โ”€ services/               # 11 API service modules
โ”‚   โ”‚   โ”œโ”€โ”€ hooks/                  # Custom hooks (useApi, useCamera, useLocation, useCollectorLocation)
โ”‚   โ”‚   โ”œโ”€โ”€ context/                # AuthContext (JWT management)
โ”‚   โ”‚   โ””โ”€โ”€ store/                  # Redux state slices
โ”‚
โ”œโ”€โ”€ iot/                            # IoT Hardware
โ”‚   โ””โ”€โ”€ esp32_ultrasonic/
โ”‚       โ””โ”€โ”€ esp32_ultrasonic.ino    # ESP32 firmware (HC-SR04 sensor)
โ”‚
โ”œโ”€โ”€ database/                       # Database management
โ”‚   โ”œโ”€โ”€ schema.sql                  # Full schema (13+ tables, triggers, views)
โ”‚   โ”œโ”€โ”€ iot_migration.sql           # IoT sensor_readings table
โ”‚   โ”œโ”€โ”€ migrations/                 # Versioned migrations
โ”‚   โ””โ”€โ”€ sample_data.sql             # Seed data
โ”‚
โ”œโ”€โ”€ deployment/                     # Infrastructure
โ”‚   โ”œโ”€โ”€ Dockerfile.backend          # Backend container
โ”‚   โ”œโ”€โ”€ Dockerfile.frontend         # Frontend container
โ”‚   โ”œโ”€โ”€ docker-compose.yml          # Full stack (Nginx, Redis, Prometheus, Grafana)
โ”‚   โ”œโ”€โ”€ nginx.conf                  # Reverse proxy config
โ”‚   โ”œโ”€โ”€ deploy.sh / deploy.ps1      # Deploy scripts
โ”‚   โ””โ”€โ”€ cloud-deploy.md            # Cloud deployment guide
โ”‚
โ”œโ”€โ”€ docs/                           # Detailed guides
โ”‚   โ”œโ”€โ”€ RUN_APPLICATION.md
โ”‚   โ”œโ”€โ”€ ADVANCED_FEATURES_GUIDE.md
โ”‚   โ”œโ”€โ”€ COLLECTION_SYSTEM_GUIDE.md
โ”‚   โ”œโ”€โ”€ COLLECTION_COMPLETION_GUIDE.md
โ”‚   โ”œโ”€โ”€ PICKUP-SCHEDULER-ALGORITHM.md
โ”‚   โ””โ”€โ”€ FEATURE_ROADMAP.md
โ”‚
โ”œโ”€โ”€ tests/
โ”‚   โ””โ”€โ”€ test_suite.py               # API test suite
โ”‚
โ””โ”€โ”€ SECURITY.md                     # Security guidelines

๐Ÿ› ๏ธ Technology Stack

Frontend

  • โš›๏ธ React 18 with modern hooks & context API
  • ๐ŸŽจ Tailwind CSS with Forms & Typography plugins
  • ๐Ÿ—บ๏ธ Leaflet + React-Leaflet for interactive maps
  • ๐Ÿ“Š Recharts for data visualization
  • ๐Ÿ” JWT authentication with role-based route protection
  • ๐Ÿงญ React Router v6 with protected routes
  • ๐Ÿ“ก Axios for API communication
  • ๐ŸŽฏ Lucide React & React Icons for iconography

Backend

  • ๐Ÿ Python Flask REST API (v6.0.0)
  • ๐Ÿค– Google Gemini AI for waste classification
  • ๐Ÿ—„๏ธ PostgreSQL (Neon) with psycopg2
  • ๐Ÿ”’ Flask-JWT-Extended for authentication & authorization
  • ๐Ÿ”‘ bcrypt for password hashing
  • ๐Ÿ“ก Flask-CORS for cross-origin requests
  • ๐Ÿš€ Gunicorn WSGI server for production

IoT Layer

  • ๐Ÿ”Œ ESP32 DevKit V1 microcontroller
  • ๐Ÿ“ HC-SR04 ultrasonic distance sensor
  • ๐Ÿ“ถ WiFi (HTTP/HTTPS) for data transmission
  • ๐Ÿ” API key authentication (X-IoT-API-Key)

Deployment

  • ๐ŸŒ Frontend: Vercel (auto-deploy from GitHub)
  • ๐Ÿ”ง Backend: Render (Gunicorn, auto-deploy from GitHub)
  • ๐Ÿ—„๏ธ Database: Neon PostgreSQL (serverless)
  • ๐Ÿค– AI: Google Gemini API
  • ๐Ÿณ Self-hosting: Docker Compose (Nginx + Redis + Prometheus + Grafana)

๐Ÿ“ก IoT Integration

Hardware Setup

  • Microcontroller: ESP32 DevKit V1
  • Sensor: HC-SR04 Ultrasonic Distance Sensor
  • Purpose: Real-time bin fill-level monitoring

Wiring Diagram

HC-SR04 VCC  โ†’ ESP32 VIN (5V from USB)
HC-SR04 GND  โ†’ ESP32 GND
HC-SR04 TRIG โ†’ ESP32 GPIO 5
HC-SR04 ECHO โ†’ [1kฮฉ resistor] โ†’ ESP32 GPIO 18
                               โ†“
                           [2kฮฉ resistor]
                               โ†“
                              GND

Note: The voltage divider on the ECHO pin is required because the HC-SR04 outputs 5V logic, but ESP32 GPIO pins are 3.3V tolerant.

Data Pipeline

Sensor โ†’ ESP32 โ†’ WiFi โ†’ POST /api/iot/bin-level โ†’ PostgreSQL โ†’ IoT Monitor Dashboard

Key Features

  • Median filtering: Takes 5 samples per measurement, returns median (removes spikes)
  • Smart-send: Only transmits when fill level changes by >2% (bandwidth efficient)
  • Auto-reconnect: WiFi reconnection with retry logic
  • Error reporting: After 5 consecutive sensor errors, sends a status report so the backend knows the device is alive
  • HTTPS support: SSL for communication with deployed backend

IoT API Endpoints

Method Endpoint Description
POST /api/iot/bin-level Receive sensor data (auth required)
GET /api/iot/live/<point_name> Live fill level for dashboard (public)
GET /api/iot/readings/<colony_id> Historical readings for a colony
GET /api/iot/devices List all IoT devices with last reading

๐Ÿ”— API Routes Overview

Blueprint Prefix Description
auth /api/auth User/Collector/Admin registration & login
waste /api/waste Waste classification & logging
booking /api/booking Collection booking system
collector /api/collector Collector operations & management
admin /api/admin Admin dashboard endpoints
analytics /api/analytics Analytics & reporting
iot /api/iot IoT sensor data ingestion
colony /api/colony Colony management
collection-points /api/collection-points Collection point CRUD
leaderboard /api/leaderboard Rankings & leaderboards
camera /api/camera Camera/image upload
transaction /api/transaction Waste deposit transactions
health /health Health check
migration /api/migration Database migrations

๐Ÿ—„๏ธ Database Schema

The PostgreSQL database includes the following key tables:

Table Purpose
users User accounts with points & colony assignment
colonies Colony/community data with waste level tracking
waste_logs Waste classification records with AI predictions
collectors Collector profiles & assigned colonies
collection_bookings Scheduled/completed waste pickups
user_transactions Waste deposit records with verification codes
notifications User notifications (7 types)
points_config Configurable points per waste material
collection_points Physical bin locations with capacity tracking
sensor_readings IoT time-series data (fill %, weight, distance)

Additional features: database triggers for automatic colony point/user count updates, leaderboard views, and performance indexes.

๐ŸŽจ User Experience

Frontend Pages

Page Route Role Description
Home / Public Landing page
Login / Register /login, /register Public User authentication
Dashboard /dashboard User Personal overview
Stats /dashboard/stats User Waste statistics
Waste History /dashboard/history User Past classifications
Settings /dashboard/settings User Account settings
Camera /camera User AI waste classification
Maps /maps Public Interactive colony/collection point map
Leaderboard /leaderboard Public Colony & user rankings
IoT Monitor /iot-monitor Public Live bin fill-level dashboard
Collector Dashboard /collector/dashboard Collector Pickup management
Pickup Scheduler /collector/scheduler Collector Optimized route scheduling
Collector Analytics /collector/analytics Collector Performance analytics
Collector Settings /collector/settings Collector Profile management
Admin Dashboard /admin/dashboard Admin System management & oversight

Responsive Design

  • ๐Ÿ“ฑ Fully optimized for mobile, tablet, and desktop devices
  • ๐Ÿ‘† Touch-friendly interfaces with intuitive navigation
  • ๐Ÿ“ท Native camera integration for waste classification
  • ๐ŸŒ“ Clean, modern UI built with Tailwind CSS

Accessibility

  • โ™ฟ Semantic HTML for screen reader compatibility
  • โŒจ๏ธ Keyboard navigation support
  • ๐ŸŽฏ High contrast UI elements for visibility
  • ๐Ÿ“ Responsive text sizing

๐Ÿ”’ Security & Privacy

Authentication & Authorization

  • ๐Ÿ” JWT-based authentication with 24-hour token expiry
  • ๐Ÿ‘ฎ Role-based route protection (user, collector, admin)
  • ๐Ÿ”‘ bcrypt password hashing
  • ๐Ÿšซ Debug routes gated behind FLASK_DEBUG (disabled in production)
  • โœ… Production config validation โ€” raises error if critical env vars are missing

API Security

  • โœ… CORS configuration for authorized origins
  • ๐Ÿ”’ HTTPS encryption for all data transmission
  • ๐Ÿ” IoT API key authentication (X-IoT-API-Key header)
  • ๐Ÿ“ Comprehensive error handling without exposing system details

Data Protection

  • ๐Ÿ”‘ Environment variables for all sensitive credentials (never hardcoded)
  • ๐Ÿšซ No storage of sensitive payment or personal identification data
  • ๐Ÿ“‹ User data collection limited to essential information only
  • See SECURITY.md for detailed security guidelines

๐Ÿค– AI Classification

How It Works

  • ๐Ÿง  Powered by Google Gemini AI for accurate waste type detection
  • ๐Ÿ“ธ Users upload a photo โ†’ Gemini analyzes the image โ†’ returns waste category, confidence score, and disposal recommendations
  • ๐Ÿ“Š Supports multiple waste categories: Plastic, Paper, Glass, Metal, Organic, E-waste, Textile
  • ๐ŸŽฏ Real-time image analysis with confidence scoring

Current Limitations

  • ๐ŸŒ Requires internet connectivity for AI classification
  • ๐Ÿ“ธ Image quality affects classification accuracy
  • ๐Ÿ”„ Accuracy depends on lighting and image clarity
  • ๐Ÿ’ก Best results with clear, well-lit photos of single items

๐Ÿ“Š Scalability & Performance

Current Architecture

  • โšก Serverless frontend deployment on Vercel (auto-scaling)
  • ๐Ÿ”ง Backend hosted on Render with Gunicorn (multi-worker)
  • ๐Ÿ—„๏ธ Neon PostgreSQL (serverless, auto-scaling)
  • ๐Ÿ“ก RESTful API design with Blueprint-based modular routes

Performance Considerations

  • โฑ๏ธ Average API response time: < 500ms
  • ๐Ÿš€ Frontend optimized with code splitting and lazy loading
  • ๐Ÿ’พ Database connection pooling for concurrent users
  • ๐Ÿ“ฆ Image compression for faster uploads
  • ๐Ÿงฎ Route optimization uses Haversine distance + 2-opt solver

Known Limitations

  • ๐ŸŒ Backend cold starts on Render free tier (~30s initial load)
  • ๐Ÿ“ Map performance may vary with large datasets (>1000 points)
  • ๐Ÿ”„ Real-time updates use polling (not WebSockets yet)

Scalability Roadmap

  • ๐Ÿš€ Implement caching layer (Redis) for frequently accessed data
  • ๐Ÿ“ก WebSocket integration for real-time updates
  • ๐ŸŒ CDN integration for global content delivery
  • ๐Ÿ“ˆ Database sharding for horizontal scaling

๐Ÿณ Deployment

Production (Current)

  • Frontend โ†’ Vercel (auto-deploy from main branch)
  • Backend โ†’ Render (Gunicorn, auto-deploy from main branch)
  • Database โ†’ Neon PostgreSQL (serverless)

Self-Hosting with Docker

A full Docker Compose stack is available in deployment/ with:

  • ๐Ÿ”€ Nginx โ€” reverse proxy & SSL termination
  • ๐Ÿ Flask backend โ€” 2 replicas with resource limits
  • โš›๏ธ React frontend โ€” static build served by Nginx
  • ๐Ÿ—„๏ธ PostgreSQL 15 โ€” persistent data volume
  • ๐Ÿ”ด Redis 7 โ€” caching & sessions
  • ๐Ÿ“ˆ Prometheus โ€” metrics collection
  • ๐Ÿ“Š Grafana โ€” monitoring dashboards

See deployment/cloud-deploy.md for detailed instructions.

๐ŸŒ Environmental Impact

SmartWaste360 helps communities:

  • โ™ป๏ธ Improve waste sorting accuracy with AI-powered classification
  • ๐Ÿš› Optimize collection routes, reducing fuel consumption
  • ๐Ÿ“ˆ Track recycling progress with detailed analytics
  • ๐ŸŒฑ Reduce environmental footprint through data-driven decisions
  • ๐Ÿ‘ฅ Engage communities in sustainable waste management
  • ๐Ÿ“ก Monitor bin fill levels in real-time with IoT sensors

๐Ÿ“š Documentation

Detailed guides are available in the docs/ directory:

Guide Description
RUN_APPLICATION.md How to run the application
ADVANCED_FEATURES_GUIDE.md Advanced features walkthrough
COLLECTION_SYSTEM_GUIDE.md Waste collection workflow
COLLECTION_COMPLETION_GUIDE.md Collection completion process
PICKUP-SCHEDULER-ALGORITHM.md Route optimization algorithm details
FEATURE_ROADMAP.md Planned features & future work
SECURITY.md Security guidelines & best practices

โš ๏ธ System Requirements

For Users

  • ๐Ÿ“ฑ Modern web browser (Chrome, Firefox, Safari, Edge)
  • ๐Ÿ“ท Device with camera for waste classification
  • ๐ŸŒ Internet connection (3G or better recommended)
  • ๐Ÿ“ Location services enabled for map features

For IoT Hardware

  • ๐Ÿ”Œ ESP32 DevKit V1
  • ๐Ÿ“ HC-SR04 Ultrasonic Sensor
  • ๐Ÿ”ง 1kฮฉ + 2kฮฉ resistors (voltage divider)
  • ๐Ÿ“ถ WiFi network with internet access
  • โšก 5V USB power supply

๐Ÿ› Known Issues & Limitations

Current Limitations

  • ๐ŸŒ Requires stable internet connection for full functionality
  • ๐Ÿ“ธ AI classification accuracy varies with image quality (70-90% accuracy)
  • ๐Ÿ—บ๏ธ Map features require location permissions
  • โฑ๏ธ First load may be slow due to free-tier hosting cold starts
  • ๐Ÿ“ก IoT sensor accuracy affected by temperature and humidity

Planned Improvements

  • ๐Ÿ”„ Offline mode for basic features
  • ๐Ÿ“ฑ Native mobile apps for better performance
  • ๐ŸŒ Multi-language support
  • ๐Ÿ”” Push notifications for collection reminders
  • ๐Ÿ“Š Advanced analytics with predictive insights
  • ๐Ÿ“ก WebSocket integration for real-time IoT updates

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Built with passion for environmental sustainability and smart city solutions
  • AI classification powered by Google Gemini API
  • Maps provided by OpenStreetMap and Leaflet
  • Deployed on Vercel, Render, and Neon platforms
  • IoT integration with ESP32 and HC-SR04

๐Ÿ“ž Support & Feedback

  • ๐Ÿ› Report issues on GitHub Issues
  • ๐Ÿ’ก Feature requests welcome
  • ๐Ÿ“ง Contact for enterprise deployments
  • โญ Star this repo if you find it useful!

๐Ÿš€ Ready to make waste management smarter? Start using SmartWaste360 now!

About

Smart Waste Management System with AI-powered classification

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors