Repository: Philip2809/neato-connected Branch: main Commit: ad8388acdbfa Files: 146 Total size: 1.5 MB Directory structure: gitextract_34si2la9/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets/ │ ├── index-BhclUVWI.js │ └── index-DG4tEwHR.css ├── brainslug-tools/ │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components/ │ │ │ ├── header.scss │ │ │ └── header.tsx │ │ ├── index.css │ │ ├── logic/ │ │ │ ├── connect.ts │ │ │ ├── parser.ts │ │ │ └── robot.ts │ │ ├── main.tsx │ │ └── pages/ │ │ ├── flasher.scss │ │ ├── flasher.tsx │ │ ├── ha-config.scss │ │ ├── ha-config.tsx │ │ ├── home.scss │ │ ├── home.tsx │ │ ├── robot.scss │ │ ├── robot.tsx │ │ ├── unsupported.scss │ │ └── unsupported.tsx │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── build/ │ ├── build.sh │ ├── dev.sh │ ├── docker-compose.yml │ └── new-version.md ├── config/ │ ├── .gitignore │ ├── boards/ │ │ ├── esp32.yaml │ │ ├── esp32c3.yaml │ │ ├── esp32c6.yaml │ │ ├── esp32s2.yaml │ │ └── esp32s3.yaml │ ├── comp/ │ │ ├── gen2.yaml │ │ ├── gen3.yaml │ │ ├── ha.yaml │ │ ├── no-ha.yaml │ │ ├── ros.yaml │ │ └── webserver.yaml │ ├── home-assistant/ │ │ ├── gen2-card.yaml │ │ ├── gen2-entity.yaml │ │ ├── gen3-entity.yaml │ │ └── gen3_card.yaml │ ├── js/ │ │ ├── 1.2.1.js │ │ └── 1.2.js │ ├── local.yaml │ ├── prebuilt/ │ │ ├── .gitignore │ │ ├── gen2-esp32.yaml │ │ ├── gen2-esp32c3.yaml │ │ ├── gen2-esp32c6.yaml │ │ ├── gen2-esp32s3.yaml │ │ ├── gen3-esp32.yaml │ │ ├── gen3-esp32c3.yaml │ │ ├── gen3-esp32c6.yaml │ │ └── gen3-esp32s3.yaml │ └── remote.yaml ├── docs/ │ ├── 404.html │ ├── CNAME │ ├── assets/ │ │ ├── esp32-DR_yen0A.js │ │ ├── esp32c2-CIvS3qc5.js │ │ ├── esp32c3-nJJ15ppW.js │ │ ├── esp32c5-DbWg37P4.js │ │ ├── esp32c6-snJpA5DJ.js │ │ ├── esp32c61-DUe22z0I.js │ │ ├── esp32h2-CCGwb3vw.js │ │ ├── esp32p4-BE8Lllij.js │ │ ├── esp32s2-klISvvyE.js │ │ ├── esp32s3-CjJ5O_5u.js │ │ ├── esp8266-BCrKhPpV.js │ │ ├── index-C3ZwmNhv.css │ │ ├── index-CCRny9cW.js │ │ ├── install-dialog-nQsOFibo.js │ │ ├── no-port-picked-DMlthFiI.js │ │ ├── rom-D7P4LvQr.js │ │ ├── stub_flasher_32-DMOwp-H2.js │ │ ├── stub_flasher_32c2-BglC1CA-.js │ │ ├── stub_flasher_32c3-DVjTuHxm.js │ │ ├── stub_flasher_32c5-Bw4Gkysk.js │ │ ├── stub_flasher_32c6-Bdx7wUin.js │ │ ├── stub_flasher_32c61-U7D4krFy.js │ │ ├── stub_flasher_32h2-wrcmrOHl.js │ │ ├── stub_flasher_32p4-Q6hgNTYb.js │ │ ├── stub_flasher_32s2-CjuleYts.js │ │ ├── stub_flasher_32s3-Bz348Cp3.js │ │ ├── stub_flasher_8266-BdPZCml8.js │ │ └── styles-Bnf3HqYs.js │ └── index.html ├── faq.md ├── ha-images.md ├── install-esp-device-gen2.md ├── install-esp-device-gen3.md ├── install-ha.md ├── install-no-ha.md ├── manual.md ├── research/ │ ├── all_errors_alerts_states.3.2.0.md │ ├── command-experiments.md │ ├── command_mapping.md │ ├── findings.md │ ├── gen4/ │ │ ├── nmap-D8.md │ │ └── serial-D8.md │ ├── hidden-commands.md │ ├── serial.md │ └── setup-network.md ├── status.md ├── supported-esp32.md └── webserver/ ├── .prettierrc.json ├── LICENSE ├── README.md ├── package.json ├── packages/ │ └── neato/ │ ├── index.html │ ├── package.json │ ├── selector.html │ ├── src/ │ │ ├── api.ts │ │ ├── css/ │ │ │ ├── app.ts │ │ │ ├── button.ts │ │ │ ├── esp-entity-table.ts │ │ │ ├── input.ts │ │ │ ├── reset.ts │ │ │ └── tab.ts │ │ ├── custom-button.ts │ │ ├── custom-table.ts │ │ ├── entity-store.ts │ │ ├── esp-app.ts │ │ ├── esp-log.ts │ │ ├── esp-range-slider.ts │ │ ├── esp-schedule.ts │ │ ├── esp-switch.ts │ │ ├── main.css │ │ ├── main.ts │ │ ├── manual-driving.ts │ │ ├── neato-entry.ts │ │ ├── neato-enums.ts │ │ ├── timezone-selector.ts │ │ ├── types.d.ts │ │ └── utils.ts │ └── vite.config.ts └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: philip2809 tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry polar: # Replace with a single Polar username buy_me_a_coffee: philip2809 # Replace with a single Buy Me a Coffee username thanks_dev: # Replace with a single thanks.dev username custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] ================================================ FILE: .gitignore ================================================ # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json # Runtime data pids *.pid *.seed *.pid.lock # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # Coverage directory used by tools like istanbul coverage *.lcov # nyc test coverage .nyc_output # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt # Bower dependency directory (https://bower.io/) bower_components # node-waf configuration .lock-wscript # Compiled binary addons (https://nodejs.org/api/addons.html) build/Release # Dependency directories node_modules/ jspm_packages/ # Build results _static/ # TypeScript v1 declaration files typings/ # TypeScript cache *.tsbuildinfo # Optional npm cache directory .npm # Optional eslint cache .eslintcache # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ .rts2_cache_es/ .rts2_cache_umd/ # Optional REPL history .node_repl_history # Output of 'npm pack' *.tgz # Yarn Integrity file .yarn-integrity # dotenv environment variables file .env .env.test # parcel-bundler cache (https://parceljs.org/) .cache # Next.js build output .next # Nuxt.js build / generate output .nuxt dist # Gatsby files .cache/ # Comment in the public line in if your project uses Gatsby and *not* Next.js # https://nextjs.org/blog/next-9-1#public-directory-support # public # vuepress build output .vuepress/dist # Serverless directories .serverless/ # FuseBox cache .fusebox/ # DynamoDB Local files .dynamodb/ # TernJS port file .tern-port # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* lerna-debug.log* node_modules dist dist-ssr *.local # Editor directories and files .vscode/* !.vscode/extensions.json .idea .DS_Store *.suo *.ntvs* *.njsproj *.sln *.sw? ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2025 Philip Magyar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ [buymeacoffee]: https://www.buymeacoffee.com/philip2809 [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png