Interactive pinout diagrams and educational resources for microcontrollers and development boards
Note: This project has been modernized with Next.js 15, React 19, and a complete UI redesign using shadcn/ui for enhanced user experience and accessibility.
- Interactive Pinout Diagrams: Hover and click to explore pin functions and categories
- Responsive Design: Works seamlessly on desktop, tablet, and mobile devices
- Modern UI: Built with shadcn/ui components and Tailwind CSS for a polished experience
- Educational Content: Detailed pin descriptions, protocol explanations, and technical specifications
- Fast Performance: Optimized with Next.js 15 and efficient data loading strategies
- Dark Mode Support: Automatic theme switching for comfortable viewing
- Rich Visualizations: Color-coded pins, interactive tooltips, and visual feedback
- Developer Friendly: TypeScript throughout with comprehensive type definitions
Currently supporting 4 popular development boards:
- Arduino Uno (ATmega328P) - The classic beginner-friendly board
- Arduino Nano (ATmega328P) - Compact breadboard-friendly design
- NodeMCU v2 (ESP8266) - WiFi development board for IoT projects
- Raspberry Pi Zero 2 W (ARM Cortex-A53) - Ultra-small computer with GPIO
- Next.js 15.1.1 - React framework with App Router and Server Components
- React 19.0.0 - Latest React with improved performance and features
- TypeScript 5.6.0 - Type-safe development with comprehensive interfaces
- shadcn/ui - Modern, accessible component library built on Radix UI
- Tailwind CSS 3.4.0 - Utility-first CSS framework
- Lucide React - Beautiful, customizable icons
- SCSS - Enhanced styling capabilities
- CSS Variables - Dynamic theming support
- Radix UI Primitives - Accessible, unstyled UI components
- Class Variance Authority - Type-safe component variants
- Tailwind Merge - Efficient class merging utilities
- React Tooltips - Interactive hover information
pinouts/
├── components/ # React components
│ ├── ui/ # shadcn/ui components (buttons, cards, etc.)
│ ├── board/ # Board-specific components
│ │ ├── details/ # Board information panels
│ │ ├── pinCol/ # Pin column visualization
│ │ └── pinsInteractive/ # Main interactive pinout
│ ├── common/ # Shared components
│ └── headers/ # Navigation and headers
├── data/ # Data definitions
│ ├── boards/ # Individual board configurations
│ ├── pinFunc/ # Pin function definitions
│ ├── protocols/ # Communication protocol specs
│ ├── boards.ts # Board index
│ └── chips.ts # Chip catalog
├── lib/ # Utilities and interfaces
│ ├── interfaces/ # TypeScript type definitions
│ ├── services/ # Data fetching services
│ ├── contexts/ # React context providers
│ └── utils/ # Helper functions
├── pages/ # Next.js pages
│ ├── board/ # Board listing and individual pages
│ └── chip/ # Chip pages (coming soon)
└── styles/ # Global styles and theme
- Node.js 18+ (recommended: latest LTS)
- npm or yarn package manager
-
Clone the repository
git clone https://github.com/tasnimzotder/pinouts.git cd pinouts
-
Install dependencies
npm install # or yarn install
-
Start development server
npm run dev # or yarn dev
-
Open your browser Visit http://localhost:3000 to see the application
npm run dev
- Start development server with hot reloadnpm run build
- Build optimized production bundlenpm run start
- Start production servernpm run lint
- Run ESLint code quality checks
The project uses a modular, type-safe data architecture:
- Lightweight index (
data/boards.ts
) for fast loading - Detailed definitions (
data/boards/*.ts
) with full pin configurations - Rich metadata including specifications, manufacturer info, and documentation links
- Comprehensive TypeScript interfaces for all data structures
- Compile-time validation prevents data inconsistencies
- IDE support with autocompletion and error detection
- Pin function definitions explaining GPIO, ADC, PWM, and more
- Protocol specifications for I2C, SPI, UART communication
- Technical specifications with voltage ranges, memory details, and connectivity
- Individual Chip Pages - Detailed microcontroller specifications and pinouts
- Learning Modules - Interactive tutorials for electronics basics
- Visual Pin Mapping - Enhanced graphics and animations
- Advanced Search - Filter boards by specifications and features
- Mobile App - Native mobile application for on-the-go reference
This project is licensed under the MIT License - see the LICENSE file for details.
- shadcn for the beautiful component library
- Lucide for the comprehensive icon set
- Radix UI for accessible UI primitives
- Vercel for hosting and deployment platform
Built with love for the maker community
Visit Live Site ·
Contributing Guide ·
Report Bug