{"id":49876092,"url":"https://github.com/amcbn06/electron","last_synced_at":"2026-05-15T12:16:08.880Z","repository":{"id":341615205,"uuid":"1109836547","full_name":"amcbn06/electron","owner":"amcbn06","description":"C++ visualizer for electronic schemes","archived":false,"fork":false,"pushed_at":"2026-03-02T15:44:55.000Z","size":5719,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-02T18:50:56.568Z","etag":null,"topics":["cpp","oop","sfml"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amcbn06.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-04T10:54:33.000Z","updated_at":"2026-03-02T16:06:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/amcbn06/electron","commit_stats":null,"previous_names":["amcbn06/electron"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/amcbn06/electron","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amcbn06%2Felectron","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amcbn06%2Felectron/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amcbn06%2Felectron/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amcbn06%2Felectron/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amcbn06","download_url":"https://codeload.github.com/amcbn06/electron/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amcbn06%2Felectron/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33066351,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","oop","sfml"],"created_at":"2026-05-15T12:16:06.772Z","updated_at":"2026-05-15T12:16:08.869Z","avatar_url":"https://github.com/amcbn06.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Electron\n\nA C++ visualizer for electronic schemes.\n\n## Overview\n\nElectron is a desktop application built in C++ that provides visualization and interaction capabilities for electronic circuit diagrams and schematics. The project uses modern C++ development practices and includes build automation tools for cross-platform compilation.\n\n![Electron App Running](assets/screenshot.png)\n\n## Features\n\n- **Electronic Scheme Visualization** - View and interact with circuit diagrams\n- **Cross-Platform Support** - Built with Windows (batch scripts) and Unix-like systems (Makefile) in mind\n- **Project Management** - Save and load your circuit designs\n- **Component Editing** - Modify component values and properties\n- **Automatic Wire Routing** - Intelligent wire routing that avoids components\n- **Zooming \u0026 Panning** - Navigate and zoom in/out of your circuits\n\n## Controls\n\n### Keyboard Commands\n\n| Key                | Action                                                          |\n|--------------------|-----------------------------------------------------------------|\n| **Ctrl+W**         | Close the application                                           |\n| **Escape**         | Cancel current action (stop wiring, deselect, stop editing)     |\n| **R**              | Rotate selected component (90° increments)                      |\n| **Delete**         | Delete selected component                                       |\n| **E**              | Enter edit mode for selected component's value                  |\n| **0-9, ., Backspace** | Modify component value (digits, decimal point, delete char)  |\n| **Ctrl+S**         | Save circuit to file (prompts for filename in console)          |\n| **Ctrl+O**         | Load circuit from file (prompts for filename in console)        |\n\n### Mouse Commands\n\n| Action                  | Function                                                    |\n|-------------------------|-------------------------------------------------------------|\n| **Left Click**          | Select component / Spawn from menu / Start or complete wiring (when clicking component pins) |\n| **Right Click + Drag**  | Pan the viewport                                            |\n| **Mouse Wheel Scroll**  | Zoom in/out canvas (no selection) or zoom component (if any selected) |\n| **Mouse Drag (selected)** | Move selected component around canvas                      |\n\n\n## Project Structure\n\n```\nelectron/\n├── src/                    # Source code (C++ implementation)\n├── assets/                 # Static assets and resources\n├── saves/                  # Saved circuit/project files\n├── Makefile               # Unix/Linux build configuration\n├── run.bat                # Windows batch script for running the application\n├── .vscode/               # VS Code editor configuration\n├── .gitignore             # Git ignore rules\n└── README.md              # This file\n```\n\n## Getting Started\n\n### Prerequisites\n\n- C++ compiler (C++11 or later)\n- Make (for Unix/Linux builds)\n- Windows batch support (for Windows builds)\n\n### Building the Project\n\n#### On Unix/Linux:\n```bash\nmake\n```\n\n#### On Windows:\n```bash\nrun.bat\n```\n\n### Running the Application\n\nThe `run.bat` script is provided for Windows users to compile and run the application.\n\nFor Unix/Linux users, the Makefile handles both compilation and can be extended to run the compiled executable.\n\n## Authors\n\n**[amcbn06](https://github.com/amcbn06)** **[tibinyte](https://github.com/tibinyte)**\n\n---\n\n*Last updated: 2026-03-02*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famcbn06%2Felectron","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famcbn06%2Felectron","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famcbn06%2Felectron/lists"}