diff --git a/.github/workflows/build.esplant-server.workflow.yml b/.github/workflows/build.blumy-server.workflow.yml similarity index 76% rename from .github/workflows/build.esplant-server.workflow.yml rename to .github/workflows/build.blumy-server.workflow.yml index 8de4ba52..51387fe3 100644 --- a/.github/workflows/build.esplant-server.workflow.yml +++ b/.github/workflows/build.blumy-server.workflow.yml @@ -1,20 +1,20 @@ -name: Build ESPlant-Server +name: Build Blumy-Server on: push: branches: - main paths: - - "ESPlant-Server/**" - - ".github/workflows/build.esplant-server.workflow.yml" + - "Blumy-Server/**" + - ".github/workflows/build.blumy-server.workflow.yml" pull_request: branches: - main paths: - - "ESPlant-Server/**" + - "Blumy-Server/**" jobs: test-playwright: - uses: ./.github/workflows/test.playwright.esplant-server.workflow.yml + uses: ./.github/workflows/test.playwright.blumy-server.workflow.yml docker_publish: runs-on: "ubuntu-20.04" @@ -37,5 +37,5 @@ jobs: image_tag: ${{ steps.extract_branch.outputs.branch }}.${{ github.run_number }},${{ steps.extract_branch.outputs.branch }}.latest image_name: ${{ github.repository }}/server github_token: ${{ secrets.GITHUB_TOKEN }} - dockerfile: ESPlant-Server/Dockerfile.build - context: ESPlant-Server + dockerfile: Blumy-Server/Dockerfile.build + context: Blumy-Server diff --git a/.github/workflows/deploy.esplant-server.workflow.yml b/.github/workflows/deploy.blumy-server.workflow.yml similarity index 95% rename from .github/workflows/deploy.esplant-server.workflow.yml rename to .github/workflows/deploy.blumy-server.workflow.yml index dfbd3416..ffe8c4ea 100644 --- a/.github/workflows/deploy.esplant-server.workflow.yml +++ b/.github/workflows/deploy.blumy-server.workflow.yml @@ -1,4 +1,4 @@ -name: Deploy ESPlant-Server +name: Deploy Blumy-Server on: workflow_dispatch: inputs: @@ -33,7 +33,7 @@ jobs: with: SSH_PRIVATE_KEY: ${{ secrets.HOPPING_KEY }} ARGS: "-rlgoDzvc -i" - SOURCE: "ESPlant-Server/docker-compose.yml" + SOURCE: "Blumy-Server/docker-compose.yml" REMOTE_HOST: ${{ secrets.HOPPING_HOST }} REMOTE_USER: ${{ secrets.HOPPING_USER }} TARGET: ${{ secrets.HOPPING_HOST_PATH }}/ diff --git a/.github/workflows/deploy.firmware.workflow.yml b/.github/workflows/deploy.firmware.workflow.yml index 533123dc..fef23b96 100644 --- a/.github/workflows/deploy.firmware.workflow.yml +++ b/.github/workflows/deploy.firmware.workflow.yml @@ -5,13 +5,13 @@ on: branches: - main paths: - - "ESPlant-Firmware/**" + - "Blumy-Firmware/**" - ".github/workflows/deploy.firmware.workflow.yml" pull_request: branches: - main paths: - - "ESPlant-Firmware/**" + - "Blumy-Firmware/**" - ".github/workflows/deploy.firmware.workflow.yml" jobs: @@ -24,17 +24,17 @@ jobs: - name: Install Dependencies run: npm ci - working-directory: ESPlant-Firmware/frontend + working-directory: Blumy-Firmware/frontend - name: Build Frontend run: npm run build - working-directory: ESPlant-Firmware/frontend + working-directory: Blumy-Firmware/frontend - name: Upload Artifact uses: actions/upload-artifact@v4 with: name: frontend - path: ESPlant-Firmware/main/index_html.c + path: Blumy-Firmware/main/index_html.c build-firmware: runs-on: ubuntu-latest @@ -48,20 +48,20 @@ jobs: uses: actions/download-artifact@v4 with: name: frontend - path: ESPlant-Firmware/main + path: Blumy-Firmware/main - name: Build Firmware run: | - docker run --rm -v $PWD:/project -w /project/ESPlant-Firmware -u $UID -e HOME=/tmp espressif/idf idf.py build + docker run --rm -v $PWD:/project -w /project/Blumy-Firmware -u $UID -e HOME=/tmp espressif/idf idf.py build - - name: Rename ESPlant-Firmware to firmware - run: mv ESPlant-Firmware/build/ESPlant-Firmware.bin ESPlant-Firmware/build/firmware.bin + - name: Rename Blumy-Firmware to firmware + run: mv Blumy-Firmware/build/Blumy-Firmware.bin Blumy-Firmware/build/firmware.bin - name: Upload Artifact uses: actions/upload-artifact@v4 with: name: firmware - path: ESPlant-Firmware/build/firmware.bin + path: Blumy-Firmware/build/firmware.bin deploy-firmware: runs-on: ubuntu-latest diff --git a/.github/workflows/generate.blumy-board.workflow.yml b/.github/workflows/generate.blumy-board.workflow.yml new file mode 100644 index 00000000..dc21121c --- /dev/null +++ b/.github/workflows/generate.blumy-board.workflow.yml @@ -0,0 +1,54 @@ +name: Export Blumy-Board with KiCad +on: + push: + paths: + - "Blumy-Board/Blumy-Board.kicad_sch" + - "Blumy-Board/Blumy-Board.kicad_pcb" + - .github/workflows/generate.blumy-board.workflow.yml + workflow_dispatch: +jobs: + export: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + - name: Add KiCad PPA and install KiCad + run: | + sudo add-apt-repository --yes ppa:kicad/kicad-dev-nightly + sudo apt update + sudo apt install --install-recommends kicad-nightly + - name: Create dist folder + run: | + mkdir -p Blumy-Board/dist + - name: Export Blumy-Board + run: | + kicad-cli-nightly sch export pdf Blumy-Board/Blumy-Board.kicad_sch -o Blumy-Board/dist/Blumy-Board-schematic.pdf + kicad-cli-nightly sch export svg Blumy-Board/Blumy-Board.kicad_sch -o Blumy-Board/dist/Blumy-Board-schematic.svg + kicad-cli-nightly pcb export pdf Blumy-Board/Blumy-Board.kicad_pcb --layers F.Cu,B.Cu,F.Silkscreen,B.Silkscreen,User.Drawings,User.Comments,Edge.Cuts -o Blumy-Board/dist/Blumy-Board-pcb.pdf + kicad-cli-nightly pcb export vrml Blumy-Board/Blumy-Board.kicad_pcb -o Blumy-Board/dist/Blumy-Board.wrl + kicad-cli-nightly pcb export step Blumy-Board/Blumy-Board.kicad_pcb --drill-origin --no-dnp --subst-models -o Blumy-Board/dist/Blumy-Board.step + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: Blumy-Board + path: Blumy-Board/dist + upload: + runs-on: ubuntu-latest + needs: export + steps: + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: Blumy-Board + path: Blumy-Board + - name: Upload to server + uses: easingthemes/ssh-deploy@main + with: + SSH_PRIVATE_KEY: ${{ secrets.HOPPING_KEY }} + ARGS: "-rlgoDzvc -i" + SOURCE: "Blumy-Board/" + REMOTE_HOST: ${{ secrets.HOPPING_HOST }} + REMOTE_USER: ${{ secrets.HOPPING_USER }} + TARGET: ${{ secrets.HOPPING_HOST_PATH }}/api/pages/Blumy-Board + \ No newline at end of file diff --git a/.github/workflows/generate.esplant-board.workflow.yml b/.github/workflows/generate.esplant-board.workflow.yml deleted file mode 100644 index 7a0cff13..00000000 --- a/.github/workflows/generate.esplant-board.workflow.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Export ESPlant-Board with KiCad -on: - push: - paths: - - "ESPlant-Board/ESPlant-Board.kicad_sch" - - "ESPlant-Board/ESPlant-Board.kicad_pcb" - - .github/workflows/generate.esplant-board.workflow.yml - workflow_dispatch: -jobs: - export: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - uses: actions/checkout@v3 - - name: Add KiCad PPA and install KiCad - run: | - sudo add-apt-repository --yes ppa:kicad/kicad-dev-nightly - sudo apt update - sudo apt install --install-recommends kicad-nightly - - name: Create dist folder - run: | - mkdir -p ESPlant-Board/dist - - name: Export ESPlant-Board - run: | - kicad-cli-nightly sch export pdf ESPlant-Board/ESPlant-Board.kicad_sch -o ESPlant-Board/dist/ESPlant-Board-schematic.pdf - kicad-cli-nightly sch export svg ESPlant-Board/ESPlant-Board.kicad_sch -o ESPlant-Board/dist/ESPlant-Board-schematic.svg - kicad-cli-nightly pcb export pdf ESPlant-Board/ESPlant-Board.kicad_pcb --layers F.Cu,B.Cu,F.Silkscreen,B.Silkscreen,User.Drawings,User.Comments,Edge.Cuts -o ESPlant-Board/dist/ESPlant-Board-pcb.pdf - kicad-cli-nightly pcb export vrml ESPlant-Board/ESPlant-Board.kicad_pcb -o ESPlant-Board/dist/ESPlant-Board.wrl - kicad-cli-nightly pcb export step ESPlant-Board/ESPlant-Board.kicad_pcb --drill-origin --no-dnp --subst-models -o ESPlant-Board/dist/ESPlant-Board.step - - name: Upload artifacts - uses: actions/upload-artifact@v3 - with: - name: ESPlant-Board - path: ESPlant-Board/dist - upload: - runs-on: ubuntu-latest - needs: export - steps: - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - name: ESPlant-Board - path: ESPlant-Board - - name: Upload to server - uses: easingthemes/ssh-deploy@main - with: - SSH_PRIVATE_KEY: ${{ secrets.HOPPING_KEY }} - ARGS: "-rlgoDzvc -i" - SOURCE: "ESPlant-Board/" - REMOTE_HOST: ${{ secrets.HOPPING_HOST }} - REMOTE_USER: ${{ secrets.HOPPING_USER }} - TARGET: ${{ secrets.HOPPING_HOST_PATH }}/api/pages/ESPlant-Board - \ No newline at end of file diff --git a/.github/workflows/test.playwright.esplant-server.workflow.yml b/.github/workflows/test.playwright.blumy-server.workflow.yml similarity index 70% rename from .github/workflows/test.playwright.esplant-server.workflow.yml rename to .github/workflows/test.playwright.blumy-server.workflow.yml index d01f09d0..c8893f47 100644 --- a/.github/workflows/test.playwright.esplant-server.workflow.yml +++ b/.github/workflows/test.playwright.blumy-server.workflow.yml @@ -16,13 +16,13 @@ jobs: postgres: image: postgres:alpine env: - POSTGRES_USER: esplant - POSTGRES_PASSWORD: esplant - POSTGRES_DB: esplant_test + POSTGRES_USER: blumy + POSTGRES_PASSWORD: blumy + POSTGRES_DB: blumy_test ports: - 5432:5432 options: >- - --health-cmd="pg_isready -U esplant" + --health-cmd="pg_isready -U blumy" --health-interval=10s --health-timeout=5s --health-retries=5 @@ -39,8 +39,8 @@ jobs: uses: actions/cache@v4 with: path: | - ESPlant-Server/node_modules - key: modules-${{ hashFiles('ESPlant-Server/package-lock.json') }} + Blumy-Server/node_modules + key: modules-${{ hashFiles('Blumy-Server/package-lock.json') }} - name: Cache Playwright Binaries id: cache-playwright @@ -48,21 +48,21 @@ jobs: with: path: | ~/.cache/ms-playwright - key: playwright-${{ hashFiles('ESPlant-Server/package-lock.json') }} + key: playwright-${{ hashFiles('Blumy-Server/package-lock.json') }} - name: Install dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' - working-directory: ESPlant-Server + working-directory: Blumy-Server run: npm ci - name: Install Playwright Browsers if: steps.cache-playwright.outputs.cache-hit != 'true' - working-directory: ESPlant-Server + working-directory: Blumy-Server run: npx playwright install --with-deps - name: Wait for PostgreSQL to be ready run: | - until pg_isready -h localhost -U esplant; do + until pg_isready -h localhost -U blumy; do echo "Waiting for PostgreSQL..." sleep 2 done @@ -71,22 +71,22 @@ jobs: env: POSTGRES_HOST: localhost POSTGRES_PORT: 5432 - POSTGRES_USER: esplant - POSTGRES_PASSWORD: esplant - POSTGRES_DB: esplant_test + POSTGRES_USER: blumy + POSTGRES_PASSWORD: blumy + POSTGRES_DB: blumy_test GOOGLE_CLIENT_ID: DOES_NOT_MATTER GOOGLE_CLIENT_SECRET: DOES_NOT_MATTER PUBLIC_BASE_URL: http://localhost:4173 - working-directory: ESPlant-Server + working-directory: Blumy-Server run: npm run test:integration - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report - path: ESPlant-Server/test-results + path: Blumy-Server/test-results retention-days: 30 - name: Run CTRF annotations - run: npx github-actions-ctrf ESPlant-Server/test-results/ctrf-report.json + run: npx github-actions-ctrf Blumy-Server/test-results/ctrf-report.json if: always() diff --git a/ESPlant-Board-Panel/.devcontainer/Dockerfile b/Blumy-Board-Panel/.devcontainer/Dockerfile similarity index 100% rename from ESPlant-Board-Panel/.devcontainer/Dockerfile rename to Blumy-Board-Panel/.devcontainer/Dockerfile diff --git a/ESPlant-Board-Panel/.devcontainer/devcontainer.json b/Blumy-Board-Panel/.devcontainer/devcontainer.json similarity index 100% rename from ESPlant-Board-Panel/.devcontainer/devcontainer.json rename to Blumy-Board-Panel/.devcontainer/devcontainer.json diff --git a/ESPlant-Board-Panel/ESPlant-Board.kicad_prl b/Blumy-Board-Panel/Blumy-Board.kicad_prl similarity index 96% rename from ESPlant-Board-Panel/ESPlant-Board.kicad_prl rename to Blumy-Board-Panel/Blumy-Board.kicad_prl index 483e0d27..0fa96a3e 100644 --- a/ESPlant-Board-Panel/ESPlant-Board.kicad_prl +++ b/Blumy-Board-Panel/Blumy-Board.kicad_prl @@ -69,7 +69,7 @@ "zone_display_mode": 1 }, "meta": { - "filename": "ESPlant-Board.kicad_prl", + "filename": "Blumy-Board.kicad_prl", "version": 3 }, "project": { diff --git a/ESPlant-Board-Panel/fp-info-cache b/Blumy-Board-Panel/fp-info-cache similarity index 100% rename from ESPlant-Board-Panel/fp-info-cache rename to Blumy-Board-Panel/fp-info-cache diff --git a/ESPlant-Board-Panel/fp-lib-table b/Blumy-Board-Panel/fp-lib-table similarity index 100% rename from ESPlant-Board-Panel/fp-lib-table rename to Blumy-Board-Panel/fp-lib-table diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/C0402.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/C0402.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/C0402.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/C0402.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/C0805.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/C0805.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/C0805.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/C0805.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/Flower.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/Flower.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/Flower.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/Flower.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/L0806.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/L0806.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/L0806.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/L0806.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/R0402.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/R0402.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/R0402.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/R0402.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod b/Blumy-Board-Panel/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0402.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/C0805.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/L0806.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/L0806.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/L0806.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/L0806.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/R0402.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step diff --git a/ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step b/Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step similarity index 100% rename from ESPlant-Board-Panel/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step rename to Blumy-Board-Panel/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step diff --git a/ESPlant-Board-Panel/lib/symbol/Custom_Parts.bak b/Blumy-Board-Panel/lib/symbol/Custom_Parts.bak similarity index 100% rename from ESPlant-Board-Panel/lib/symbol/Custom_Parts.bak rename to Blumy-Board-Panel/lib/symbol/Custom_Parts.bak diff --git a/ESPlant-Board-Panel/lib/symbol/Custom_Parts.kicad_sym b/Blumy-Board-Panel/lib/symbol/Custom_Parts.kicad_sym similarity index 100% rename from ESPlant-Board-Panel/lib/symbol/Custom_Parts.kicad_sym rename to Blumy-Board-Panel/lib/symbol/Custom_Parts.kicad_sym diff --git a/ESPlant-Board-Panel/lib/symbol/Flower.kicad_sym b/Blumy-Board-Panel/lib/symbol/Flower.kicad_sym similarity index 100% rename from ESPlant-Board-Panel/lib/symbol/Flower.kicad_sym rename to Blumy-Board-Panel/lib/symbol/Flower.kicad_sym diff --git a/ESPlant-Board-Panel/panel-backups/panel-2024-03-15_160644.zip b/Blumy-Board-Panel/panel-backups/panel-2024-03-15_160644.zip similarity index 100% rename from ESPlant-Board-Panel/panel-backups/panel-2024-03-15_160644.zip rename to Blumy-Board-Panel/panel-backups/panel-2024-03-15_160644.zip diff --git a/ESPlant-Board-Panel/panel-backups/panel-2024-03-16_080944.zip b/Blumy-Board-Panel/panel-backups/panel-2024-03-16_080944.zip similarity index 100% rename from ESPlant-Board-Panel/panel-backups/panel-2024-03-16_080944.zip rename to Blumy-Board-Panel/panel-backups/panel-2024-03-16_080944.zip diff --git a/ESPlant-Board-Panel/panel-backups/panel-2024-04-27_170655.zip b/Blumy-Board-Panel/panel-backups/panel-2024-04-27_170655.zip similarity index 100% rename from ESPlant-Board-Panel/panel-backups/panel-2024-04-27_170655.zip rename to Blumy-Board-Panel/panel-backups/panel-2024-04-27_170655.zip diff --git a/ESPlant-Board-Panel/panel-tight.json b/Blumy-Board-Panel/panel-tight.json similarity index 100% rename from ESPlant-Board-Panel/panel-tight.json rename to Blumy-Board-Panel/panel-tight.json diff --git a/ESPlant-Board-Panel/panel.json b/Blumy-Board-Panel/panel.json similarity index 100% rename from ESPlant-Board-Panel/panel.json rename to Blumy-Board-Panel/panel.json diff --git a/ESPlant-Board-Panel/panel.kicad_dru b/Blumy-Board-Panel/panel.kicad_dru similarity index 100% rename from ESPlant-Board-Panel/panel.kicad_dru rename to Blumy-Board-Panel/panel.kicad_dru diff --git a/ESPlant-Board-Panel/panel.kicad_pcb b/Blumy-Board-Panel/panel.kicad_pcb similarity index 100% rename from ESPlant-Board-Panel/panel.kicad_pcb rename to Blumy-Board-Panel/panel.kicad_pcb diff --git a/ESPlant-Board-Panel/panel.kicad_prl b/Blumy-Board-Panel/panel.kicad_prl similarity index 100% rename from ESPlant-Board-Panel/panel.kicad_prl rename to Blumy-Board-Panel/panel.kicad_prl diff --git a/ESPlant-Board-Panel/panel.kicad_pro b/Blumy-Board-Panel/panel.kicad_pro similarity index 100% rename from ESPlant-Board-Panel/panel.kicad_pro rename to Blumy-Board-Panel/panel.kicad_pro diff --git a/ESPlant-Board-Panel/panel.py b/Blumy-Board-Panel/panel.py similarity index 96% rename from ESPlant-Board-Panel/panel.py rename to Blumy-Board-Panel/panel.py index 1bac36a0..b892ecad 100644 --- a/ESPlant-Board-Panel/panel.py +++ b/Blumy-Board-Panel/panel.py @@ -6,8 +6,8 @@ from itertools import chain # Custom config -input = "ESPlant-Board/ESPlant-Board.kicad_pcb" -output = "ESPlant-Board-Panel/panel.kicad_pcb" +input = "Blumy-Board/Blumy-Board.kicad_pcb" +output = "Blumy-Board-Panel/panel.kicad_pcb" # KiKit Panel Config (Only deviations from default) diff --git a/ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/bom.csv b/Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/bom.csv similarity index 100% rename from ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/bom.csv rename to Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/bom.csv diff --git a/ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/designators.csv b/Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/designators.csv similarity index 100% rename from ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/designators.csv rename to Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/designators.csv diff --git a/ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/netlist.ipc b/Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/netlist.ipc similarity index 100% rename from ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/netlist.ipc rename to Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/netlist.ipc diff --git a/ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/panel.zip b/Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/panel.zip similarity index 100% rename from ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/panel.zip rename to Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/panel.zip diff --git a/ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/positions.csv b/Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/positions.csv similarity index 100% rename from ESPlant-Board-Panel/production/panel_2024-03-16_08-32-53/positions.csv rename to Blumy-Board-Panel/production/panel_2024-03-16_08-32-53/positions.csv diff --git a/ESPlant-Board-Panel/sym-lib-table b/Blumy-Board-Panel/sym-lib-table similarity index 100% rename from ESPlant-Board-Panel/sym-lib-table rename to Blumy-Board-Panel/sym-lib-table diff --git a/ESPlant-Board/.gitignore b/Blumy-Board/.gitignore similarity index 100% rename from ESPlant-Board/.gitignore rename to Blumy-Board/.gitignore diff --git a/ESPlant-Board/Aconitum/ESPlant-Board.kicad_pcb b/Blumy-Board/Aconitum/Blumy-Board.kicad_pcb similarity index 99% rename from ESPlant-Board/Aconitum/ESPlant-Board.kicad_pcb rename to Blumy-Board/Aconitum/Blumy-Board.kicad_pcb index 1eb8fd44..4601697c 100644 --- a/ESPlant-Board/Aconitum/ESPlant-Board.kicad_pcb +++ b/Blumy-Board/Aconitum/Blumy-Board.kicad_pcb @@ -153,7 +153,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -210,7 +210,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C12530") (property "MPN" "C12530") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -263,7 +263,7 @@ (tstamp 1cba2720-60d2-43e3-bec8-2a47b70277ed) (at 182.149999 163.499997 180) (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -303,7 +303,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C4109") (property "MPN" "C4109") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -359,7 +359,7 @@ (tags "SW-SMD_L3.9-W3.0-P4.45 footprint C720477") (property "LCSC" "C720477") (property "MPN" "C720477") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C720477") (path "/38876186-b03b-46c2-9870-726d06241c1a") @@ -423,7 +423,7 @@ (tags "resistor") (property "LCSC" "C25079") (property "MPN" "C25079") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -480,7 +480,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -533,7 +533,7 @@ (tstamp 3cda8f21-52ed-4788-8e3e-c3c79d5e114b) (at 182.149999 135.299997 180) (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -573,7 +573,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -631,7 +631,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C94599") (property "MPN" "C94599") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C94599") (path "/e2bccb4d-9a90-4c95-b136-6ae7fb697c99") @@ -716,7 +716,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -772,7 +772,7 @@ (tags "resistor") (property "LCSC" "C25764") (property "MPN" "C25764") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -830,7 +830,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C15195") (property "MPN" "C15195") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -887,7 +887,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -943,7 +943,7 @@ (tags "mounting hole 3.2mm no annular m3") (property "LCSC" "") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -978,7 +978,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1034,7 +1034,7 @@ (tags "SENSOR-SMD-6_AHT20 footprint C3012622") (property "LCSC" "C2757850") (property "MPN" "C2757850") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C3012622") (path "/ca58b189-8ee4-420d-943a-c981e1e753a8") @@ -1109,7 +1109,7 @@ (tags "USB-C-SMD_G-SWITCH_GT-USB-7010EN footprint C2997435") (property "LCSC" "C2997435") (property "MPN" "C2997435") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C2997435") (path "/ae152440-d04e-43a0-80b0-d59ea0a0b50f") @@ -1191,7 +1191,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C146233") (property "MPN" "C146233") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C146233") (path "/673c85ea-3be2-4225-b534-50875f94bb82") @@ -1236,7 +1236,7 @@ (tags "resistor") (property "LCSC" "C26083") (property "MPN" "C26083") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1289,7 +1289,7 @@ (tstamp 86b92020-ae83-4393-93ad-dfbf3207f0a7) (at 157.949999 163.499997) (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -1328,7 +1328,7 @@ (tags "resistor") (property "LCSC" "C25079") (property "MPN" "C25079") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1385,7 +1385,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C84256") (property "MPN" "C84256") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C84256") (path "/dbd67d15-889f-4c1f-93d5-66600f9ce4a1") @@ -1446,7 +1446,7 @@ (tags "WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4 footprint C5736265") (property "LCSC" "C5736265") (property "MPN" "C5736265") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C5736265") (path "/b36d4962-55f4-4336-b5de-2db28d0dc733") @@ -1609,7 +1609,7 @@ (tags "resistor") (property "LCSC" "C25741") (property "MPN" "C25741") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1665,7 +1665,7 @@ (tags "mounting hole 3.2mm no annular m3") (property "LCSC" "") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -1696,7 +1696,7 @@ (tstamp 9e54e1fa-67d7-4e13-b66f-96451b0cf0ad) (at 157.949999 135.299994) (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -1735,7 +1735,7 @@ (tags "SW-SMD_L3.9-W3.0-P4.45 footprint C720477") (property "LCSC" "C720477") (property "MPN" "C720477") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C720477") (path "/04dc1b85-2324-4329-b4e2-0710790b7ac2") @@ -1800,7 +1800,7 @@ (property "JLCPCB Position Offset" "0,0,-0.5") (property "LCSC" "C778186") (property "MPN" "C778186") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C778186") (path "/8d6b055e-c7aa-451c-9d9c-c4b6fdf0c316") @@ -1880,7 +1880,7 @@ (tags "CASE-B_3528 footprint C16133") (property "LCSC" "C16133") (property "MPN" "C16133") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C16133") (path "/709ed051-dee2-46a4-bf1c-c28ef1f9d88c") @@ -1929,7 +1929,7 @@ (tags "CAP-SMD_L3.2-W1.6-RD-C7171 footprint C7171") (property "LCSC" "C7171") (property "MPN" "C7171") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C7171") (path "/c8bd0486-8e4d-40f5-80ff-0ab81e2701c8") @@ -1975,7 +1975,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2031,7 +2031,7 @@ (tags "mounting hole 3.2mm no annular m3") (property "LCSC" "") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -2066,7 +2066,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25792") (property "MPN" "C25792") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2123,7 +2123,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C2297") (property "MPN" "C2297") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C2297") (path "/329126f3-4313-4fcb-8daa-a8cb2401c179") @@ -2185,7 +2185,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2242,7 +2242,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15195") (property "MPN" "C15195") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -2298,7 +2298,7 @@ (tags "VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR footprint C71369") (property "LCSC" "C71369") (property "MPN" "C71369") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C71369") (path "/23d8344e-5430-4d95-855f-15580dd9cfd9") @@ -2405,7 +2405,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2461,7 +2461,7 @@ (tags "resistor") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2517,7 +2517,7 @@ (tags "IND-SMD_L3.5-W3.0 footprint C492260") (property "LCSC" "C492260") (property "MPN" "C492260") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C492260") (path "/70729743-00c6-4b53-8972-7147abff3fcd") @@ -2562,7 +2562,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2619,7 +2619,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2676,7 +2676,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -2733,7 +2733,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -2789,7 +2789,7 @@ (tags "resistor") (property "LCSC" "C25765") (property "MPN" "C25765") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2846,7 +2846,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C81598") (path "/8f02233f-f47f-4ef3-a056-781256bd6ec0") @@ -2891,7 +2891,7 @@ (footprint "CustomFootprints:Flower" (layer "B.Cu") (tstamp 2c76b6d1-d982-4167-9d4f-648cbe31018a) (at 173.149999 153.899997 180) - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -3079,7 +3079,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "exclude_from_bom" "") (property "ki_description" "Unpolarized capacitor") @@ -3161,7 +3161,7 @@ (at 159.029998 143.600994 180) (property "LCSC" "") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -3225,7 +3225,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "exclude_from_bom" "") (path "/f1f58b1e-d0e8-40e6-af70-45ec8ff536e0") diff --git a/ESPlant-Board/Aconitum/ESPlant-Board.kicad_pro b/Blumy-Board/Aconitum/Blumy-Board.kicad_pro similarity index 99% rename from ESPlant-Board/Aconitum/ESPlant-Board.kicad_pro rename to Blumy-Board/Aconitum/Blumy-Board.kicad_pro index e4a65135..9c641e88 100644 --- a/ESPlant-Board/Aconitum/ESPlant-Board.kicad_pro +++ b/Blumy-Board/Aconitum/Blumy-Board.kicad_pro @@ -417,7 +417,7 @@ "pinned_symbol_libs": [] }, "meta": { - "filename": "ESPlant-Board.kicad_pro", + "filename": "Blumy-Board.kicad_pro", "version": 1 }, "net_settings": { @@ -559,8 +559,8 @@ "idf": "", "netlist": "", "specctra_dsn": "", - "step": "ESPlant-Board.step", - "vrml": "ESPlant-Board.wrl" + "step": "Blumy-Board.step", + "vrml": "Blumy-Board.wrl" }, "page_layout_descr_file": "" }, diff --git a/ESPlant-Board/Aconitum/ESPlant-Board.kicad_sch b/Blumy-Board/Aconitum/Blumy-Board.kicad_sch similarity index 98% rename from ESPlant-Board/Aconitum/ESPlant-Board.kicad_sch rename to Blumy-Board/Aconitum/Blumy-Board.kicad_sch index b958d80a..81621335 100644 --- a/ESPlant-Board/Aconitum/ESPlant-Board.kicad_sch +++ b/Blumy-Board/Aconitum/Blumy-Board.kicad_sch @@ -5,7 +5,7 @@ (paper "A4") (title_block - (title "ES-Plant") + (title "Blumy") (date "2023-05-12") (rev "1.0") ) @@ -3193,7 +3193,7 @@ (pin "1" (uuid d120a52e-be0b-4ecd-8e83-ef12fcbc3a6d)) (pin "2" (uuid c1797c9c-46c2-45fa-ac77-f5696563cf94)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C1") (unit 1) ) @@ -3228,7 +3228,7 @@ (pin "1" (uuid 26e3bf80-bce1-4c69-9107-4118a6c86b21)) (pin "2" (uuid 9497b48b-5931-477f-8498-ff45e7f9a748)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C7") (unit 1) ) @@ -3253,7 +3253,7 @@ ) (pin "1" (uuid 8baab165-d871-4e61-9882-f537402f33ac)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR016") (unit 1) ) @@ -3285,7 +3285,7 @@ (pin "2" (uuid ca349833-f7a7-4e34-9f38-0901c97e9f00)) (pin "1" (uuid 5b11107f-fb9d-4a55-862e-1b734d04741e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U4") (unit 1) ) @@ -3312,7 +3312,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U10") (unit 1) ) @@ -3337,7 +3337,7 @@ ) (pin "1" (uuid c64871a0-eabf-4a23-8dad-81e18a010a35)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR012") (unit 1) ) @@ -3362,7 +3362,7 @@ ) (pin "1" (uuid c31289b8-0779-4f7c-9428-ac9ef67079fb)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR06") (unit 1) ) @@ -3397,7 +3397,7 @@ (pin "1" (uuid 44303273-16c8-413f-a6a6-7d032fab4f35)) (pin "2" (uuid 028d5ff3-19a7-4c7a-888a-91c2a24bfeb2)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C8") (unit 1) ) @@ -3429,7 +3429,7 @@ (pin "1" (uuid eb71bff0-ac59-4a14-8286-59993a59f42a)) (pin "2" (uuid 65ac35bf-dacf-4020-817d-c18c59f65f43)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R15") (unit 1) ) @@ -3454,7 +3454,7 @@ ) (pin "1" (uuid b5ff3e2d-81f6-4670-bfb6-a0c109c8957c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR03") (unit 1) ) @@ -3479,7 +3479,7 @@ ) (pin "1" (uuid 8d9a39d2-bea1-4c71-a7bc-5a07d0985e23)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR013") (unit 1) ) @@ -3504,7 +3504,7 @@ ) (pin "1" (uuid 0a2f6263-ce3d-4d3c-a335-bbd3d0b42c43)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR022") (unit 1) ) @@ -3534,7 +3534,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "H1") (unit 1) ) @@ -3559,7 +3559,7 @@ ) (pin "1" (uuid f45ae8f2-0b21-4c35-bc2d-d889eafd7de0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR023") (unit 1) ) @@ -3600,7 +3600,7 @@ (pin "10" (uuid a98964c7-6d32-423d-945d-772a974fa085)) (pin "5" (uuid a0a529d6-0481-44a1-837f-1576fbe5f226)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U5") (unit 1) ) @@ -3625,7 +3625,7 @@ ) (pin "1" (uuid 61e8956d-9167-4c3d-981a-1736d22ae583)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR01") (unit 1) ) @@ -3652,7 +3652,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U2") (unit 1) ) @@ -3687,7 +3687,7 @@ (pin "1" (uuid 1e2f1a32-9f62-4302-bd97-4de6c9ab13bc)) (pin "2" (uuid a33859cb-adcc-4423-90f0-56f16b45af87)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D1") (unit 1) ) @@ -3719,7 +3719,7 @@ (pin "2" (uuid 2c12bdd7-ab8a-4f66-ae70-400f4d131a5f)) (pin "1" (uuid ed7b2dde-f371-4c66-ae98-de2057addba5)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R17") (unit 1) ) @@ -3744,7 +3744,7 @@ ) (pin "1" (uuid 740fb291-7143-4f0c-95cf-a1ef0616e8f4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR015") (unit 1) ) @@ -3776,7 +3776,7 @@ (pin "2" (uuid af961b3a-a206-4454-beaa-39e7f7802e1f)) (pin "1" (uuid 40e8b7d6-c2a7-4d2c-8a91-1cb74a71cf9c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U7") (unit 1) ) @@ -3801,7 +3801,7 @@ ) (pin "1" (uuid 7a6c056f-e284-40c8-95a1-33d24d7d959f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR024") (unit 1) ) @@ -3836,7 +3836,7 @@ (pin "1" (uuid 852690cc-1c3b-432b-a9c2-ee4cd3207055)) (pin "2" (uuid 3417b76a-8a27-44ef-99f9-f6d8a0c0b9cd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R4") (unit 1) ) @@ -3861,7 +3861,7 @@ ) (pin "1" (uuid 684a9458-7d09-4788-9ec9-b1bfd8b98efa)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR014") (unit 1) ) @@ -3896,7 +3896,7 @@ (pin "1" (uuid 985a8871-549a-40b6-8df2-a64d319491fd)) (pin "2" (uuid 9ac73c7e-201f-4b25-b437-280b3e28f4e5)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C11") (unit 1) ) @@ -3931,7 +3931,7 @@ (pin "1" (uuid 03896d7f-e061-488c-a0ea-32d4d79a43f9)) (pin "2" (uuid 03d6f13d-8436-4506-9558-a58e700475ed)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R6") (unit 1) ) @@ -3961,7 +3961,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "H3") (unit 1) ) @@ -3991,7 +3991,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "H2") (unit 1) ) @@ -4026,7 +4026,7 @@ (pin "1" (uuid 134afdc7-60a1-46bd-b00b-570e8a6d56cb)) (pin "2" (uuid 0f778dcc-5202-466e-8098-c668091ea170)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C9") (unit 1) ) @@ -4061,7 +4061,7 @@ (pin "1" (uuid 23bb2aa1-e94e-41d6-bc53-3d7cdc86105b)) (pin "2" (uuid 48d41798-19fc-4fef-b13c-c2bcd7498f1d)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R12") (unit 1) ) @@ -4085,7 +4085,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "Flower1") (unit 1) ) @@ -4120,7 +4120,7 @@ (pin "1" (uuid 9a0ebd6f-f7bf-4296-bfc6-1749a8507f12)) (pin "2" (uuid 74445041-9822-445c-a8e0-5f558d0c74b4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U6") (unit 1) ) @@ -4155,7 +4155,7 @@ (pin "1" (uuid 0b554e2d-5419-4453-be2a-80306f296b34)) (pin "2" (uuid a8ad87c8-bbb4-4e12-aa51-e289cf023bd5)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C6") (unit 1) ) @@ -4187,7 +4187,7 @@ (pin "2" (uuid ee9d804a-bd0b-4b2a-9d29-869b4870c64a)) (pin "1" (uuid 118f7fd0-8382-4ff6-9167-ac6a019ad51d)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "L1") (unit 1) ) @@ -4219,7 +4219,7 @@ (pin "2" (uuid 80bf15c9-98a2-4e64-9eb9-003eb79c93c6)) (pin "1" (uuid 45402351-e043-41bc-aed8-64c03a6ec62e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C2") (unit 1) ) @@ -4244,7 +4244,7 @@ ) (pin "1" (uuid 5c44bddf-1f55-4397-9256-fecccae60fc0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR07") (unit 1) ) @@ -4279,7 +4279,7 @@ (pin "1" (uuid 2168284a-39ae-462f-8b6d-cac75593a12a)) (pin "2" (uuid 082bc7b4-735d-4141-8058-ac91fcf0e7fe)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R10") (unit 1) ) @@ -4304,7 +4304,7 @@ ) (pin "1" (uuid d7078689-784c-4488-b318-6235f3e0d8dc)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR020") (unit 1) ) @@ -4329,7 +4329,7 @@ ) (pin "1" (uuid 36ac133b-9ae8-4dad-861d-42d26ec1860a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR026") (unit 1) ) @@ -4354,7 +4354,7 @@ ) (pin "1" (uuid 199e60a0-a6a1-4cd2-bc36-d767caeb4fc8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR011") (unit 1) ) @@ -4381,7 +4381,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U11") (unit 1) ) @@ -4416,7 +4416,7 @@ (pin "1" (uuid 3e9edef8-44a2-4727-89eb-1641d2326d2f)) (pin "2" (uuid 2be5bb70-1a47-4384-85ec-acc0c8b3df49)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R9") (unit 1) ) @@ -4456,7 +4456,7 @@ (pin "6" (uuid 7cbfc099-4696-4c34-852d-cf00e40e31b9)) (pin "7" (uuid 6ec4eba1-b226-46f9-bdcc-8dd4860ba1bd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U8") (unit 1) ) @@ -4491,7 +4491,7 @@ (pin "1" (uuid 9ca31894-c923-411a-97e2-dd6a6151acf0)) (pin "2" (uuid fd41529f-7f0a-4d18-9389-b523f7f47db3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D2") (unit 1) ) @@ -4529,7 +4529,7 @@ (pin "1" (uuid d2b63477-1a4d-409b-a34e-1db9606abd0f)) (pin "2" (uuid dc4d3209-2595-4aff-bbf1-dd1571a1ad85)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C3") (unit 1) ) @@ -4554,7 +4554,7 @@ ) (pin "1" (uuid ef6f0a04-d957-42b0-8add-54e595fa57eb)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR09") (unit 1) ) @@ -4579,7 +4579,7 @@ ) (pin "1" (uuid 8852e2bd-6503-45d8-be4d-b57b268caf48)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR02") (unit 1) ) @@ -4614,7 +4614,7 @@ (pin "1" (uuid e8224b48-26f4-4dde-9d80-7b854462f725)) (pin "2" (uuid f3859450-3ce8-40c2-ab73-baeac31fd5ea)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R11") (unit 1) ) @@ -4646,7 +4646,7 @@ (pin "1" (uuid 5cae8e81-72db-4c8e-bf85-08384c84a9ce)) (pin "2" (uuid 4fa43dab-9c0f-44c5-9e14-d9efcfbca2e8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R14") (unit 1) ) @@ -4678,7 +4678,7 @@ (pin "1" (uuid c1db6d8f-af2a-4fa7-a5b3-65d6ebe5c8f5)) (pin "2" (uuid 39f29a57-8398-4e60-90a4-fda2b86b319f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R5") (unit 1) ) @@ -4724,7 +4724,7 @@ (pin "A6" (uuid f519e573-d3fb-4081-b6ff-6d735e7e9cff)) (pin "B6" (uuid b52f60ff-abd8-4d20-a085-643e4d4396dc)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U1") (unit 1) ) @@ -4807,7 +4807,7 @@ (pin "8" (uuid 7eebe549-9c31-4a1f-a9e0-2820dfa52452)) (pin "9" (uuid 8cf744ed-b376-481e-8014-a45761f18dd1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U13") (unit 1) ) @@ -4832,7 +4832,7 @@ ) (pin "1" (uuid 76c116b6-118c-44f5-8726-ab942445514f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR05") (unit 1) ) @@ -4857,7 +4857,7 @@ ) (pin "1" (uuid 6db3d390-1115-4beb-8795-8a5968d412fd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR04") (unit 1) ) @@ -4892,7 +4892,7 @@ (pin "1" (uuid 4b432b26-32e7-4eea-8223-9f47cb4083c8)) (pin "2" (uuid 6033670c-a7c9-4b8b-adc6-725d9e0b5b8b)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R3") (unit 1) ) @@ -4917,7 +4917,7 @@ ) (pin "1" (uuid 3ae588c6-1a1e-4f8e-b452-fe068d305bd4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR027") (unit 1) ) @@ -4952,7 +4952,7 @@ (pin "1" (uuid c18d9f6f-5897-43b3-bc91-c9b4aa5430c2)) (pin "2" (uuid ddc55ed7-6c4a-4e59-b4d4-5ae3c5ed6fb3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R7") (unit 1) ) @@ -4984,7 +4984,7 @@ (pin "1" (uuid 7187e027-1d6d-4bbd-a532-fcb41aad4139)) (pin "2" (uuid 33f0b6e7-9c77-4821-b2ba-bdcf5fdad350)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R16") (unit 1) ) @@ -5022,7 +5022,7 @@ (pin "1" (uuid 7e66c181-8b42-4754-aa22-722a19bf9983)) (pin "2" (uuid 2f1ea01f-9a4b-41fd-9efb-8948431a1829)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C4") (unit 1) ) @@ -5057,7 +5057,7 @@ (pin "1" (uuid e56956b7-2a93-43f0-85e2-7ede7c47cc6e)) (pin "2" (uuid 1c27d270-7050-4f19-a6f7-3b8932552d00)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C5") (unit 1) ) @@ -5092,7 +5092,7 @@ (pin "4" (uuid 0fdc44c5-5250-4f68-bd80-b8d7d967ce00)) (pin "5" (uuid 0d3d3114-4269-445a-af7f-1160b7f0cc22)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "J1") (unit 1) ) @@ -5124,7 +5124,7 @@ (pin "1" (uuid 0c9f6264-69c0-44de-bbb6-938283019f3b)) (pin "2" (uuid dc0e6b98-e1a9-469a-89fb-2ae4b1e3f968)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C10") (unit 1) ) @@ -5160,7 +5160,7 @@ (pin "4" (uuid a610212d-a8e3-4818-8006-e5b37d500328)) (pin "1" (uuid a3a7c1b2-f9de-47c6-8d3f-a45af5e69b3f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U3") (unit 1) ) @@ -5185,7 +5185,7 @@ ) (pin "1" (uuid 6cd4e946-8f5a-4c43-ad62-3f4857a6d9b8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR010") (unit 1) ) @@ -5217,7 +5217,7 @@ (pin "1" (uuid 7a78f9ad-04cc-4802-b0fc-729ec7bc7386)) (pin "2" (uuid bba5ad3b-3634-483d-bfda-34003dc43c36)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R13") (unit 1) ) @@ -5244,7 +5244,7 @@ (effects (font (size 1.27 1.27)) hide) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U12") (unit 1) ) @@ -5269,7 +5269,7 @@ ) (pin "1" (uuid 9cebce4e-e3a5-4eef-a617-f90a41fff5f0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR08") (unit 1) ) @@ -5304,7 +5304,7 @@ (pin "1" (uuid 4a609a90-5077-4c1a-8a7c-1c0da01b48d1)) (pin "2" (uuid cb3407e1-4ddb-4094-acf0-18cb5e7a1bb0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D3") (unit 1) ) @@ -5339,7 +5339,7 @@ (pin "1" (uuid dd44f8b9-4155-460c-a056-833bce79ce3f)) (pin "2" (uuid 8b73ef60-3b95-4c20-a4bd-ee6f3a3445ce)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R2") (unit 1) ) @@ -5379,7 +5379,7 @@ (pin "4" (uuid 5c85681a-224a-4bec-824b-aa659435c2b3)) (pin "3" (uuid e4bf0d4e-47b9-4259-9c49-1b8040916cf8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "BZ1") (unit 1) ) @@ -5411,7 +5411,7 @@ (pin "1" (uuid c4e2a6d3-3f0f-4548-802f-f089c6ece983)) (pin "2" (uuid 2936d9dc-d8ec-454e-beaa-984e4fd886c3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R1") (unit 1) ) @@ -5436,7 +5436,7 @@ ) (pin "1" (uuid e46bfbd9-22e4-488d-a3f0-ddb4848e10cb)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR018") (unit 1) ) @@ -5471,7 +5471,7 @@ (pin "1" (uuid 9e052b84-7c37-45a7-8b6b-adf71400e369)) (pin "2" (uuid 4eae5a10-c4fb-4f70-b9f2-8cde399be507)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U9") (unit 1) ) @@ -5496,7 +5496,7 @@ ) (pin "1" (uuid 4d7a18a1-b85c-433e-b5d8-effd039ce85a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR021") (unit 1) ) @@ -5534,7 +5534,7 @@ (pin "1" (uuid 2cf4b113-af3d-4e66-bd45-21c39972c04a)) (pin "2" (uuid 395e1f8c-9719-4324-b368-2374fc575fe3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R8") (unit 1) ) diff --git a/ESPlant-Board/ESPlant-Board.kicad_pcb b/Blumy-Board/Blumy-Board.kicad_pcb similarity index 99% rename from ESPlant-Board/ESPlant-Board.kicad_pcb rename to Blumy-Board/Blumy-Board.kicad_pcb index e3fc7120..457d817a 100644 --- a/ESPlant-Board/ESPlant-Board.kicad_pcb +++ b/Blumy-Board/Blumy-Board.kicad_pcb @@ -293,7 +293,7 @@ ) ) (path "/7a21b79e-06fc-4ddd-81ff-3d4ac5e04cc0") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 -0.38) @@ -538,7 +538,7 @@ ) ) (path "/85969bde-8cdc-402b-9446-f021d9a48f66") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd exclude_from_bom) (fp_line (start -0.254 2.46) @@ -706,7 +706,7 @@ ) ) (path "/5d06a35b-9da1-4da2-bd48-0f6c6b5e3dbf") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 -0.38) @@ -939,7 +939,7 @@ ) ) (path "/c255548a-5676-48b0-b800-a35c1a0a4551") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -1172,7 +1172,7 @@ ) ) (path "/856eddec-1fbb-4c32-a8b2-29203677c275") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (clearance 0.05) (zone_connect 2) (attr smd) @@ -1454,7 +1454,7 @@ ) ) (path "/38876186-b03b-46c2-9870-726d06241c1a") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start 2.026213 1.541199) @@ -1662,7 +1662,7 @@ ) ) (path "/d21d35c6-6fd3-4864-a9ec-2bb3ac92b833") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 -0.38) @@ -1907,7 +1907,7 @@ ) ) (path "/64626f49-2a38-47ce-9a5b-c609b8ad493f") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -2151,7 +2151,7 @@ ) ) (path "/67333fd1-4b08-41fc-b326-563ed1a49e30") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr board_only exclude_from_pos_files exclude_from_bom) (fp_poly (pts @@ -2302,7 +2302,7 @@ ) ) (path "/0609f83d-514c-4a16-bc35-5da6d1ad35c3") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd exclude_from_bom) (fp_line (start -0.254 2.46) @@ -2470,7 +2470,7 @@ ) ) (path "/9fb2708d-3425-4ebe-9c96-8d15a95e8aa3") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -2727,7 +2727,7 @@ ) ) (path "/e2bccb4d-9a90-4c95-b136-6ae7fb697c99") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start 4.25014 -2.168529) @@ -3008,7 +3008,7 @@ ) ) (path "/8fca70ec-1b02-4297-8e1e-6c39c3ce9024") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -3241,7 +3241,7 @@ ) ) (path "/55f3fadc-224f-4b35-928f-fbd7a0657b4a") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -3474,7 +3474,7 @@ ) ) (path "/7c8c284c-1577-46c7-a1f2-e1d19f303ef8") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -3731,7 +3731,7 @@ ) ) (path "/2194f879-9640-49c7-8d7f-07e03383e8b2") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr exclude_from_pos_files exclude_from_bom) (fp_circle (center 0 0) @@ -3876,7 +3876,7 @@ ) ) (path "/032298ba-4d0d-41bb-b322-7acec882654f") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 0.36) @@ -4109,7 +4109,7 @@ ) ) (path "/ca58b189-8ee4-420d-943a-c981e1e753a8") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start 1.5 1.5) @@ -4442,7 +4442,7 @@ ) ) (path "/ae152440-d04e-43a0-80b0-d59ea0a0b50f") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr through_hole) (fp_line (start -4.5 3.556) @@ -4819,7 +4819,7 @@ ) ) (path "/673c85ea-3be2-4225-b534-50875f94bb82") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.849987 0.550013) @@ -5016,7 +5016,7 @@ ) ) (path "/d293b82d-bd37-461b-a1fd-55ab87a17582") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd exclude_from_bom) (fp_line (start -0.254 -0.04) @@ -5172,7 +5172,7 @@ ) ) (path "/a09ccc26-44ac-472f-bbba-72b4b3c78df5") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -5417,7 +5417,7 @@ ) ) (path "/dbd67d15-889f-4c1f-93d5-66600f9ce4a1") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start 1.7 -0.8) @@ -5682,7 +5682,7 @@ ) ) (path "/b36d4962-55f4-4336-b5de-2db28d0dc733") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -6.600102 -5.334) @@ -6398,7 +6398,7 @@ ) ) (path "/6f1b5874-d9d4-4abb-8744-4769064d4dca") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -6655,7 +6655,7 @@ ) ) (path "/5d09e64e-158f-4cb2-859b-9ddaf918ae0c") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr exclude_from_pos_files exclude_from_bom) (fp_circle (center 0 0) @@ -6800,7 +6800,7 @@ ) ) (path "/2fca7383-803e-4723-bc49-79ac60c4e7d0") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd exclude_from_bom) (fp_line (start -0.254 -0.04) @@ -6956,7 +6956,7 @@ ) ) (path "/04dc1b85-2324-4329-b4e2-0710790b7ac2") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -2.026213 -1.541199) @@ -7164,7 +7164,7 @@ ) ) (path "/931c1a95-e04e-443b-9bfb-1d58a0a99913") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -7409,7 +7409,7 @@ ) ) (path "/8d6b055e-c7aa-451c-9d9c-c4b6fdf0c316") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start 1.59177 -0.901575) @@ -7697,7 +7697,7 @@ ) ) (path "/3a93f275-5e5b-4b3b-bcfc-2c4d8b365b14") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -7930,7 +7930,7 @@ ) ) (path "/be3b0ad7-e3bb-4513-8fa0-afdb020fbb04") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -1.699975 1.2) @@ -8237,7 +8237,7 @@ ) ) (path "/457b2b95-b0e7-4316-8e2e-9c17a7dd847c") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -8494,7 +8494,7 @@ ) ) (path "/5e1d6b53-7be6-4ad8-989f-6dbf16c3dc49") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr exclude_from_pos_files exclude_from_bom) (fp_circle (center 0 0) @@ -8639,7 +8639,7 @@ ) ) (path "/c0f8bd9e-beb3-4e18-80a5-bddc0b9e2163") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -8884,7 +8884,7 @@ ) ) (path "/329126f3-4313-4fcb-8daa-a8cb2401c179") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start 1.7 -0.8) @@ -9161,7 +9161,7 @@ ) ) (path "/8d1e9d08-58cf-4e85-a599-6e6ad1fcfd93") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -9406,7 +9406,7 @@ ) ) (path "/0ca7faca-cd43-4388-9e51-a5a82aa53624") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 -0.36) @@ -9651,7 +9651,7 @@ ) ) (path "/65a3bd26-c88f-4326-b458-876d550659d3") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -9884,7 +9884,7 @@ ) ) (path "/a7aadbac-dbc0-42ec-9593-d5d14686465d") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -10117,7 +10117,7 @@ ) ) (path "/cfa0877e-e053-4203-bf4a-f114951ed2d0") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 0.36) @@ -10374,7 +10374,7 @@ ) ) (path "/ff75518a-5191-43bf-891e-847b3272b3eb") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 -0.38) @@ -10619,7 +10619,7 @@ ) ) (path "/dec32147-c639-4211-98cf-4194a8fd336f") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.153641 0.38) @@ -10864,7 +10864,7 @@ ) ) (path "/59dad15d-129d-4b9f-ac64-6f5bedb42492") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 0.36) @@ -11109,7 +11109,7 @@ ) ) (path "/c89096d8-093f-4e67-b4eb-045510a4db22") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (fp_line (start -1.524 -1.778) (end -1.524 -0.762) @@ -11314,7 +11314,7 @@ ) ) (path "/c75745eb-0df3-488a-b5ab-3a8fabf9d660") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -0.107836 0.36) @@ -11559,7 +11559,7 @@ ) ) (path "/8f02233f-f47f-4ef3-a056-781256bd6ec0") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd) (fp_line (start -1.376175 -0.926137) @@ -11807,7 +11807,7 @@ ) ) (path "/c62dd1ba-6e2e-4d2a-8afd-d36db7a5eef2") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr exclude_from_bom) (fp_line (start -5 5) @@ -12085,7 +12085,7 @@ ) ) (path "/f1f58b1e-d0e8-40e6-af70-45ec8ff536e0") - (sheetfile "ESPlant-Board.kicad_sch") + (sheetfile "Blumy-Board.kicad_sch") (attr smd exclude_from_bom) (fp_line (start -2.75 2.3) diff --git a/ESPlant-Board/ESPlant-Board.kicad_pro b/Blumy-Board/Blumy-Board.kicad_pro similarity index 99% rename from ESPlant-Board/ESPlant-Board.kicad_pro rename to Blumy-Board/Blumy-Board.kicad_pro index 257ee292..2c7d8c01 100644 --- a/ESPlant-Board/ESPlant-Board.kicad_pro +++ b/Blumy-Board/Blumy-Board.kicad_pro @@ -459,7 +459,7 @@ "pinned_symbol_libs": [] }, "meta": { - "filename": "ESPlant-Board.kicad_pro", + "filename": "Blumy-Board.kicad_pro", "version": 1 }, "net_settings": { @@ -603,9 +603,9 @@ "plot": "", "pos_files": "", "specctra_dsn": "", - "step": "../../../Downloads/ESPlant-Board.step", + "step": "../../../Downloads/Blumy-Board.step", "svg": "", - "vrml": "ESPlant-Board.wrl" + "vrml": "Blumy-Board.wrl" }, "page_layout_descr_file": "" }, diff --git a/ESPlant-Board/ESPlant-Board.kicad_sch b/Blumy-Board/Blumy-Board.kicad_sch similarity index 99% rename from ESPlant-Board/ESPlant-Board.kicad_sch rename to Blumy-Board/Blumy-Board.kicad_sch index 5842c9ec..ee1c335f 100644 --- a/ESPlant-Board/ESPlant-Board.kicad_sch +++ b/Blumy-Board/Blumy-Board.kicad_sch @@ -5,7 +5,7 @@ (uuid "fa2a81f8-bf39-4c28-beef-a6fc807c4564") (paper "A4") (title_block - (title "ES-Plant") + (title "Blumy") (date "2023-05-12") (rev "1.0") ) @@ -7765,7 +7765,7 @@ (uuid "9497b48b-5931-477f-8498-ff45e7f9a748") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C7") (unit 1) @@ -7832,7 +7832,7 @@ (uuid "8baab165-d871-4e61-9882-f537402f33ac") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR016") (unit 1) @@ -7920,7 +7920,7 @@ (uuid "5b11107f-fb9d-4a55-862e-1b734d04741e") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U4") (unit 1) @@ -7991,7 +7991,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U10") (unit 1) @@ -8058,7 +8058,7 @@ (uuid "486826fb-a9e3-4d82-b2e1-5b2f2d635415") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR01") (unit 1) @@ -8124,7 +8124,7 @@ (uuid "c64871a0-eabf-4a23-8dad-81e18a010a35") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR012") (unit 1) @@ -8191,7 +8191,7 @@ (uuid "c31289b8-0779-4f7c-9428-ac9ef67079fb") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR06") (unit 1) @@ -8285,7 +8285,7 @@ (uuid "028d5ff3-19a7-4c7a-888a-91c2a24bfeb2") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C8") (unit 1) @@ -8352,7 +8352,7 @@ (uuid "b5ff3e2d-81f6-4670-bfb6-a0c109c8957c") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR03") (unit 1) @@ -8419,7 +8419,7 @@ (uuid "8d9a39d2-bea1-4c71-a7bc-5a07d0985e23") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR013") (unit 1) @@ -8486,7 +8486,7 @@ (uuid "0a2f6263-ce3d-4d3c-a335-bbd3d0b42c43") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR022") (unit 1) @@ -8568,7 +8568,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "H1") (unit 1) @@ -8634,7 +8634,7 @@ (uuid "f45ae8f2-0b21-4c35-bc2d-d889eafd7de0") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR023") (unit 1) @@ -8705,7 +8705,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U2") (unit 1) @@ -8802,7 +8802,7 @@ (uuid "a33859cb-adcc-4423-90f0-56f16b45af87") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D1") (unit 1) @@ -8869,7 +8869,7 @@ (uuid "740fb291-7143-4f0c-95cf-a1ef0616e8f4") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR015") (unit 1) @@ -8957,7 +8957,7 @@ (uuid "40e8b7d6-c2a7-4d2c-8a91-1cb74a71cf9c") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U7") (unit 1) @@ -9044,7 +9044,7 @@ (uuid "f2bf2d00-ba7a-4f0c-ab2b-02941c9e6cb2") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C12") (unit 1) @@ -9110,7 +9110,7 @@ (uuid "7a6c056f-e284-40c8-95a1-33d24d7d959f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR024") (unit 1) @@ -9204,7 +9204,7 @@ (uuid "3417b76a-8a27-44ef-99f9-f6d8a0c0b9cd") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R4") (unit 1) @@ -9271,7 +9271,7 @@ (uuid "684a9458-7d09-4788-9ec9-b1bfd8b98efa") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR014") (unit 1) @@ -9358,7 +9358,7 @@ (uuid "c0ef8187-46c8-4474-874d-18c2811c640a") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C6") (unit 1) @@ -9452,7 +9452,7 @@ (uuid "9ac73c7e-201f-4b25-b437-280b3e28f4e5") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C11") (unit 1) @@ -9546,7 +9546,7 @@ (uuid "03d6f13d-8436-4506-9558-a58e700475ed") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R6") (unit 1) @@ -9628,7 +9628,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "H3") (unit 1) @@ -9710,7 +9710,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "H2") (unit 1) @@ -9804,7 +9804,7 @@ (uuid "0f778dcc-5202-466e-8098-c668091ea170") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C9") (unit 1) @@ -9898,7 +9898,7 @@ (uuid "48d41798-19fc-4fef-b13c-c2bcd7498f1d") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R12") (unit 1) @@ -9971,7 +9971,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "Flower1") (unit 1) @@ -10067,7 +10067,7 @@ (uuid "74445041-9822-445c-a8e0-5f558d0c74b4") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U6") (unit 1) @@ -10155,7 +10155,7 @@ (uuid "15fd67a8-6003-454b-97c4-5004e6083e5f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R15") (unit 1) @@ -10222,7 +10222,7 @@ (uuid "5c44bddf-1f55-4397-9256-fecccae60fc0") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR07") (unit 1) @@ -10319,7 +10319,7 @@ (uuid "082bc7b4-735d-4141-8058-ac91fcf0e7fe") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R10") (unit 1) @@ -10384,7 +10384,7 @@ (uuid "d7078689-784c-4488-b318-6235f3e0d8dc") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR020") (unit 1) @@ -10471,7 +10471,7 @@ (uuid "00243e6d-2c7e-4c26-9e8d-39a6a57c7d5f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C10") (unit 1) @@ -10538,7 +10538,7 @@ (uuid "36ac133b-9ae8-4dad-861d-42d26ec1860a") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR026") (unit 1) @@ -10605,7 +10605,7 @@ (uuid "199e60a0-a6a1-4cd2-bc36-d767caeb4fc8") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR011") (unit 1) @@ -10710,7 +10710,7 @@ (uuid "2e2af3cc-4018-443d-b020-d944c32576ab") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "REF1") (unit 1) @@ -10781,7 +10781,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U11") (unit 1) @@ -10875,7 +10875,7 @@ (uuid "2be5bb70-1a47-4384-85ec-acc0c8b3df49") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R9") (unit 1) @@ -10987,7 +10987,7 @@ (uuid "6ec4eba1-b226-46f9-bdcc-8dd4860ba1bd") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U8") (unit 1) @@ -11086,7 +11086,7 @@ (uuid "fd41529f-7f0a-4d18-9389-b523f7f47db3") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D2") (unit 1) @@ -11190,7 +11190,7 @@ (uuid "dc4d3209-2595-4aff-bbf1-dd1571a1ad85") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C3") (unit 1) @@ -11278,7 +11278,7 @@ (uuid "922dcf5e-61c8-4b80-8189-9c2d7e936d13") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C1") (unit 1) @@ -11372,7 +11372,7 @@ (uuid "f3859450-3ce8-40c2-ab73-baeac31fd5ea") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R11") (unit 1) @@ -11457,7 +11457,7 @@ (uuid "4fa43dab-9c0f-44c5-9e14-d9efcfbca2e8") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R14") (unit 1) @@ -11543,7 +11543,7 @@ (uuid "39f29a57-8398-4e60-90a4-fda2b86b319f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R5") (unit 1) @@ -11673,7 +11673,7 @@ (uuid "b52f60ff-abd8-4d20-a085-643e4d4396dc") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U1") (unit 1) @@ -11914,7 +11914,7 @@ (uuid "8cf744ed-b376-481e-8014-a45761f18dd1") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U13") (unit 1) @@ -11982,7 +11982,7 @@ (uuid "76c116b6-118c-44f5-8726-ab942445514f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR05") (unit 1) @@ -12049,7 +12049,7 @@ (uuid "6db3d390-1115-4beb-8795-8a5968d412fd") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR04") (unit 1) @@ -12135,7 +12135,7 @@ (uuid "35ad9c64-9f70-4e6e-b490-04cbdd62e899") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "L1") (unit 1) @@ -12231,7 +12231,7 @@ (uuid "6033670c-a7c9-4b8b-adc6-725d9e0b5b8b") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R3") (unit 1) @@ -12319,7 +12319,7 @@ (uuid "10af06cb-50d0-4a9c-b7a7-41d5ca57632f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R1") (unit 1) @@ -12385,7 +12385,7 @@ (uuid "3ae588c6-1a1e-4f8e-b452-fe068d305bd4") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR027") (unit 1) @@ -12489,7 +12489,7 @@ (uuid "2f1ea01f-9a4b-41fd-9efb-8948431a1829") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C4") (unit 1) @@ -12583,7 +12583,7 @@ (uuid "1c27d270-7050-4f19-a6f7-3b8932552d00") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C5") (unit 1) @@ -12674,7 +12674,7 @@ (uuid "00987417-7426-4887-8e0a-ad87b5e5cb9f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "J1") (unit 1) @@ -12774,7 +12774,7 @@ (uuid "a3a7c1b2-f9de-47c6-8d3f-a45af5e69b3f") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U3") (unit 1) @@ -12841,7 +12841,7 @@ (uuid "d5e623e4-3f61-4d30-b5d8-67bb590f069e") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR017") (unit 1) @@ -12908,7 +12908,7 @@ (uuid "6cd4e946-8f5a-4c43-ad62-3f4857a6d9b8") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR010") (unit 1) @@ -12995,7 +12995,7 @@ (uuid "9a8049bc-d9d8-4913-b7ed-c567cceea01d") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C2") (unit 1) @@ -13080,7 +13080,7 @@ (uuid "bba5ad3b-3634-483d-bfda-34003dc43c36") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R13") (unit 1) @@ -13151,7 +13151,7 @@ ) ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U12") (unit 1) @@ -13218,7 +13218,7 @@ (uuid "9cebce4e-e3a5-4eef-a617-f90a41fff5f0") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR08") (unit 1) @@ -13315,7 +13315,7 @@ (uuid "cb3407e1-4ddb-4094-acf0-18cb5e7a1bb0") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D3") (unit 1) @@ -13412,7 +13412,7 @@ (uuid "8b73ef60-3b95-4c20-a4bd-ee6f3a3445ce") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R2") (unit 1) @@ -13526,7 +13526,7 @@ (uuid "e4bf0d4e-47b9-4259-9c49-1b8040916cf8") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "BZ1") (unit 1) @@ -13592,7 +13592,7 @@ (uuid "e46bfbd9-22e4-488d-a3f0-ddb4848e10cb") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR018") (unit 1) @@ -13687,7 +13687,7 @@ (uuid "4eae5a10-c4fb-4f70-b9f2-8cde399be507") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U9") (unit 1) @@ -13754,7 +13754,7 @@ (uuid "4d7a18a1-b85c-433e-b5d8-effd039ce85a") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR021") (unit 1) @@ -13860,7 +13860,7 @@ (uuid "395e1f8c-9719-4324-b368-2374fc575fe3") ) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R8") (unit 1) diff --git a/Blumy-Board/README.md b/Blumy-Board/README.md new file mode 100644 index 00000000..6f903364 --- /dev/null +++ b/Blumy-Board/README.md @@ -0,0 +1,14 @@ +# This project uses KiCad 7 + +## Plugins: + +- [Fabrication ToolKit](https://github.com/bennymeg/JLC-Plugin-for-KiCad) + +## Other software + +- [JLC2KiCadLib Downloader](https://github.com/TousstNicolas/JLC2KiCad_lib) +- inside Blumy-Board run `JLC2KiCadLib C94599 C1525 C1525 C1527 C16780 C15195 C15525 C2297 C81598 C84256 C26082 C25905 C11702 C25744 C4109 C318884 C318884 C2827328 C146233 C6186 C778186 C5736265 C10418 C2997435 -dir lib -model_dir packages3d -footprint_lib CustomFootprints.pretty -symbol_lib_dir symbol -symbol_lib Custom_Parts` + +## PCB Manufacturer + +- [JLCPCB](https://jlcpcb.com/) \ No newline at end of file diff --git a/ESPlant-Board/imgs/Flower.png b/Blumy-Board/imgs/Flower.png similarity index 100% rename from ESPlant-Board/imgs/Flower.png rename to Blumy-Board/imgs/Flower.png diff --git a/ESPlant-Board/imgs/Logo.kicad_sym b/Blumy-Board/imgs/Logo.kicad_sym similarity index 100% rename from ESPlant-Board/imgs/Logo.kicad_sym rename to Blumy-Board/imgs/Logo.kicad_sym diff --git a/ESPlant-Board/imgs/Logo.png b/Blumy-Board/imgs/Logo.png similarity index 100% rename from ESPlant-Board/imgs/Logo.png rename to Blumy-Board/imgs/Logo.png diff --git a/ESPlant-Board/imgs/Spring.png b/Blumy-Board/imgs/Spring.png similarity index 100% rename from ESPlant-Board/imgs/Spring.png rename to Blumy-Board/imgs/Spring.png diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/AAA Battery-spring.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/C0402.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/C0402.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/C0402.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/C0402.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/C0805.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/C0805.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/C0805.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/C0805.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/CAP-SMD_L3.2-W1.6-RD-C7171.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/CASE-B_3528.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/Flower.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/Flower.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/Flower.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/Flower.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/IND-SMD_L3.5-W3.0.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/L0806.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/L0806.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/L0806.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/L0806.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/LED0805-R-RD.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/MICRO-USB-SMD_5P-P0.65-H-F_C10418.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/MouseBites5mm.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/PinHeader_1x03_P2.54mm_Vertical_SMD.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/R0402.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/R0402.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/R0402.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/R0402.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SENSOR-SMD-6_AHT20.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SENSOR-SMD_L3.0-W3.0-P1.00-BR.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SENSORS-SMD_ALS-PT19.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SOD-123F_L2.7-W1.6-LS3.8-RD.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/SW-SMD_MK-12C02-G025.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/Sensor-Tip.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/USB-C-SMD_G-SWITCH_GT-USB-7010EN.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod b/Blumy-Board/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod rename to Blumy-Board/lib/CustomFootprints.pretty/WIFIM-SMD_61P-L16.6-W13.2-P0.80-ESP32-C6-MINI-1-N4.kicad_mod diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/BUZ-SMD_4P-L8.5-W8.5-P8.50-BR.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BatteryContact.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/BatteryContact.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BatteryContact.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/BatteryContact.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BatterySpring.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/BatterySpring.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/BatterySpring.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/BatterySpring.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0402.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0402.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0402.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0402.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0402.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0402.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0402.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0402.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0805.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0805.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0805.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0805.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0805.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0805.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/C0805.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/C0805.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/CAP-SMD_L3.2-W1.6-RD-C7171.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/CASE-B_3528.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/DSBGA-8_L1.8-W1.1-R2-C4-P0.40-BR.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/ESP32-C3-MINI-1.STEP diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/IND-SMD_L3.5-W3.0.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/L0806.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/L0806.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/L0806.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/L0806.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-R-RD.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/LED0805-RD_RED.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/MICRO-USB-SMD_5P-P0.65-H-F_C10418.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/R0402.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/R0402.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/R0402.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/R0402.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/R0402.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/R0402.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/R0402.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/R0402.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD-6_AHT20.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSOR-SMD_L3.0-W3.0-P1.00-BR.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SENSORS-SMD_ALS-PT19.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOD-123F_L2.7-W1.6-LS3.8-RD.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_4P-L5.1-W5.1-P3.70-LS6.5-TL-2.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_L3.9-W3.0-P4.45.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/SW-SMD_MK-12C02-G025.wrl diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/USB-C-SMD_G-SWITCH_GT-USB-7010EN.step diff --git a/ESPlant-Board/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step b/Blumy-Board/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step similarity index 100% rename from ESPlant-Board/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step rename to Blumy-Board/lib/CustomFootprints.pretty/packages3d/VSON-10_L3.0-W3.0-P0.50-BL-EP_TPS62410DRCR.step diff --git a/ESPlant-Board/lib/symbol/Custom_Parts.bak b/Blumy-Board/lib/symbol/Custom_Parts.bak similarity index 100% rename from ESPlant-Board/lib/symbol/Custom_Parts.bak rename to Blumy-Board/lib/symbol/Custom_Parts.bak diff --git a/ESPlant-Board/lib/symbol/Custom_Parts.kicad_sym b/Blumy-Board/lib/symbol/Custom_Parts.kicad_sym similarity index 100% rename from ESPlant-Board/lib/symbol/Custom_Parts.kicad_sym rename to Blumy-Board/lib/symbol/Custom_Parts.kicad_sym diff --git a/ESPlant-Board/lib/symbol/Flower.kicad_sym b/Blumy-Board/lib/symbol/Flower.kicad_sym similarity index 100% rename from ESPlant-Board/lib/symbol/Flower.kicad_sym rename to Blumy-Board/lib/symbol/Flower.kicad_sym diff --git a/ESPlant-Board/v1.0/ESPlant-Board.kicad_pcb b/Blumy-Board/v1.0/Blumy-Board.kicad_pcb similarity index 99% rename from ESPlant-Board/v1.0/ESPlant-Board.kicad_pcb rename to Blumy-Board/v1.0/Blumy-Board.kicad_pcb index bc3657e7..abe6c14f 100644 --- a/ESPlant-Board/v1.0/ESPlant-Board.kicad_pcb +++ b/Blumy-Board/v1.0/Blumy-Board.kicad_pcb @@ -126,7 +126,7 @@ (tags "SPST Tactile Switch") (property "LCSC" "C318884") (property "MPN" "C318884") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Push button switch, generic, two pins") (property "ki_keywords" "switch normally-open pushbutton push-button") @@ -303,7 +303,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C2297") (property "MPN" "C2297") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Light emitting diode") (property "ki_keywords" "LED diode") @@ -364,7 +364,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -421,7 +421,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C26083") (property "MPN" "C26083") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -478,7 +478,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -534,7 +534,7 @@ (tags "Through hole pin header THT 2x03 2.54mm double row") (property "JLCPCB Rotation Offset" "") (property "MPN" "") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "exclude_from_bom" "") (property "ki_description" "Generic connector, double row, 02x03, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)") @@ -614,7 +614,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "D") (property "Sim.Pins" "1=K 2=A") @@ -688,7 +688,7 @@ (tags "BAT-SMD_BH-AAA-B5AA001 footprint") (property "LCSC" "C964881") (property "MPN" "C964881") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C964882") (path "/df9ab3b7-3cf6-41c0-90de-a555e707030e") @@ -746,7 +746,7 @@ (net 27 "Net-(U2-+-Pad3)") (pinfunction "+") (pintype "power_in") (tstamp e11edbed-bc1d-4729-a6f9-982d25cd16b4)) (pad "4" smd rect (at 27.875032 5.5 90) (size 11.000025 7.000025) (layers "F.Cu" "F.Paste" "F.Mask") (net 12 "GND") (pinfunction "-") (pintype "power_in") (tstamp 3b92f67b-39a7-4d81-9639-00ca1a5ab2b4)) - (model "D:/GitProjects/ESPlant/ESPlant-Board/lib/./packages3d/BAT-SMD_BH-AAA-B5AA001.wrl" + (model "D:/GitProjects/Blumy/Blumy-Board/lib/./packages3d/BAT-SMD_BH-AAA-B5AA001.wrl" (offset (xyz 0.0000253999996185 -0.0000253999996185 0.0999235985)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) @@ -761,7 +761,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -818,7 +818,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C52923") (property "MPN" "C52923") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -876,7 +876,7 @@ (property "JLCPCB Rotation Offset" "-90") (property "LCSC" "C82891") (property "MPN" "C82891") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "802.11 b/g/n Wi-Fi Module") (property "ki_keywords" "802.11 Wi-Fi") @@ -1013,7 +1013,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1070,7 +1070,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "D") (property "Sim.Pins" "1=K 2=A") @@ -1145,7 +1145,7 @@ (property "JLCPCB Rotation Offset" "180") (property "LCSC" "C2146") (property "MPN" "C2146") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "NPN") (property "Sim.Pins" "1=C 2=B 3=E") @@ -1213,7 +1213,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1270,7 +1270,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25741") (property "MPN" "C25741") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1327,7 +1327,7 @@ (property "JLCPCB Rotation Offset" "180") (property "LCSC" "C2146") (property "MPN" "C2146") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "NPN") (property "Sim.Pins" "1=C 2=B 3=E") @@ -1395,7 +1395,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1452,7 +1452,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1509,7 +1509,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1566,7 +1566,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1623,7 +1623,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1680,7 +1680,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -7531,7 +7531,7 @@ (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp d8595ba6-13f8-4f49-b7fb-398d60a234ac)) (gr_line (start 148.00058 184.354819) (end 147.954 141.304) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e0ce5fbb-4c0d-445e-8112-26e8c0d57403)) - (gr_text "ES-Plant V1.0" (at 152.526 11.256) (layer "B.SilkS") (tstamp a07e1eaf-4483-4987-9950-327a8d909bf7) + (gr_text "Blumy V1.0" (at 152.526 11.256) (layer "B.SilkS") (tstamp a07e1eaf-4483-4987-9950-327a8d909bf7) (effects (font (size 1.8 1.8) (thickness 0.3) bold) (justify left bottom mirror)) ) (gr_text "Reset" (at 136.016 35.64) (layer "F.SilkS") (tstamp 6b20936c-0e54-4682-b45c-7e1b44747afb) diff --git a/ESPlant-Board/v1.0/ESPlant-Board.kicad_pro b/Blumy-Board/v1.0/Blumy-Board.kicad_pro similarity index 99% rename from ESPlant-Board/v1.0/ESPlant-Board.kicad_pro rename to Blumy-Board/v1.0/Blumy-Board.kicad_pro index 475302d0..aa5e1e6d 100644 --- a/ESPlant-Board/v1.0/ESPlant-Board.kicad_pro +++ b/Blumy-Board/v1.0/Blumy-Board.kicad_pro @@ -412,7 +412,7 @@ "pinned_symbol_libs": [] }, "meta": { - "filename": "ESPlant-Board.kicad_pro", + "filename": "Blumy-Board.kicad_pro", "version": 1 }, "net_settings": { diff --git a/ESPlant-Board/v1.0/ESPlant-Board.kicad_sch b/Blumy-Board/v1.0/Blumy-Board.kicad_sch similarity index 98% rename from ESPlant-Board/v1.0/ESPlant-Board.kicad_sch rename to Blumy-Board/v1.0/Blumy-Board.kicad_sch index 442d02c2..8efe3fe1 100644 --- a/ESPlant-Board/v1.0/ESPlant-Board.kicad_sch +++ b/Blumy-Board/v1.0/Blumy-Board.kicad_sch @@ -1553,7 +1553,7 @@ (pin "1" (uuid 7fb35e25-e805-4100-872c-f6b8395a0220)) (pin "2" (uuid 640caebb-da52-41c9-9a1a-e8129d0d644a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R1") (unit 1) ) @@ -1589,7 +1589,7 @@ (pin "5" (uuid b64828c5-f133-4923-bec5-a9fbe8b4ee2d)) (pin "6" (uuid 25b3bacf-9561-4d5b-869c-a7f793c074b8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "J2") (unit 1) ) @@ -1634,7 +1634,7 @@ (pin "2" (uuid 214bbfa9-b5c1-4d64-a32a-cbd3cceeb885)) (pin "3" (uuid 36ccc417-a033-452e-8c80-383406208c74)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "Q1") (unit 1) ) @@ -1666,7 +1666,7 @@ (pin "1" (uuid b9efd4ea-9705-4ebf-84cb-35891e743018)) (pin "2" (uuid a0c53691-00b6-4b03-a018-9e6706f3b32f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "SW1") (unit 1) ) @@ -1691,7 +1691,7 @@ ) (pin "1" (uuid fbbc6970-1e8e-4ba5-80e4-4d143df46486)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR013") (unit 1) ) @@ -1732,7 +1732,7 @@ (pin "1" (uuid be18ed8f-8a95-4686-93fd-b5d8beacea64)) (pin "2" (uuid 92792746-e65d-48f2-96c2-8b6ebc4ae47f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D3") (unit 1) ) @@ -1757,7 +1757,7 @@ ) (pin "1" (uuid ec88617b-07ef-4b6c-8ab3-612d51ca99ce)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR06") (unit 1) ) @@ -1792,7 +1792,7 @@ (pin "1" (uuid 1b15f76e-a4ec-4a65-98c1-7cfe45c36015)) (pin "2" (uuid 845c9ed8-9e25-4ea0-a383-b844ab80cae8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C1") (unit 1) ) @@ -1817,7 +1817,7 @@ ) (pin "1" (uuid aa10b831-edd8-453f-aef0-19a0444e444e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#FLG01") (unit 1) ) @@ -1852,7 +1852,7 @@ (pin "1" (uuid 0e2ad1ca-3856-47ed-a7a0-5c15692e60fd)) (pin "2" (uuid 11c16eb8-b7c2-4b5b-8842-25357df78a03)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R3") (unit 1) ) @@ -1877,7 +1877,7 @@ ) (pin "1" (uuid 02586a37-e854-4be0-bfdb-b9be1773159e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR01") (unit 1) ) @@ -1902,7 +1902,7 @@ ) (pin "1" (uuid 56a3af15-fee6-49b6-8d06-68e57b8d710f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR014") (unit 1) ) @@ -1927,7 +1927,7 @@ ) (pin "1" (uuid f2744ab7-ef6c-4558-8854-f8bdbc4b29d4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR012") (unit 1) ) @@ -1952,7 +1952,7 @@ ) (pin "1" (uuid f948fa9f-326a-47b2-94db-910ce25738f1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR02") (unit 1) ) @@ -1977,7 +1977,7 @@ ) (pin "1" (uuid e6e7e8fd-f665-4ca6-98c9-4a28d25e1c4c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR03") (unit 1) ) @@ -2002,7 +2002,7 @@ ) (pin "1" (uuid 36f1565e-36c8-4732-8047-b6a4b491320e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR07") (unit 1) ) @@ -2027,7 +2027,7 @@ ) (pin "1" (uuid bdea49a3-ad27-4fef-9ee0-2c0e1669fc90)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR08") (unit 1) ) @@ -2062,7 +2062,7 @@ (pin "1" (uuid c359f28b-ca86-47a9-8e6a-11721042c41c)) (pin "2" (uuid 7efd3ebe-cead-47cc-8555-99972b9d7573)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R9") (unit 1) ) @@ -2097,7 +2097,7 @@ (pin "1" (uuid 23044716-91d1-4d02-8006-cdc2299d7350)) (pin "2" (uuid 1c6b13b6-6754-4b96-b6a6-6009152bfc22)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C3") (unit 1) ) @@ -2132,7 +2132,7 @@ (pin "1" (uuid 56a8c39a-1b5c-444c-b365-fedf059aa948)) (pin "2" (uuid 25dfb3ec-76a4-4d2c-8b32-1880bcb66ef3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R4") (unit 1) ) @@ -2157,7 +2157,7 @@ ) (pin "1" (uuid 18b98b6d-1cb8-495f-8dc1-af6ee6d477f0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR04") (unit 1) ) @@ -2182,7 +2182,7 @@ ) (pin "1" (uuid 7cb94eed-6fa1-4996-88e5-c2c3c2de7773)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR010") (unit 1) ) @@ -2207,7 +2207,7 @@ ) (pin "1" (uuid 49a2f84d-3554-4d2a-a6c9-516be242bc79)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR011") (unit 1) ) @@ -2242,7 +2242,7 @@ (pin "1" (uuid 9a8f32f0-7b37-43d4-a30b-f2203ed0fac1)) (pin "2" (uuid 39832346-82c5-4580-b6ee-41bdd5c1200e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C5") (unit 1) ) @@ -2277,7 +2277,7 @@ (pin "1" (uuid b116f103-de71-48d5-93c0-a8de8e434a77)) (pin "2" (uuid 2a7b6996-28f5-49d1-b399-3d292674c385)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R6") (unit 1) ) @@ -2312,7 +2312,7 @@ (pin "1" (uuid c84d2418-238e-49b4-96d3-4e681eaaafc8)) (pin "2" (uuid 4f50d8b5-003e-4413-b12e-fb44122163aa)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D4") (unit 1) ) @@ -2353,7 +2353,7 @@ (pin "1" (uuid fd0a339d-8a02-454c-818d-23644d413134)) (pin "2" (uuid eed3b374-68a6-4d9a-a6c0-3601678959ef)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D2") (unit 1) ) @@ -2385,7 +2385,7 @@ (pin "1" (uuid c64dfb80-52db-4d28-b700-5b77c4e926b8)) (pin "2" (uuid dfff7fbc-a477-4b82-b95d-6284b3495a85)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C4") (unit 1) ) @@ -2410,7 +2410,7 @@ ) (pin "1" (uuid d117178b-754b-4c6d-941a-ee8b311fe4a3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR016") (unit 1) ) @@ -2445,7 +2445,7 @@ (pin "1" (uuid e80c3b14-c143-4929-b58d-900cc2c69780)) (pin "2" (uuid a1036487-8fe8-4cdd-8335-712f96c3be5f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R10") (unit 1) ) @@ -2490,7 +2490,7 @@ (pin "2" (uuid 22465dcf-0274-449d-a7b7-ad7c62c93370)) (pin "3" (uuid 505ebbc1-263c-4910-aa5e-083d470b533c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "Q2") (unit 1) ) @@ -2525,7 +2525,7 @@ (pin "1" (uuid 5ddf6393-0102-46f9-8d25-f9e20d4a11ba)) (pin "2" (uuid 5dcd122c-b20e-4bc6-91bb-65d81a0aa7ed)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R2") (unit 1) ) @@ -2559,7 +2559,7 @@ (pin "3" (uuid 3c36873d-18de-4f36-84cf-c9a43eff2bab)) (pin "4" (uuid 8e16dd41-2a8b-4966-ac58-ea59b071f2d1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U2") (unit 1) ) @@ -2584,7 +2584,7 @@ ) (pin "1" (uuid 2b3ffe69-f7a7-4a9b-9a9d-8c1234b70803)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR09") (unit 1) ) @@ -2609,7 +2609,7 @@ ) (pin "1" (uuid 25a0686f-2662-4500-ac5f-70d92b9e4bce)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#FLG02") (unit 1) ) @@ -2644,7 +2644,7 @@ (pin "1" (uuid 5c3017a7-12e6-4061-91d9-4c9b556cf710)) (pin "2" (uuid 33643463-fde6-4918-b5c2-e69410fd2c7a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C2") (unit 1) ) @@ -2702,7 +2702,7 @@ (pin "8" (uuid 985fcea6-3f5c-43f6-92de-346bf4a3ba6b)) (pin "9" (uuid 3bbd6d82-2b51-47c4-b38e-6f58b96b9c19)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U1") (unit 1) ) @@ -2737,7 +2737,7 @@ (pin "1" (uuid 550c5929-f854-420d-8739-4fd007eae3ca)) (pin "2" (uuid 1cc1185c-7d99-4cb2-a97d-30af9ed85b46)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R7") (unit 1) ) @@ -2772,7 +2772,7 @@ (pin "1" (uuid b6300a5d-55b4-49d0-9155-0d6f71a35ecb)) (pin "2" (uuid d6a3a1d8-ba43-4103-9075-44177d6a5313)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R5") (unit 1) ) @@ -2807,7 +2807,7 @@ (pin "1" (uuid 4145efca-9087-4667-b3f3-ba4777872457)) (pin "2" (uuid c30197e3-79c4-4166-b7ae-d9fb8c67a1b5)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R8") (unit 1) ) diff --git a/ESPlant-Board/v1.0/ESPlant-Board.svg b/Blumy-Board/v1.0/Blumy-Board.svg similarity index 99% rename from ESPlant-Board/v1.0/ESPlant-Board.svg rename to Blumy-Board/v1.0/Blumy-Board.svg index 5528be84..52b8e492 100644 --- a/ESPlant-Board/v1.0/ESPlant-Board.svg +++ b/Blumy-Board/v1.0/Blumy-Board.svg @@ -7,7 +7,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="297.0022mm" height="210.0072mm" viewBox="0.0000 0.0000 297.0022 210.0072"> -SVG Image created as ESPlant-Board.svg date 2023/05/12 17:21:09 +SVG Image created as Blumy-Board.svg date 2023/05/12 17:21:09 Image generated by Eeschema-SVG Title: ES-Plant -Title: ES-Plant +text-anchor="start" opacity="0">Title: Blumy +Title: Blumy @@ -2678,8 +2678,8 @@ stroke:#840000; stroke-width:0.1524; stroke-opacity:1; stroke-linecap:round; stroke-linejoin:round;"> File: ESPlant-Board.kicad_sch -File: ESPlant-Board.kicad_sch +text-anchor="start" opacity="0">File: Blumy-Board.kicad_sch +File: Blumy-Board.kicad_sch diff --git a/ESPlant-Board/v1.1/ESPlant-Board.kicad_pcb b/Blumy-Board/v1.1/Blumy-Board.kicad_pcb similarity index 99% rename from ESPlant-Board/v1.1/ESPlant-Board.kicad_pcb rename to Blumy-Board/v1.1/Blumy-Board.kicad_pcb index b5aa44fd..3eca4936 100644 --- a/ESPlant-Board/v1.1/ESPlant-Board.kicad_pcb +++ b/Blumy-Board/v1.1/Blumy-Board.kicad_pcb @@ -126,7 +126,7 @@ (tags "SPST Tactile Switch") (property "LCSC" "C318884") (property "MPN" "C318884") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Push button switch, generic, two pins") (property "ki_keywords" "switch normally-open pushbutton push-button") @@ -303,7 +303,7 @@ (property "JLCPCB Rotation Offset" "180") (property "LCSC" "C2146") (property "MPN" "C2146") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "NPN") (property "Sim.Pins" "1=C 2=B 3=E") @@ -369,7 +369,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25741") (property "MPN" "C25741") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -425,7 +425,7 @@ (tags "BAT-SMD_BH-AAA-B5AA001 footprint") (property "LCSC" "C964882") (property "MPN" "C964881") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C964882") (path "/df9ab3b7-3cf6-41c0-90de-a555e707030e") @@ -483,7 +483,7 @@ (net 27 "Net-(U2-+-Pad3)") (pinfunction "+") (pintype "power_out") (tstamp e253e0e0-c508-4e8a-a67e-a5642f01b626)) (pad "4" smd rect (at 27.875032 5.5 270) (size 11.000025 7.000025) (layers "F.Cu" "F.Paste" "F.Mask") (net 12 "GND") (pinfunction "-") (pintype "power_out") (tstamp fc9bced7-f359-4ec7-ac40-806a41aabdf5)) - (model "D:/GitProjects/ESPlant/ESPlant-Board/lib/./packages3d/BAT-SMD_BH-AAA-B5AA001.wrl" + (model "D:/GitProjects/Blumy/Blumy-Board/lib/./packages3d/BAT-SMD_BH-AAA-B5AA001.wrl" (offset (xyz 0.0000253999996185 -0.0000253999996185 0.0999235985)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) @@ -499,7 +499,7 @@ (property "JLCPCB Rotation Offset" "-90") (property "LCSC" "C82891") (property "MPN" "C82891") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "802.11 b/g/n Wi-Fi Module") (property "ki_keywords" "802.11 Wi-Fi") @@ -636,7 +636,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -693,7 +693,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -750,7 +750,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C26083") (property "MPN" "C26083") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -807,7 +807,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C52923") (property "MPN" "C52923") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -864,7 +864,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -921,7 +921,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -978,7 +978,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1035,7 +1035,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "D") (property "Sim.Pins" "1=K 2=A") @@ -1109,7 +1109,7 @@ (tags "Through hole pin header THT 2x03 2.54mm double row") (property "JLCPCB Rotation Offset" "") (property "MPN" "") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "exclude_from_bom" "") (property "ki_description" "Generic connector, double row, 02x03, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)") @@ -1189,7 +1189,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1246,7 +1246,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C2297") (property "MPN" "C2297") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Light emitting diode") (property "ki_keywords" "LED diode") @@ -1307,7 +1307,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1364,7 +1364,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1421,7 +1421,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1478,7 +1478,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1535,7 +1535,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1592,7 +1592,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "D") (property "Sim.Pins" "1=K 2=A") @@ -1667,7 +1667,7 @@ (property "JLCPCB Rotation Offset" "180") (property "LCSC" "C2146") (property "MPN" "C2146") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "Sim.Device" "NPN") (property "Sim.Pins" "1=C 2=B 3=E") @@ -7527,7 +7527,7 @@ (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a9bd1041-8a34-44b8-b71c-3c087e3c60de)) (gr_line (start 213.43942 214.834819) (end 213.486 158.83) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp d8595ba6-13f8-4f49-b7fb-398d60a234ac)) - (gr_text "ES-Plant V1.1" (at 231.266 42.498) (layer "B.SilkS") (tstamp 70dc7ace-a54d-4c10-9cb5-bb7c60a4f04a) + (gr_text "Blumy V1.1" (at 231.266 42.498) (layer "B.SilkS") (tstamp 70dc7ace-a54d-4c10-9cb5-bb7c60a4f04a) (effects (font (size 2 2) (thickness 0.3)) (justify left bottom mirror)) ) (gr_text "JLCJLCJLCJLC" (at 225.424 170.006) (layer "B.SilkS") (tstamp 8389726d-8f7f-4158-85cb-112505d6f0ba) diff --git a/ESPlant-Board/v1.1/ESPlant-Board.kicad_pro b/Blumy-Board/v1.1/Blumy-Board.kicad_pro similarity index 99% rename from ESPlant-Board/v1.1/ESPlant-Board.kicad_pro rename to Blumy-Board/v1.1/Blumy-Board.kicad_pro index baa38034..e0d633b8 100644 --- a/ESPlant-Board/v1.1/ESPlant-Board.kicad_pro +++ b/Blumy-Board/v1.1/Blumy-Board.kicad_pro @@ -412,7 +412,7 @@ "pinned_symbol_libs": [] }, "meta": { - "filename": "ESPlant-Board.kicad_pro", + "filename": "Blumy-Board.kicad_pro", "version": 1 }, "net_settings": { diff --git a/ESPlant-Board/v1.1/ESPlant-Board.kicad_sch b/Blumy-Board/v1.1/Blumy-Board.kicad_sch similarity index 98% rename from ESPlant-Board/v1.1/ESPlant-Board.kicad_sch rename to Blumy-Board/v1.1/Blumy-Board.kicad_sch index 97edc0b7..cfe71f67 100644 --- a/ESPlant-Board/v1.1/ESPlant-Board.kicad_sch +++ b/Blumy-Board/v1.1/Blumy-Board.kicad_sch @@ -5,7 +5,7 @@ (paper "A4") (title_block - (title "ES-Plant") + (title "Blumy") (date "2023-05-12") (rev "1.0") ) @@ -1481,7 +1481,7 @@ (pin "1" (uuid 7fb35e25-e805-4100-872c-f6b8395a0220)) (pin "2" (uuid 640caebb-da52-41c9-9a1a-e8129d0d644a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R1") (unit 1) ) @@ -1517,7 +1517,7 @@ (pin "5" (uuid b64828c5-f133-4923-bec5-a9fbe8b4ee2d)) (pin "6" (uuid 25b3bacf-9561-4d5b-869c-a7f793c074b8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "J2") (unit 1) ) @@ -1562,7 +1562,7 @@ (pin "2" (uuid d53c32b6-4b44-4146-bdc6-9e1f85912eb0)) (pin "3" (uuid db470b1b-cc9b-42f3-8f2a-a1f2bdf5bd7f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "Q1") (unit 1) ) @@ -1594,7 +1594,7 @@ (pin "1" (uuid b9efd4ea-9705-4ebf-84cb-35891e743018)) (pin "2" (uuid a0c53691-00b6-4b03-a018-9e6706f3b32f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "SW1") (unit 1) ) @@ -1619,7 +1619,7 @@ ) (pin "1" (uuid fbbc6970-1e8e-4ba5-80e4-4d143df46486)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR013") (unit 1) ) @@ -1660,7 +1660,7 @@ (pin "1" (uuid be18ed8f-8a95-4686-93fd-b5d8beacea64)) (pin "2" (uuid 92792746-e65d-48f2-96c2-8b6ebc4ae47f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D3") (unit 1) ) @@ -1685,7 +1685,7 @@ ) (pin "1" (uuid ec88617b-07ef-4b6c-8ab3-612d51ca99ce)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR06") (unit 1) ) @@ -1720,7 +1720,7 @@ (pin "1" (uuid 1b15f76e-a4ec-4a65-98c1-7cfe45c36015)) (pin "2" (uuid 845c9ed8-9e25-4ea0-a383-b844ab80cae8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C1") (unit 1) ) @@ -1755,7 +1755,7 @@ (pin "1" (uuid 0e2ad1ca-3856-47ed-a7a0-5c15692e60fd)) (pin "2" (uuid 11c16eb8-b7c2-4b5b-8842-25357df78a03)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R3") (unit 1) ) @@ -1780,7 +1780,7 @@ ) (pin "1" (uuid 02586a37-e854-4be0-bfdb-b9be1773159e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR01") (unit 1) ) @@ -1805,7 +1805,7 @@ ) (pin "1" (uuid 56a3af15-fee6-49b6-8d06-68e57b8d710f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR014") (unit 1) ) @@ -1830,7 +1830,7 @@ ) (pin "1" (uuid f2744ab7-ef6c-4558-8854-f8bdbc4b29d4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR012") (unit 1) ) @@ -1855,7 +1855,7 @@ ) (pin "1" (uuid f948fa9f-326a-47b2-94db-910ce25738f1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR02") (unit 1) ) @@ -1880,7 +1880,7 @@ ) (pin "1" (uuid e6e7e8fd-f665-4ca6-98c9-4a28d25e1c4c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR03") (unit 1) ) @@ -1905,7 +1905,7 @@ ) (pin "1" (uuid 36f1565e-36c8-4732-8047-b6a4b491320e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR07") (unit 1) ) @@ -1930,7 +1930,7 @@ ) (pin "1" (uuid bdea49a3-ad27-4fef-9ee0-2c0e1669fc90)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR08") (unit 1) ) @@ -1965,7 +1965,7 @@ (pin "1" (uuid c359f28b-ca86-47a9-8e6a-11721042c41c)) (pin "2" (uuid 7efd3ebe-cead-47cc-8555-99972b9d7573)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R9") (unit 1) ) @@ -2000,7 +2000,7 @@ (pin "1" (uuid 23044716-91d1-4d02-8006-cdc2299d7350)) (pin "2" (uuid 1c6b13b6-6754-4b96-b6a6-6009152bfc22)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C3") (unit 1) ) @@ -2035,7 +2035,7 @@ (pin "1" (uuid 56a8c39a-1b5c-444c-b365-fedf059aa948)) (pin "2" (uuid 25dfb3ec-76a4-4d2c-8b32-1880bcb66ef3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R4") (unit 1) ) @@ -2060,7 +2060,7 @@ ) (pin "1" (uuid 18b98b6d-1cb8-495f-8dc1-af6ee6d477f0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR04") (unit 1) ) @@ -2085,7 +2085,7 @@ ) (pin "1" (uuid 7cb94eed-6fa1-4996-88e5-c2c3c2de7773)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR010") (unit 1) ) @@ -2110,7 +2110,7 @@ ) (pin "1" (uuid 49a2f84d-3554-4d2a-a6c9-516be242bc79)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR011") (unit 1) ) @@ -2145,7 +2145,7 @@ (pin "1" (uuid 9a8f32f0-7b37-43d4-a30b-f2203ed0fac1)) (pin "2" (uuid 39832346-82c5-4580-b6ee-41bdd5c1200e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C5") (unit 1) ) @@ -2180,7 +2180,7 @@ (pin "1" (uuid b116f103-de71-48d5-93c0-a8de8e434a77)) (pin "2" (uuid 2a7b6996-28f5-49d1-b399-3d292674c385)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R6") (unit 1) ) @@ -2215,7 +2215,7 @@ (pin "1" (uuid c84d2418-238e-49b4-96d3-4e681eaaafc8)) (pin "2" (uuid 4f50d8b5-003e-4413-b12e-fb44122163aa)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D4") (unit 1) ) @@ -2256,7 +2256,7 @@ (pin "1" (uuid fd0a339d-8a02-454c-818d-23644d413134)) (pin "2" (uuid eed3b374-68a6-4d9a-a6c0-3601678959ef)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D2") (unit 1) ) @@ -2288,7 +2288,7 @@ (pin "1" (uuid c64dfb80-52db-4d28-b700-5b77c4e926b8)) (pin "2" (uuid dfff7fbc-a477-4b82-b95d-6284b3495a85)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C4") (unit 1) ) @@ -2313,7 +2313,7 @@ ) (pin "1" (uuid d117178b-754b-4c6d-941a-ee8b311fe4a3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR016") (unit 1) ) @@ -2348,7 +2348,7 @@ (pin "1" (uuid e80c3b14-c143-4929-b58d-900cc2c69780)) (pin "2" (uuid a1036487-8fe8-4cdd-8335-712f96c3be5f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R10") (unit 1) ) @@ -2393,7 +2393,7 @@ (pin "2" (uuid 22465dcf-0274-449d-a7b7-ad7c62c93370)) (pin "3" (uuid 505ebbc1-263c-4910-aa5e-083d470b533c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "Q2") (unit 1) ) @@ -2428,7 +2428,7 @@ (pin "1" (uuid 5ddf6393-0102-46f9-8d25-f9e20d4a11ba)) (pin "2" (uuid 5dcd122c-b20e-4bc6-91bb-65d81a0aa7ed)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R2") (unit 1) ) @@ -2462,7 +2462,7 @@ (pin "3" (uuid 3c36873d-18de-4f36-84cf-c9a43eff2bab)) (pin "4" (uuid 8e16dd41-2a8b-4966-ac58-ea59b071f2d1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U2") (unit 1) ) @@ -2487,7 +2487,7 @@ ) (pin "1" (uuid 2b3ffe69-f7a7-4a9b-9a9d-8c1234b70803)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR09") (unit 1) ) @@ -2522,7 +2522,7 @@ (pin "1" (uuid 5c3017a7-12e6-4061-91d9-4c9b556cf710)) (pin "2" (uuid 33643463-fde6-4918-b5c2-e69410fd2c7a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C2") (unit 1) ) @@ -2580,7 +2580,7 @@ (pin "8" (uuid 985fcea6-3f5c-43f6-92de-346bf4a3ba6b)) (pin "9" (uuid 3bbd6d82-2b51-47c4-b38e-6f58b96b9c19)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U1") (unit 1) ) @@ -2615,7 +2615,7 @@ (pin "1" (uuid 550c5929-f854-420d-8739-4fd007eae3ca)) (pin "2" (uuid 1cc1185c-7d99-4cb2-a97d-30af9ed85b46)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R7") (unit 1) ) @@ -2650,7 +2650,7 @@ (pin "1" (uuid b6300a5d-55b4-49d0-9155-0d6f71a35ecb)) (pin "2" (uuid d6a3a1d8-ba43-4103-9075-44177d6a5313)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R5") (unit 1) ) @@ -2685,7 +2685,7 @@ (pin "1" (uuid 4145efca-9087-4667-b3f3-ba4777872457)) (pin "2" (uuid c30197e3-79c4-4166-b7ae-d9fb8c67a1b5)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R8") (unit 1) ) diff --git a/ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_pcb b/Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_pcb similarity index 99% rename from ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_pcb rename to Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_pcb index 6ddc7634..691c0fe9 100644 --- a/ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_pcb +++ b/Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_pcb @@ -142,7 +142,7 @@ (tags "Through hole pin header THT 1x05 2.54mm single row") (property "LCSC" "/") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -217,7 +217,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -274,7 +274,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -330,7 +330,7 @@ (tags "resistor") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -387,7 +387,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15195") (property "MPN" "C15195") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -471,7 +471,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C11702") (property "MPN" "C11702") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -528,7 +528,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -585,7 +585,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C2297") (property "MPN" "C2297") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C2297") (path "/329126f3-4313-4fcb-8daa-a8cb2401c179") @@ -633,7 +633,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C4109") (property "MPN" "C4109") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -690,7 +690,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -774,7 +774,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C318884") (property "MPN" "C318884") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C318884") (path "/ca52555e-e6c3-4e72-949c-23e166714ee1") @@ -950,7 +950,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1033,7 +1033,7 @@ (tags "ESP32-C6") (property "LCSC" "C5736265") (property "MPN" "C5736265") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "ESP32-C6-MINI-1 is a module that supports 2.4 GHz Wi-Fi 6 (802.11 ax), Bluetooth® 5 (LE), Zigbee and Thread (802.15.4)") (property "ki_keywords" "esp32-c6 esp32-c6-mini-1 esp32-c6-mini-1u") @@ -1254,7 +1254,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C318884") (property "MPN" "C318884") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C318884") (path "/d01025bc-d41d-4958-8b35-a3053b3d4666") @@ -1430,7 +1430,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C2827328") (property "MPN" "C2827328") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C2827328") (path "/b2f4f67a-c6fd-40e5-ab5a-7b0b4e736e41") @@ -1498,7 +1498,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C81598") (path "/8f02233f-f47f-4ef3-a056-781256bd6ec0") @@ -1544,7 +1544,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C10418") (property "MPN" "C10418") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C10418") (path "/c991ff7a-c602-4eea-8121-436499a12e60") @@ -1614,7 +1614,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C84256") (property "MPN" "C84256") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C84256") (path "/dbd67d15-889f-4c1f-93d5-66600f9ce4a1") @@ -1663,7 +1663,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1721,7 +1721,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C94599") (property "MPN" "C94599") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C94599") (path "/e2bccb4d-9a90-4c95-b136-6ae7fb697c99") @@ -1777,7 +1777,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1834,7 +1834,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1892,7 +1892,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C1527") (property "MPN" "C1527") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1976,7 +1976,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C26082") (property "MPN" "C26082") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -2033,7 +2033,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -2090,7 +2090,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C6186") (property "MPN" "C6186") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C6186") (path "/83097b56-4394-4fc8-a57c-1286118caa65") @@ -2169,7 +2169,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C146233") (property "MPN" "C146233") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C146233") (path "/673c85ea-3be2-4225-b534-50875f94bb82") @@ -2211,7 +2211,7 @@ (property "JLCPCB Position Offset" "0,0,-0.5") (property "LCSC" "C778186") (property "MPN" "C778186") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C778186") (path "/8d6b055e-c7aa-451c-9d9c-c4b6fdf0c316") @@ -2281,7 +2281,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C16780") (property "MPN" "C16780") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -2363,7 +2363,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "/") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "exclude_from_bom" "") (path "/f1f58b1e-d0e8-40e6-af70-45ec8ff536e0") diff --git a/ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_pro b/Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_pro similarity index 99% rename from ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_pro rename to Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_pro index 73ec4ff9..4bf14faf 100644 --- a/ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_pro +++ b/Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_pro @@ -412,7 +412,7 @@ "pinned_symbol_libs": [] }, "meta": { - "filename": "ESPlant-Board.kicad_pro", + "filename": "Blumy-Board.kicad_pro", "version": 1 }, "net_settings": { @@ -465,8 +465,8 @@ "idf": "", "netlist": "", "specctra_dsn": "", - "step": "ESPlant-Board.step", - "vrml": "ESPlant-Board.wrl" + "step": "Blumy-Board.step", + "vrml": "Blumy-Board.wrl" }, "page_layout_descr_file": "" }, diff --git a/ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_sch b/Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_sch similarity index 98% rename from ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_sch rename to Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_sch index 96826bdb..bb2ac2ee 100644 --- a/ESPlant-Board/v2.0-esp32-s2-mini-1-n4/ESPlant-Board.kicad_sch +++ b/Blumy-Board/v2.0-esp32-s2-mini-1-n4/Blumy-Board.kicad_sch @@ -5,7 +5,7 @@ (paper "A4") (title_block - (title "ES-Plant") + (title "Blumy") (date "2023-05-12") (rev "1.0") ) @@ -2115,7 +2115,7 @@ (pin "1" (uuid 26e3bf80-bce1-4c69-9107-4118a6c86b21)) (pin "2" (uuid 9497b48b-5931-477f-8498-ff45e7f9a748)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C7") (unit 1) ) @@ -2140,7 +2140,7 @@ ) (pin "1" (uuid 8baab165-d871-4e61-9882-f537402f33ac)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR016") (unit 1) ) @@ -2165,7 +2165,7 @@ ) (pin "1" (uuid c64871a0-eabf-4a23-8dad-81e18a010a35)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR012") (unit 1) ) @@ -2200,7 +2200,7 @@ (pin "1" (uuid 44303273-16c8-413f-a6a6-7d032fab4f35)) (pin "2" (uuid 028d5ff3-19a7-4c7a-888a-91c2a24bfeb2)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C8") (unit 1) ) @@ -2225,7 +2225,7 @@ ) (pin "1" (uuid b5ff3e2d-81f6-4670-bfb6-a0c109c8957c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR03") (unit 1) ) @@ -2250,7 +2250,7 @@ ) (pin "1" (uuid 8d9a39d2-bea1-4c71-a7bc-5a07d0985e23)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR013") (unit 1) ) @@ -2275,7 +2275,7 @@ ) (pin "1" (uuid 0a2f6263-ce3d-4d3c-a335-bbd3d0b42c43)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR022") (unit 1) ) @@ -2300,7 +2300,7 @@ ) (pin "1" (uuid f45ae8f2-0b21-4c35-bc2d-d889eafd7de0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR023") (unit 1) ) @@ -2325,7 +2325,7 @@ ) (pin "1" (uuid 2d07d6e8-a0c3-4339-be0c-082f85d9e00d)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR010") (unit 1) ) @@ -2350,7 +2350,7 @@ ) (pin "1" (uuid 61e8956d-9167-4c3d-981a-1736d22ae583)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR01") (unit 1) ) @@ -2385,7 +2385,7 @@ (pin "1" (uuid 1e2f1a32-9f62-4302-bd97-4de6c9ab13bc)) (pin "2" (uuid a33859cb-adcc-4423-90f0-56f16b45af87)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D1") (unit 1) ) @@ -2420,7 +2420,7 @@ (pin "1" (uuid 8fb6f1b4-4ffd-4cdd-bae9-9cff32f229f1)) (pin "2" (uuid 2bd64ad0-b4a5-4187-bfe7-d22ba0d67117)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R1") (unit 1) ) @@ -2445,7 +2445,7 @@ ) (pin "1" (uuid 740fb291-7143-4f0c-95cf-a1ef0616e8f4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR015") (unit 1) ) @@ -2480,7 +2480,7 @@ (pin "1" (uuid 852690cc-1c3b-432b-a9c2-ee4cd3207055)) (pin "2" (uuid 3417b76a-8a27-44ef-99f9-f6d8a0c0b9cd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R4") (unit 1) ) @@ -2505,7 +2505,7 @@ ) (pin "1" (uuid 684a9458-7d09-4788-9ec9-b1bfd8b98efa)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR014") (unit 1) ) @@ -2540,7 +2540,7 @@ (pin "1" (uuid 1fb5cc11-ef32-41ae-8a9b-b3257ba151d8)) (pin "2" (uuid 7cd2b249-2405-45a1-9a6d-98fb35fc4859)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C5") (unit 1) ) @@ -2575,7 +2575,7 @@ (pin "1" (uuid 03896d7f-e061-488c-a0ea-32d4d79a43f9)) (pin "2" (uuid 03d6f13d-8436-4506-9558-a58e700475ed)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R6") (unit 1) ) @@ -2610,7 +2610,7 @@ (pin "1" (uuid 134afdc7-60a1-46bd-b00b-570e8a6d56cb)) (pin "2" (uuid 0f778dcc-5202-466e-8098-c668091ea170)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C9") (unit 1) ) @@ -2635,7 +2635,7 @@ ) (pin "1" (uuid 81cbd62b-7e84-4a27-a162-a79274bc9328)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR09") (unit 1) ) @@ -2670,7 +2670,7 @@ (pin "1" (uuid 9a0ebd6f-f7bf-4296-bfc6-1749a8507f12)) (pin "2" (uuid 74445041-9822-445c-a8e0-5f558d0c74b4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U6") (unit 1) ) @@ -2705,7 +2705,7 @@ (pin "1" (uuid cc86b0fe-242f-48c9-b01a-594b6d27d24b)) (pin "2" (uuid b7c692e5-ed60-433c-93cd-7958723a2546)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C1") (unit 1) ) @@ -2730,7 +2730,7 @@ ) (pin "1" (uuid 5c44bddf-1f55-4397-9256-fecccae60fc0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR07") (unit 1) ) @@ -2765,7 +2765,7 @@ (pin "1" (uuid 2168284a-39ae-462f-8b6d-cac75593a12a)) (pin "2" (uuid 082bc7b4-735d-4141-8058-ac91fcf0e7fe)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R10") (unit 1) ) @@ -2790,7 +2790,7 @@ ) (pin "1" (uuid d7078689-784c-4488-b318-6235f3e0d8dc)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR020") (unit 1) ) @@ -2827,7 +2827,7 @@ (pin "3" (uuid 9a6aeb6b-bbfc-4d44-bcf2-eb8bdb3ff9ea)) (pin "4" (uuid 2c6bcb86-b5cd-424f-b829-1bee009d0f91)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U7") (unit 1) ) @@ -2852,7 +2852,7 @@ ) (pin "1" (uuid 199e60a0-a6a1-4cd2-bc36-d767caeb4fc8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR011") (unit 1) ) @@ -2887,7 +2887,7 @@ (pin "1" (uuid 3e9edef8-44a2-4727-89eb-1641d2326d2f)) (pin "2" (uuid 2be5bb70-1a47-4384-85ec-acc0c8b3df49)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R9") (unit 1) ) @@ -2927,7 +2927,7 @@ (pin "6" (uuid 7cbfc099-4696-4c34-852d-cf00e40e31b9)) (pin "7" (uuid 6ec4eba1-b226-46f9-bdcc-8dd4860ba1bd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U8") (unit 1) ) @@ -2962,7 +2962,7 @@ (pin "1" (uuid 9ca31894-c923-411a-97e2-dd6a6151acf0)) (pin "2" (uuid fd41529f-7f0a-4d18-9389-b523f7f47db3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D2") (unit 1) ) @@ -3000,7 +3000,7 @@ (pin "1" (uuid d2b63477-1a4d-409b-a34e-1db9606abd0f)) (pin "2" (uuid dc4d3209-2595-4aff-bbf1-dd1571a1ad85)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C3") (unit 1) ) @@ -3025,7 +3025,7 @@ ) (pin "1" (uuid 8852e2bd-6503-45d8-be4d-b57b268caf48)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR02") (unit 1) ) @@ -3057,7 +3057,7 @@ (pin "1" (uuid c1db6d8f-af2a-4fa7-a5b3-65d6ebe5c8f5)) (pin "2" (uuid 39f29a57-8398-4e60-90a4-fda2b86b319f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R5") (unit 1) ) @@ -3082,7 +3082,7 @@ ) (pin "1" (uuid 8091deae-0363-437e-b4dc-1e9e5de73b31)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR017") (unit 1) ) @@ -3121,7 +3121,7 @@ (pin "5" (uuid f934b605-37d2-4161-b032-986580d63bbd)) (pin "6" (uuid b0bef099-7c27-4167-9c73-a4e1ee419ae1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U5") (unit 1) ) @@ -3204,7 +3204,7 @@ (pin "8" (uuid ac7108f3-5392-41ff-a313-aad3015c2c15)) (pin "9" (uuid d382b135-9bfb-4e32-b077-9494527f2709)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U1") (unit 1) ) @@ -3229,7 +3229,7 @@ ) (pin "1" (uuid 76c116b6-118c-44f5-8726-ab942445514f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR05") (unit 1) ) @@ -3254,7 +3254,7 @@ ) (pin "1" (uuid 6db3d390-1115-4beb-8795-8a5968d412fd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR04") (unit 1) ) @@ -3289,7 +3289,7 @@ (pin "1" (uuid 4b432b26-32e7-4eea-8223-9f47cb4083c8)) (pin "2" (uuid 6033670c-a7c9-4b8b-adc6-725d9e0b5b8b)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R3") (unit 1) ) @@ -3327,7 +3327,7 @@ (pin "1" (uuid 7e66c181-8b42-4754-aa22-722a19bf9983)) (pin "2" (uuid 2f1ea01f-9a4b-41fd-9efb-8948431a1829)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C4") (unit 1) ) @@ -3362,7 +3362,7 @@ (pin "4" (uuid 0fdc44c5-5250-4f68-bd80-b8d7d967ce00)) (pin "5" (uuid 0d3d3114-4269-445a-af7f-1160b7f0cc22)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "J1") (unit 1) ) @@ -3400,7 +3400,7 @@ (pin "4" (uuid 4cb25732-7a8c-4eb3-9565-7bf5df922298)) (pin "5" (uuid b6495445-98ce-47dd-bd7c-fde85b4dd4c4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "USB1") (unit 1) ) @@ -3437,7 +3437,7 @@ (pin "2" (uuid 7377b88e-673c-42c1-adf1-47b2333d4509)) (pin "2" (uuid 7377b88e-673c-42c1-adf1-47b2333d4509)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U3") (unit 1) ) @@ -3462,7 +3462,7 @@ ) (pin "1" (uuid 98408144-70ba-47f4-b551-1ebf7669787c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR019") (unit 1) ) @@ -3499,7 +3499,7 @@ (pin "2" (uuid aeea7b82-46c0-4315-990d-09ebf6515774)) (pin "2" (uuid aeea7b82-46c0-4315-990d-09ebf6515774)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U4") (unit 1) ) @@ -3534,7 +3534,7 @@ (pin "1" (uuid 4a609a90-5077-4c1a-8a7c-1c0da01b48d1)) (pin "2" (uuid cb3407e1-4ddb-4094-acf0-18cb5e7a1bb0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D3") (unit 1) ) @@ -3569,7 +3569,7 @@ (pin "1" (uuid dd44f8b9-4155-460c-a056-833bce79ce3f)) (pin "2" (uuid 8b73ef60-3b95-4c20-a4bd-ee6f3a3445ce)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R2") (unit 1) ) @@ -3604,7 +3604,7 @@ (pin "1" (uuid a21897ff-1c11-4759-8670-10ec1c76aff9)) (pin "2" (uuid 886b1cee-a117-44ab-bfb7-3672213f6415)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C2") (unit 1) ) @@ -3642,7 +3642,7 @@ (pin "1" (uuid 24b5c16f-9839-4870-a17b-1b8b1e47d8db)) (pin "2" (uuid 1fa7f1b5-903a-461e-8159-a48d96fbdf6e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "BZ1") (unit 1) ) @@ -3667,7 +3667,7 @@ ) (pin "1" (uuid e46bfbd9-22e4-488d-a3f0-ddb4848e10cb)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR018") (unit 1) ) @@ -3702,7 +3702,7 @@ (pin "1" (uuid 9e052b84-7c37-45a7-8b6b-adf71400e369)) (pin "2" (uuid 4eae5a10-c4fb-4f70-b9f2-8cde399be507)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U9") (unit 1) ) @@ -3727,7 +3727,7 @@ ) (pin "1" (uuid 4d7a18a1-b85c-433e-b5d8-effd039ce85a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR021") (unit 1) ) @@ -3765,7 +3765,7 @@ (pin "1" (uuid 2cf4b113-af3d-4e66-bd45-21c39972c04a)) (pin "2" (uuid 395e1f8c-9719-4324-b368-2374fc575fe3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R8") (unit 1) ) diff --git a/ESPlant-Board/v2.0/ESPlant-Board.kicad_pcb b/Blumy-Board/v2.0/Blumy-Board.kicad_pcb similarity index 99% rename from ESPlant-Board/v2.0/ESPlant-Board.kicad_pcb rename to Blumy-Board/v2.0/Blumy-Board.kicad_pcb index 8bbc2842..97e9744f 100644 --- a/ESPlant-Board/v2.0/ESPlant-Board.kicad_pcb +++ b/Blumy-Board/v2.0/Blumy-Board.kicad_pcb @@ -142,7 +142,7 @@ (tags "Through hole pin header THT 1x05 2.54mm single row") (property "LCSC" "/") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "dnp" "") (property "exclude_from_bom" "") @@ -217,7 +217,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -274,7 +274,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -330,7 +330,7 @@ (tags "resistor") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -387,7 +387,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15195") (property "MPN" "C15195") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -444,7 +444,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C11702") (property "MPN" "C11702") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -501,7 +501,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C15525") (property "MPN" "C15525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -558,7 +558,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C2297") (property "MPN" "C2297") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C2297") (path "/329126f3-4313-4fcb-8daa-a8cb2401c179") @@ -606,7 +606,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C4109") (property "MPN" "C4109") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -663,7 +663,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -720,7 +720,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C318884") (property "MPN" "C318884") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C318884") (path "/ca52555e-e6c3-4e72-949c-23e166714ee1") @@ -896,7 +896,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C25905") (property "MPN" "C25905") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -952,7 +952,7 @@ (tags "ESP32-C6") (property "LCSC" "C5736265") (property "MPN" "C5736265") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "ESP32-C6-MINI-1 is a module that supports 2.4 GHz Wi-Fi 6 (802.11 ax), Bluetooth® 5 (LE), Zigbee and Thread (802.15.4)") (property "ki_keywords" "esp32-c6 esp32-c6-mini-1 esp32-c6-mini-1u") @@ -1173,7 +1173,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C318884") (property "MPN" "C318884") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C318884") (path "/d01025bc-d41d-4958-8b35-a3053b3d4666") @@ -1349,7 +1349,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C2827328") (property "MPN" "C2827328") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C2827328") (path "/b2f4f67a-c6fd-40e5-ab5a-7b0b4e736e41") @@ -1417,7 +1417,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C81598") (property "MPN" "C81598") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C81598") (path "/8f02233f-f47f-4ef3-a056-781256bd6ec0") @@ -1463,7 +1463,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C10418") (property "MPN" "C10418") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C10418") (path "/c991ff7a-c602-4eea-8121-436499a12e60") @@ -1533,7 +1533,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C84256") (property "MPN" "C84256") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C84256") (path "/dbd67d15-889f-4c1f-93d5-66600f9ce4a1") @@ -1582,7 +1582,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C25744") (property "MPN" "C25744") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1640,7 +1640,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C94599") (property "MPN" "C94599") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C94599") (path "/e2bccb4d-9a90-4c95-b136-6ae7fb697c99") @@ -1696,7 +1696,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1753,7 +1753,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1811,7 +1811,7 @@ (property "JLCPCB Rotation Offset" "") (property "LCSC" "C1527") (property "MPN" "C1527") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1868,7 +1868,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C26082") (property "MPN" "C26082") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Resistor") (property "ki_keywords" "R res resistor") @@ -1925,7 +1925,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C1525") (property "MPN" "C1525") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -1982,7 +1982,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C6186") (property "MPN" "C6186") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C6186") (path "/83097b56-4394-4fc8-a57c-1286118caa65") @@ -2034,7 +2034,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C146233") (property "MPN" "C146233") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C146233") (path "/673c85ea-3be2-4225-b534-50875f94bb82") @@ -2076,7 +2076,7 @@ (property "JLCPCB Position Offset" "0,0,-0.5") (property "LCSC" "C778186") (property "MPN" "C778186") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_keywords" "C778186") (path "/8d6b055e-c7aa-451c-9d9c-c4b6fdf0c316") @@ -2146,7 +2146,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "C16780") (property "MPN" "C16780") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "ki_description" "Unpolarized capacitor") (property "ki_keywords" "cap capacitor") @@ -2201,7 +2201,7 @@ (property "JLCPCB Position Offset" "") (property "LCSC" "/") (property "MPN" "/") - (property "Sheetfile" "ESPlant-Board.kicad_sch") + (property "Sheetfile" "Blumy-Board.kicad_sch") (property "Sheetname" "") (property "exclude_from_bom" "") (path "/f1f58b1e-d0e8-40e6-af70-45ec8ff536e0") diff --git a/ESPlant-Board/v2.0/ESPlant-Board.kicad_pro b/Blumy-Board/v2.0/Blumy-Board.kicad_pro similarity index 99% rename from ESPlant-Board/v2.0/ESPlant-Board.kicad_pro rename to Blumy-Board/v2.0/Blumy-Board.kicad_pro index 117283b4..2a5d35e8 100644 --- a/ESPlant-Board/v2.0/ESPlant-Board.kicad_pro +++ b/Blumy-Board/v2.0/Blumy-Board.kicad_pro @@ -412,7 +412,7 @@ "pinned_symbol_libs": [] }, "meta": { - "filename": "ESPlant-Board.kicad_pro", + "filename": "Blumy-Board.kicad_pro", "version": 1 }, "net_settings": { @@ -465,8 +465,8 @@ "idf": "", "netlist": "", "specctra_dsn": "", - "step": "ESPlant-Board.step", - "vrml": "ESPlant-Board.wrl" + "step": "Blumy-Board.step", + "vrml": "Blumy-Board.wrl" }, "page_layout_descr_file": "" }, diff --git a/ESPlant-Board/v2.0/ESPlant-Board.kicad_sch b/Blumy-Board/v2.0/Blumy-Board.kicad_sch similarity index 98% rename from ESPlant-Board/v2.0/ESPlant-Board.kicad_sch rename to Blumy-Board/v2.0/Blumy-Board.kicad_sch index 374d46ba..59f49706 100644 --- a/ESPlant-Board/v2.0/ESPlant-Board.kicad_sch +++ b/Blumy-Board/v2.0/Blumy-Board.kicad_sch @@ -5,7 +5,7 @@ (paper "A4") (title_block - (title "ES-Plant") + (title "Blumy") (date "2023-05-12") (rev "1.0") ) @@ -2107,7 +2107,7 @@ (pin "1" (uuid 26e3bf80-bce1-4c69-9107-4118a6c86b21)) (pin "2" (uuid 9497b48b-5931-477f-8498-ff45e7f9a748)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C7") (unit 1) ) @@ -2132,7 +2132,7 @@ ) (pin "1" (uuid 8baab165-d871-4e61-9882-f537402f33ac)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR016") (unit 1) ) @@ -2157,7 +2157,7 @@ ) (pin "1" (uuid c64871a0-eabf-4a23-8dad-81e18a010a35)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR012") (unit 1) ) @@ -2192,7 +2192,7 @@ (pin "1" (uuid 44303273-16c8-413f-a6a6-7d032fab4f35)) (pin "2" (uuid 028d5ff3-19a7-4c7a-888a-91c2a24bfeb2)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C8") (unit 1) ) @@ -2217,7 +2217,7 @@ ) (pin "1" (uuid b5ff3e2d-81f6-4670-bfb6-a0c109c8957c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR03") (unit 1) ) @@ -2242,7 +2242,7 @@ ) (pin "1" (uuid 8d9a39d2-bea1-4c71-a7bc-5a07d0985e23)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR013") (unit 1) ) @@ -2267,7 +2267,7 @@ ) (pin "1" (uuid 0a2f6263-ce3d-4d3c-a335-bbd3d0b42c43)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR022") (unit 1) ) @@ -2292,7 +2292,7 @@ ) (pin "1" (uuid f45ae8f2-0b21-4c35-bc2d-d889eafd7de0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR023") (unit 1) ) @@ -2317,7 +2317,7 @@ ) (pin "1" (uuid 2d07d6e8-a0c3-4339-be0c-082f85d9e00d)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR010") (unit 1) ) @@ -2342,7 +2342,7 @@ ) (pin "1" (uuid 61e8956d-9167-4c3d-981a-1736d22ae583)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR01") (unit 1) ) @@ -2377,7 +2377,7 @@ (pin "1" (uuid 1e2f1a32-9f62-4302-bd97-4de6c9ab13bc)) (pin "2" (uuid a33859cb-adcc-4423-90f0-56f16b45af87)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D1") (unit 1) ) @@ -2412,7 +2412,7 @@ (pin "1" (uuid 8fb6f1b4-4ffd-4cdd-bae9-9cff32f229f1)) (pin "2" (uuid 2bd64ad0-b4a5-4187-bfe7-d22ba0d67117)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R1") (unit 1) ) @@ -2437,7 +2437,7 @@ ) (pin "1" (uuid 740fb291-7143-4f0c-95cf-a1ef0616e8f4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR015") (unit 1) ) @@ -2472,7 +2472,7 @@ (pin "1" (uuid 852690cc-1c3b-432b-a9c2-ee4cd3207055)) (pin "2" (uuid 3417b76a-8a27-44ef-99f9-f6d8a0c0b9cd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R4") (unit 1) ) @@ -2497,7 +2497,7 @@ ) (pin "1" (uuid 684a9458-7d09-4788-9ec9-b1bfd8b98efa)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR014") (unit 1) ) @@ -2532,7 +2532,7 @@ (pin "1" (uuid 1fb5cc11-ef32-41ae-8a9b-b3257ba151d8)) (pin "2" (uuid 7cd2b249-2405-45a1-9a6d-98fb35fc4859)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C5") (unit 1) ) @@ -2567,7 +2567,7 @@ (pin "1" (uuid 03896d7f-e061-488c-a0ea-32d4d79a43f9)) (pin "2" (uuid 03d6f13d-8436-4506-9558-a58e700475ed)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R6") (unit 1) ) @@ -2602,7 +2602,7 @@ (pin "1" (uuid 134afdc7-60a1-46bd-b00b-570e8a6d56cb)) (pin "2" (uuid 0f778dcc-5202-466e-8098-c668091ea170)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C9") (unit 1) ) @@ -2627,7 +2627,7 @@ ) (pin "1" (uuid 81cbd62b-7e84-4a27-a162-a79274bc9328)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR09") (unit 1) ) @@ -2662,7 +2662,7 @@ (pin "1" (uuid 9a0ebd6f-f7bf-4296-bfc6-1749a8507f12)) (pin "2" (uuid 74445041-9822-445c-a8e0-5f558d0c74b4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U6") (unit 1) ) @@ -2697,7 +2697,7 @@ (pin "1" (uuid cc86b0fe-242f-48c9-b01a-594b6d27d24b)) (pin "2" (uuid b7c692e5-ed60-433c-93cd-7958723a2546)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C1") (unit 1) ) @@ -2722,7 +2722,7 @@ ) (pin "1" (uuid 5c44bddf-1f55-4397-9256-fecccae60fc0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR07") (unit 1) ) @@ -2757,7 +2757,7 @@ (pin "1" (uuid 2168284a-39ae-462f-8b6d-cac75593a12a)) (pin "2" (uuid 082bc7b4-735d-4141-8058-ac91fcf0e7fe)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R10") (unit 1) ) @@ -2782,7 +2782,7 @@ ) (pin "1" (uuid d7078689-784c-4488-b318-6235f3e0d8dc)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR020") (unit 1) ) @@ -2819,7 +2819,7 @@ (pin "3" (uuid 9a6aeb6b-bbfc-4d44-bcf2-eb8bdb3ff9ea)) (pin "4" (uuid 2c6bcb86-b5cd-424f-b829-1bee009d0f91)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U7") (unit 1) ) @@ -2844,7 +2844,7 @@ ) (pin "1" (uuid 199e60a0-a6a1-4cd2-bc36-d767caeb4fc8)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR011") (unit 1) ) @@ -2879,7 +2879,7 @@ (pin "1" (uuid 3e9edef8-44a2-4727-89eb-1641d2326d2f)) (pin "2" (uuid 2be5bb70-1a47-4384-85ec-acc0c8b3df49)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R9") (unit 1) ) @@ -2919,7 +2919,7 @@ (pin "6" (uuid 7cbfc099-4696-4c34-852d-cf00e40e31b9)) (pin "7" (uuid 6ec4eba1-b226-46f9-bdcc-8dd4860ba1bd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U8") (unit 1) ) @@ -2954,7 +2954,7 @@ (pin "1" (uuid 9ca31894-c923-411a-97e2-dd6a6151acf0)) (pin "2" (uuid fd41529f-7f0a-4d18-9389-b523f7f47db3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D2") (unit 1) ) @@ -2992,7 +2992,7 @@ (pin "1" (uuid d2b63477-1a4d-409b-a34e-1db9606abd0f)) (pin "2" (uuid dc4d3209-2595-4aff-bbf1-dd1571a1ad85)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C3") (unit 1) ) @@ -3017,7 +3017,7 @@ ) (pin "1" (uuid 8852e2bd-6503-45d8-be4d-b57b268caf48)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR02") (unit 1) ) @@ -3049,7 +3049,7 @@ (pin "1" (uuid c1db6d8f-af2a-4fa7-a5b3-65d6ebe5c8f5)) (pin "2" (uuid 39f29a57-8398-4e60-90a4-fda2b86b319f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R5") (unit 1) ) @@ -3074,7 +3074,7 @@ ) (pin "1" (uuid 8091deae-0363-437e-b4dc-1e9e5de73b31)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR017") (unit 1) ) @@ -3113,7 +3113,7 @@ (pin "5" (uuid f934b605-37d2-4161-b032-986580d63bbd)) (pin "6" (uuid b0bef099-7c27-4167-9c73-a4e1ee419ae1)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U5") (unit 1) ) @@ -3196,7 +3196,7 @@ (pin "8" (uuid ac7108f3-5392-41ff-a313-aad3015c2c15)) (pin "9" (uuid d382b135-9bfb-4e32-b077-9494527f2709)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U1") (unit 1) ) @@ -3221,7 +3221,7 @@ ) (pin "1" (uuid 76c116b6-118c-44f5-8726-ab942445514f)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR05") (unit 1) ) @@ -3246,7 +3246,7 @@ ) (pin "1" (uuid 6db3d390-1115-4beb-8795-8a5968d412fd)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR04") (unit 1) ) @@ -3281,7 +3281,7 @@ (pin "1" (uuid 4b432b26-32e7-4eea-8223-9f47cb4083c8)) (pin "2" (uuid 6033670c-a7c9-4b8b-adc6-725d9e0b5b8b)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R3") (unit 1) ) @@ -3319,7 +3319,7 @@ (pin "1" (uuid 7e66c181-8b42-4754-aa22-722a19bf9983)) (pin "2" (uuid 2f1ea01f-9a4b-41fd-9efb-8948431a1829)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C4") (unit 1) ) @@ -3354,7 +3354,7 @@ (pin "4" (uuid 0fdc44c5-5250-4f68-bd80-b8d7d967ce00)) (pin "5" (uuid 0d3d3114-4269-445a-af7f-1160b7f0cc22)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "J1") (unit 1) ) @@ -3392,7 +3392,7 @@ (pin "4" (uuid 4cb25732-7a8c-4eb3-9565-7bf5df922298)) (pin "5" (uuid b6495445-98ce-47dd-bd7c-fde85b4dd4c4)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "USB1") (unit 1) ) @@ -3429,7 +3429,7 @@ (pin "2" (uuid 7377b88e-673c-42c1-adf1-47b2333d4508)) (pin "2" (uuid 7377b88e-673c-42c1-adf1-47b2333d4508)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U3") (unit 1) ) @@ -3454,7 +3454,7 @@ ) (pin "1" (uuid 98408144-70ba-47f4-b551-1ebf7669787c)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR019") (unit 1) ) @@ -3491,7 +3491,7 @@ (pin "2" (uuid aeea7b82-46c0-4315-990d-09ebf6515773)) (pin "2" (uuid aeea7b82-46c0-4315-990d-09ebf6515773)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U4") (unit 1) ) @@ -3526,7 +3526,7 @@ (pin "1" (uuid 4a609a90-5077-4c1a-8a7c-1c0da01b48d1)) (pin "2" (uuid cb3407e1-4ddb-4094-acf0-18cb5e7a1bb0)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "D3") (unit 1) ) @@ -3561,7 +3561,7 @@ (pin "1" (uuid dd44f8b9-4155-460c-a056-833bce79ce3f)) (pin "2" (uuid 8b73ef60-3b95-4c20-a4bd-ee6f3a3445ce)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R2") (unit 1) ) @@ -3596,7 +3596,7 @@ (pin "1" (uuid a21897ff-1c11-4759-8670-10ec1c76aff9)) (pin "2" (uuid 886b1cee-a117-44ab-bfb7-3672213f6415)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "C2") (unit 1) ) @@ -3634,7 +3634,7 @@ (pin "1" (uuid 24b5c16f-9839-4870-a17b-1b8b1e47d8db)) (pin "2" (uuid 1fa7f1b5-903a-461e-8159-a48d96fbdf6e)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "BZ1") (unit 1) ) @@ -3659,7 +3659,7 @@ ) (pin "1" (uuid e46bfbd9-22e4-488d-a3f0-ddb4848e10cb)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR018") (unit 1) ) @@ -3694,7 +3694,7 @@ (pin "1" (uuid 9e052b84-7c37-45a7-8b6b-adf71400e369)) (pin "2" (uuid 4eae5a10-c4fb-4f70-b9f2-8cde399be507)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "U9") (unit 1) ) @@ -3719,7 +3719,7 @@ ) (pin "1" (uuid 4d7a18a1-b85c-433e-b5d8-effd039ce85a)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "#PWR021") (unit 1) ) @@ -3757,7 +3757,7 @@ (pin "1" (uuid 2cf4b113-af3d-4e66-bd45-21c39972c04a)) (pin "2" (uuid 395e1f8c-9719-4324-b368-2374fc575fe3)) (instances - (project "ESPlant-Board" + (project "Blumy-Board" (path "/fa2a81f8-bf39-4c28-beef-a6fc807c4564" (reference "R8") (unit 1) ) diff --git a/ESPlant-Board/v2.0/ESPlant-Board.svg b/Blumy-Board/v2.0/Blumy-Board.svg similarity index 99% rename from ESPlant-Board/v2.0/ESPlant-Board.svg rename to Blumy-Board/v2.0/Blumy-Board.svg index 9d695191..60cd92ea 100644 --- a/ESPlant-Board/v2.0/ESPlant-Board.svg +++ b/Blumy-Board/v2.0/Blumy-Board.svg @@ -7,7 +7,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="297.0022mm" height="210.0072mm" viewBox="0.0000 0.0000 297.0022 210.0072"> -SVG Image created as ESPlant-Board.svg date 2023/08/27 18:22:43 +SVG Image created as Blumy-Board.svg date 2023/08/27 18:22:43 Image generated by Eeschema-SVG Title: ES-Plant -Title: ES-Plant +text-anchor="start" opacity="0">Title: Blumy +Title: Blumy @@ -3083,8 +3083,8 @@ stroke:#840000; stroke-width:0.1524; stroke-opacity:1; stroke-linecap:round; stroke-linejoin:round;"> File: ESPlant-Board.kicad_sch -File: ESPlant-Board.kicad_sch +text-anchor="start" opacity="0">File: Blumy-Board.kicad_sch +File: Blumy-Board.kicad_sch diff --git a/ESPlant-Firmware/.gitignore b/Blumy-Firmware/.gitignore similarity index 100% rename from ESPlant-Firmware/.gitignore rename to Blumy-Firmware/.gitignore diff --git a/ESPlant-Firmware/CMakeLists.txt b/Blumy-Firmware/CMakeLists.txt similarity index 93% rename from ESPlant-Firmware/CMakeLists.txt rename to Blumy-Firmware/CMakeLists.txt index 8f645638..95509bff 100644 --- a/ESPlant-Firmware/CMakeLists.txt +++ b/Blumy-Firmware/CMakeLists.txt @@ -5,4 +5,4 @@ cmake_minimum_required(VERSION 3.16) include($ENV{IDF_PATH}/tools/cmake/project.cmake) -project(ESPlant-Firmware) +project(Blumy-Firmware) diff --git a/ESPlant-Firmware/dependencies.lock b/Blumy-Firmware/dependencies.lock similarity index 100% rename from ESPlant-Firmware/dependencies.lock rename to Blumy-Firmware/dependencies.lock diff --git a/ESPlant-Firmware/frontend/.gitignore b/Blumy-Firmware/frontend/.gitignore similarity index 100% rename from ESPlant-Firmware/frontend/.gitignore rename to Blumy-Firmware/frontend/.gitignore diff --git a/ESPlant-Firmware/frontend/.prettierrc b/Blumy-Firmware/frontend/.prettierrc similarity index 100% rename from ESPlant-Firmware/frontend/.prettierrc rename to Blumy-Firmware/frontend/.prettierrc diff --git a/ESPlant-Firmware/frontend/convert.py b/Blumy-Firmware/frontend/convert.py similarity index 100% rename from ESPlant-Firmware/frontend/convert.py rename to Blumy-Firmware/frontend/convert.py diff --git a/ESPlant-Firmware/frontend/home.html b/Blumy-Firmware/frontend/home.html similarity index 100% rename from ESPlant-Firmware/frontend/home.html rename to Blumy-Firmware/frontend/home.html diff --git a/ESPlant-Firmware/frontend/index.html b/Blumy-Firmware/frontend/index.html similarity index 100% rename from ESPlant-Firmware/frontend/index.html rename to Blumy-Firmware/frontend/index.html diff --git a/ESPlant-Firmware/frontend/mock/cloudSetupBlumy.mock.ts b/Blumy-Firmware/frontend/mock/cloudSetupBlumy.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/cloudSetupBlumy.mock.ts rename to Blumy-Firmware/frontend/mock/cloudSetupBlumy.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/cloudSetupHttp.mock.ts b/Blumy-Firmware/frontend/mock/cloudSetupHttp.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/cloudSetupHttp.mock.ts rename to Blumy-Firmware/frontend/mock/cloudSetupHttp.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/cloudSetupMqtt.mock.ts b/Blumy-Firmware/frontend/mock/cloudSetupMqtt.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/cloudSetupMqtt.mock.ts rename to Blumy-Firmware/frontend/mock/cloudSetupMqtt.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/connect.mock.ts b/Blumy-Firmware/frontend/mock/connect.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/connect.mock.ts rename to Blumy-Firmware/frontend/mock/connect.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/connectedNetwork.mock.ts b/Blumy-Firmware/frontend/mock/connectedNetwork.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/connectedNetwork.mock.ts rename to Blumy-Firmware/frontend/mock/connectedNetwork.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/getSensorData.mock.ts b/Blumy-Firmware/frontend/mock/getSensorData.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/getSensorData.mock.ts rename to Blumy-Firmware/frontend/mock/getSensorData.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/getUpdateFirmwareUrl.mock.ts b/Blumy-Firmware/frontend/mock/getUpdateFirmwareUrl.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/getUpdateFirmwareUrl.mock.ts rename to Blumy-Firmware/frontend/mock/getUpdateFirmwareUrl.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/isConnected.mock.ts b/Blumy-Firmware/frontend/mock/isConnected.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/isConnected.mock.ts rename to Blumy-Firmware/frontend/mock/isConnected.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/networks.mock.ts b/Blumy-Firmware/frontend/mock/networks.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/networks.mock.ts rename to Blumy-Firmware/frontend/mock/networks.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/plantName.mock.ts b/Blumy-Firmware/frontend/mock/plantName.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/plantName.mock.ts rename to Blumy-Firmware/frontend/mock/plantName.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/timeouts-sleep.mock.ts b/Blumy-Firmware/frontend/mock/timeouts-sleep.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/timeouts-sleep.mock.ts rename to Blumy-Firmware/frontend/mock/timeouts-sleep.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/updateFirmware.mock.ts b/Blumy-Firmware/frontend/mock/updateFirmware.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/updateFirmware.mock.ts rename to Blumy-Firmware/frontend/mock/updateFirmware.mock.ts diff --git a/ESPlant-Firmware/frontend/mock/updatePercentage.mock.ts b/Blumy-Firmware/frontend/mock/updatePercentage.mock.ts similarity index 100% rename from ESPlant-Firmware/frontend/mock/updatePercentage.mock.ts rename to Blumy-Firmware/frontend/mock/updatePercentage.mock.ts diff --git a/ESPlant-Firmware/frontend/package-lock.json b/Blumy-Firmware/frontend/package-lock.json similarity index 100% rename from ESPlant-Firmware/frontend/package-lock.json rename to Blumy-Firmware/frontend/package-lock.json diff --git a/ESPlant-Firmware/frontend/package.json b/Blumy-Firmware/frontend/package.json similarity index 100% rename from ESPlant-Firmware/frontend/package.json rename to Blumy-Firmware/frontend/package.json diff --git a/ESPlant-Firmware/frontend/src/api.ts b/Blumy-Firmware/frontend/src/api.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/api.ts rename to Blumy-Firmware/frontend/src/api.ts diff --git a/ESPlant-Firmware/frontend/src/elements/dots-stepper-element.ts b/Blumy-Firmware/frontend/src/elements/dots-stepper-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/elements/dots-stepper-element.ts rename to Blumy-Firmware/frontend/src/elements/dots-stepper-element.ts diff --git a/ESPlant-Firmware/frontend/src/elements/header-element.ts b/Blumy-Firmware/frontend/src/elements/header-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/elements/header-element.ts rename to Blumy-Firmware/frontend/src/elements/header-element.ts diff --git a/ESPlant-Firmware/frontend/src/elements/loader-bar-element.ts b/Blumy-Firmware/frontend/src/elements/loader-bar-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/elements/loader-bar-element.ts rename to Blumy-Firmware/frontend/src/elements/loader-bar-element.ts diff --git a/ESPlant-Firmware/frontend/src/first-setup-screen.ts b/Blumy-Firmware/frontend/src/first-setup-screen.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/first-setup-screen.ts rename to Blumy-Firmware/frontend/src/first-setup-screen.ts diff --git a/ESPlant-Firmware/frontend/src/pages/base-page.ts b/Blumy-Firmware/frontend/src/pages/base-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/base-page.ts rename to Blumy-Firmware/frontend/src/pages/base-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/cloud-page.ts b/Blumy-Firmware/frontend/src/pages/cloud-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/cloud-page.ts rename to Blumy-Firmware/frontend/src/pages/cloud-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/home-page.ts b/Blumy-Firmware/frontend/src/pages/home-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/home-page.ts rename to Blumy-Firmware/frontend/src/pages/home-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/button-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/button-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/button-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/button-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/button-nav-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/button-nav-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/button-nav-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/button-nav-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/cloud-form-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/cloud-form-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/cloud-form-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/cloud-form-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/collapsible-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/collapsible-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/collapsible-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/collapsible-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/description-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/description-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/description-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/description-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/error-text-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/error-text-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/error-text-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/error-text-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/http-form-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/http-form-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/http-form-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/http-form-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/input-element-grid.ts b/Blumy-Firmware/frontend/src/pages/page-elements/input-element-grid.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/input-element-grid.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/input-element-grid.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/input-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/input-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/input-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/input-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/loader-spinner-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/loader-spinner-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/loader-spinner-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/loader-spinner-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/mqtt-form-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/mqtt-form-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/mqtt-form-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/mqtt-form-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/progress-bar-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/progress-bar-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/progress-bar-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/progress-bar-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/title-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/title-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/title-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/title-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/wifi-list-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/wifi-list-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/wifi-list-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/wifi-list-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/page-elements/wifi-logo-element.ts b/Blumy-Firmware/frontend/src/pages/page-elements/wifi-logo-element.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/page-elements/wifi-logo-element.ts rename to Blumy-Firmware/frontend/src/pages/page-elements/wifi-logo-element.ts diff --git a/ESPlant-Firmware/frontend/src/pages/reset-page.ts b/Blumy-Firmware/frontend/src/pages/reset-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/reset-page.ts rename to Blumy-Firmware/frontend/src/pages/reset-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/timeout-page.ts b/Blumy-Firmware/frontend/src/pages/timeout-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/timeout-page.ts rename to Blumy-Firmware/frontend/src/pages/timeout-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/update-page.ts b/Blumy-Firmware/frontend/src/pages/update-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/update-page.ts rename to Blumy-Firmware/frontend/src/pages/update-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/welcome-page.ts b/Blumy-Firmware/frontend/src/pages/welcome-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/welcome-page.ts rename to Blumy-Firmware/frontend/src/pages/welcome-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/wifi-scanner-page.ts b/Blumy-Firmware/frontend/src/pages/wifi-scanner-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/wifi-scanner-page.ts rename to Blumy-Firmware/frontend/src/pages/wifi-scanner-page.ts diff --git a/ESPlant-Firmware/frontend/src/pages/wifi-setup-page.ts b/Blumy-Firmware/frontend/src/pages/wifi-setup-page.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/pages/wifi-setup-page.ts rename to Blumy-Firmware/frontend/src/pages/wifi-setup-page.ts diff --git a/ESPlant-Firmware/frontend/src/states.ts b/Blumy-Firmware/frontend/src/states.ts similarity index 100% rename from ESPlant-Firmware/frontend/src/states.ts rename to Blumy-Firmware/frontend/src/states.ts diff --git a/ESPlant-Firmware/frontend/style.css b/Blumy-Firmware/frontend/style.css similarity index 100% rename from ESPlant-Firmware/frontend/style.css rename to Blumy-Firmware/frontend/style.css diff --git a/ESPlant-Firmware/frontend/tsconfig.json b/Blumy-Firmware/frontend/tsconfig.json similarity index 100% rename from ESPlant-Firmware/frontend/tsconfig.json rename to Blumy-Firmware/frontend/tsconfig.json diff --git a/ESPlant-Firmware/frontend/vite.config.ts b/Blumy-Firmware/frontend/vite.config.ts similarity index 100% rename from ESPlant-Firmware/frontend/vite.config.ts rename to Blumy-Firmware/frontend/vite.config.ts diff --git a/ESPlant-Firmware/main/CMakeLists.txt b/Blumy-Firmware/main/CMakeLists.txt similarity index 100% rename from ESPlant-Firmware/main/CMakeLists.txt rename to Blumy-Firmware/main/CMakeLists.txt diff --git a/ESPlant-Firmware/main/configuration_mode_server.c b/Blumy-Firmware/main/configuration_mode_server.c similarity index 100% rename from ESPlant-Firmware/main/configuration_mode_server.c rename to Blumy-Firmware/main/configuration_mode_server.c diff --git a/ESPlant-Firmware/main/configuration_mode_server.h b/Blumy-Firmware/main/configuration_mode_server.h similarity index 100% rename from ESPlant-Firmware/main/configuration_mode_server.h rename to Blumy-Firmware/main/configuration_mode_server.h diff --git a/ESPlant-Firmware/main/defaults.h b/Blumy-Firmware/main/defaults.h similarity index 78% rename from ESPlant-Firmware/main/defaults.h rename to Blumy-Firmware/main/defaults.h index f7ea31be..60bed6ec 100644 --- a/ESPlant-Firmware/main/defaults.h +++ b/Blumy-Firmware/main/defaults.h @@ -6,4 +6,4 @@ #define DEFAULT_SSID_MAX_LENGTH 33 #define DEFAULT_PASSWORD_MAX_LENGTH 65 -#define DEFAULT_API_URL "http://esplant.hoppingadventure.com/api/v2/data" +#define DEFAULT_API_URL "http://blumy.cloud/api/v2/data" diff --git a/ESPlant-Firmware/main/idf_component.yml b/Blumy-Firmware/main/idf_component.yml similarity index 100% rename from ESPlant-Firmware/main/idf_component.yml rename to Blumy-Firmware/main/idf_component.yml diff --git a/ESPlant-Firmware/main/main.c b/Blumy-Firmware/main/main.c similarity index 100% rename from ESPlant-Firmware/main/main.c rename to Blumy-Firmware/main/main.c diff --git a/ESPlant-Firmware/main/peripherals/adc.c b/Blumy-Firmware/main/peripherals/adc.c similarity index 100% rename from ESPlant-Firmware/main/peripherals/adc.c rename to Blumy-Firmware/main/peripherals/adc.c diff --git a/ESPlant-Firmware/main/peripherals/adc.h b/Blumy-Firmware/main/peripherals/adc.h similarity index 100% rename from ESPlant-Firmware/main/peripherals/adc.h rename to Blumy-Firmware/main/peripherals/adc.h diff --git a/ESPlant-Firmware/main/peripherals/config.h b/Blumy-Firmware/main/peripherals/config.h similarity index 100% rename from ESPlant-Firmware/main/peripherals/config.h rename to Blumy-Firmware/main/peripherals/config.h diff --git a/ESPlant-Firmware/main/peripherals/sensors.c b/Blumy-Firmware/main/peripherals/sensors.c similarity index 100% rename from ESPlant-Firmware/main/peripherals/sensors.c rename to Blumy-Firmware/main/peripherals/sensors.c diff --git a/ESPlant-Firmware/main/peripherals/sensors.h b/Blumy-Firmware/main/peripherals/sensors.h similarity index 100% rename from ESPlant-Firmware/main/peripherals/sensors.h rename to Blumy-Firmware/main/peripherals/sensors.h diff --git a/ESPlant-Firmware/main/plantfi.c b/Blumy-Firmware/main/plantfi.c similarity index 100% rename from ESPlant-Firmware/main/plantfi.c rename to Blumy-Firmware/main/plantfi.c diff --git a/ESPlant-Firmware/main/plantfi.h b/Blumy-Firmware/main/plantfi.h similarity index 100% rename from ESPlant-Firmware/main/plantfi.h rename to Blumy-Firmware/main/plantfi.h diff --git a/ESPlant-Firmware/main/plantstore.c b/Blumy-Firmware/main/plantstore.c similarity index 100% rename from ESPlant-Firmware/main/plantstore.c rename to Blumy-Firmware/main/plantstore.c diff --git a/ESPlant-Firmware/main/plantstore.h b/Blumy-Firmware/main/plantstore.h similarity index 100% rename from ESPlant-Firmware/main/plantstore.h rename to Blumy-Firmware/main/plantstore.h diff --git a/ESPlant-Firmware/partitions.csv b/Blumy-Firmware/partitions.csv similarity index 100% rename from ESPlant-Firmware/partitions.csv rename to Blumy-Firmware/partitions.csv diff --git a/ESPlant-Firmware/sdkconfig b/Blumy-Firmware/sdkconfig similarity index 100% rename from ESPlant-Firmware/sdkconfig rename to Blumy-Firmware/sdkconfig diff --git a/ESPlant-Pages/.gitignore b/Blumy-Pages/.gitignore similarity index 100% rename from ESPlant-Pages/.gitignore rename to Blumy-Pages/.gitignore diff --git a/ESPlant-Pages/index.html b/Blumy-Pages/index.html similarity index 88% rename from ESPlant-Pages/index.html rename to Blumy-Pages/index.html index fc5879ec..4cef6c5d 100644 --- a/ESPlant-Pages/index.html +++ b/Blumy-Pages/index.html @@ -3,7 +3,7 @@ - ESPlant-Pages + Blumy-Pages
diff --git a/ESPlant-Pages/package-lock.json b/Blumy-Pages/package-lock.json similarity index 99% rename from ESPlant-Pages/package-lock.json rename to Blumy-Pages/package-lock.json index 385ce30e..0c1a6a4c 100644 --- a/ESPlant-Pages/package-lock.json +++ b/Blumy-Pages/package-lock.json @@ -1,11 +1,11 @@ { - "name": "esplant-pages", + "name": "blumy-pages", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "esplant-pages", + "name": "blumy-pages", "version": "0.0.0", "devDependencies": { "@sveltejs/vite-plugin-svelte": "^2.4.2", diff --git a/ESPlant-Pages/package.json b/Blumy-Pages/package.json similarity index 94% rename from ESPlant-Pages/package.json rename to Blumy-Pages/package.json index 22bf8790..e6c793e3 100644 --- a/ESPlant-Pages/package.json +++ b/Blumy-Pages/package.json @@ -1,5 +1,5 @@ { - "name": "esplant-pages", + "name": "blumy-pages", "private": true, "version": "0.0.0", "type": "module", diff --git a/ESPlant-Pages/public/Case-Bottom.vrml b/Blumy-Pages/public/Case-Bottom.vrml similarity index 100% rename from ESPlant-Pages/public/Case-Bottom.vrml rename to Blumy-Pages/public/Case-Bottom.vrml diff --git a/ESPlant-Pages/public/Compartment-Door.vrml b/Blumy-Pages/public/Compartment-Door.vrml similarity index 100% rename from ESPlant-Pages/public/Compartment-Door.vrml rename to Blumy-Pages/public/Compartment-Door.vrml diff --git a/ESPlant-Pages/public/Logo.png b/Blumy-Pages/public/Logo.png similarity index 100% rename from ESPlant-Pages/public/Logo.png rename to Blumy-Pages/public/Logo.png diff --git a/ESPlant-Pages/src/App.svelte b/Blumy-Pages/src/App.svelte similarity index 87% rename from ESPlant-Pages/src/App.svelte rename to Blumy-Pages/src/App.svelte index 4646399c..d4a8776e 100644 --- a/ESPlant-Pages/src/App.svelte +++ b/Blumy-Pages/src/App.svelte @@ -59,32 +59,32 @@
-

ESPlant-Board v2.0 3d model

+

Blumy-Board v2.0 3d model

- +
-

ESPlant-Board v2.0 3d case

+

Blumy-Board v2.0 3d case

-

ESPlant-Board v2.0 3d compartment door

+

Blumy-Board v2.0 3d compartment door

-

ESPlant-Board v1.0 Schematic

+

Blumy-Board v1.0 Schematic

SVG