Copy disabled (too large)
Download .txt
Showing preview only (12,246K chars total). Download the full file to get everything.
Repository: tjko/fanpico
Branch: main
Commit: c67e545143f2
Files: 168
Total size: 11.7 MB
Directory structure:
gitextract_l4rxsnmc/
├── .github/
│ ├── FUNDING.yml
│ └── workflows/
│ ├── cmake.yml
│ └── codeql.yml
├── .gitignore
├── .gitmodules
├── CMakeLists.txt
├── LICENSE
├── README.md
├── boards/
│ ├── fanpico-0200/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── fanpico-0401D/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── fanpico-0804/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── fanpico-0804D/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── oled-adapter/
│ │ ├── README.md
│ │ └── kicad/
│ │ ├── fanpico-oled-adapter.kicad_pcb
│ │ ├── fanpico-oled-adapter.kicad_prl
│ │ ├── fanpico-oled-adapter.kicad_pro
│ │ └── fanpico-oled-adapter.kicad_sch
│ └── power-board/
│ ├── README.md
│ ├── bom.csv
│ └── kicad/
│ ├── fanpico_powerboard.kicad_pcb
│ ├── fanpico_powerboard.kicad_prl
│ ├── fanpico_powerboard.kicad_pro
│ └── fanpico_powerboard.kicad_sch
├── build.sh
├── build_httpd_fs.sh
├── cmake/
│ └── pico_sdk_import.cmake
├── commands.md
├── compile.sh
├── contrib/
│ ├── build_makefsdata.sh
│ ├── kicad_extract_netclasses.py
│ └── makefsdata.patch
├── credits.txt
├── debug.sh
├── flash.sh
├── kicad/
│ ├── FanPico.pretty/
│ │ ├── D_SOT-23_ANK.kicad_mod
│ │ ├── Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.kicad_mod
│ │ ├── IND-SMD_L7.2-W6.6_GPSR07X0.kicad_mod
│ │ ├── L_7.3x7.3_H3.5_HandSolder.kicad_mod
│ │ ├── OLED_module.kicad_mod
│ │ ├── P2PAK.kicad_mod
│ │ ├── RPi_Pico_PicoW_SMD_TH.kicad_mod
│ │ ├── SW-SMD_L3.9-W3.0-P4.45.kicad_mod
│ │ ├── SW_PUSH_6mm_SMD_2.kicad_mod
│ │ ├── TE 171826-4 Floppy 4-pin Combo.kicad_mod
│ │ ├── TE 171826-4 Floppy 4-pin.kicad_mod
│ │ ├── TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.kicad_mod
│ │ ├── TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle.kicad_mod
│ │ ├── TSOT-26.kicad_mod
│ │ └── ToolingHole_1.152mm.kicad_mod
│ ├── README.md
│ └── fanpico.kicad_sym
├── mibs/
│ ├── TJKO-FanPico-MIB
│ └── TJKO-ROOT-MIB
└── src/
├── bi_decl.c
├── boards/
│ ├── 0200.h
│ ├── 0200.json
│ ├── 0401D.h
│ ├── 0401D.json
│ ├── 0804.h
│ ├── 0804.json
│ ├── 0804D.h
│ └── 0804D.json
├── command.c
├── command_util.c
├── command_util.h
├── config.c
├── config.h.in
├── crc32.c
├── credits.s
├── default_config.S
├── dhcp.c
├── display.c
├── display_lcd.c
├── display_oled.c
├── fanpico-compile.h.in
├── fanpico.c
├── fanpico.h
├── fanpico_fsdata.c
├── filter_lossypeak.c
├── filter_sma.c
├── filters.c
├── filters.h
├── flash.c
├── httpd-fs/
│ ├── 404.html
│ ├── fanpico.css
│ ├── index.shtml
│ ├── status.csv
│ └── status.json
├── httpd-fs_ssi.list
├── httpd.c
├── i2c.c
├── log.c
├── log.h
├── logos/
│ ├── custom.h
│ ├── custom.s
│ ├── default.h
│ └── default.s
├── lwip_hooks.h
├── lwipopts.h
├── mbedtls_config.h
├── memmap_custom_rp2040.ld
├── memmap_custom_rp2350.ld
├── memtest.c
├── memtest.h
├── mqtt.c
├── network.c
├── onewire.c
├── psram.c
├── psram.h
├── pulse_len.c
├── pulse_len.h
├── pwm.c
├── sensors.c
├── snmp.c
├── square_wave_gen.c
├── square_wave_gen.h
├── square_wave_gen.pio
├── ssh_util.c
├── sshd.c
├── syslog.c
├── syslog.h
├── tacho.c
├── telnetd.c
├── themes/
│ ├── custom.s
│ ├── default-320x240.h
│ ├── default-480x320.h
│ └── lcd-background.s
├── tls.c
├── util.c
├── util_net.c
├── util_net.h
├── util_rp2.c
└── wolfssl/
└── user_settings.h
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
github: tjko
================================================
FILE: .github/workflows/cmake.yml
================================================
name: Firmware Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_THREADS: 4
BUILD_TYPE: Release
# Pico-SDK version
PICO_SDK_REF: 2.2.0
PICOTOOL_REF: 2.2.0
jobs:
build:
runs-on: ubuntu-latest
outputs:
fanpico_version: ${{steps.version-check.outputs.FANPICO_VERSION}}
build_date: ${{steps.version-check.outputs.BUILD_DATE}}
compiler_version: ${{steps.compiler-version.outputs.CC_VERSION}}
strategy:
matrix:
fanpico_board: ["0804", "0804D", "0401D", "0200"]
pico_board: ["pico", "pico_w", "pico2", "pico2_w"]
steps:
- name: Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
- name: Check GCC Version
id: compiler-version
run: |
arm-none-eabi-gcc --version
ver=$(arm-none-eabi-gcc --version | head -1)
echo "CC_VERSION=$ver" >> $GITHUB_OUTPUT
- name: Cache Pico-SDK
id: cache-pico-sdk
uses: actions/cache@v4
with:
path: pico-sdk
key: ${{runner.os}}-pico-sdk-${{env.PICO_SDK_REF}}
- name: Checkout Pico-SDK
if: ${{steps.cache-pico-sdk.outputs.cache-hit != 'true' }}
uses: actions/checkout@v4
with:
repository: raspberrypi/pico-sdk
ref: ${{env.PICO_SDK_REF}}
path: pico-sdk
submodules: recursive
- name: Add PICO_SDK_PATH to Environment
run: |
echo "PICO_SDK_PATH=${{github.workspace}}/pico-sdk" >> $GITHUB_ENV
- name: Cache picotool
id: cache-picotool
uses: actions/cache@v4
with:
path: picotool
key: ${{runner.os}}-picotool-${{env.PICOTOOL_REF}}
- name: Checkout picotool
if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }}
uses: actions/checkout@v4
with:
repository: raspberrypi/picotool
ref: ${{env.PICOTOOL_REF}}
path: picotool-src
submodules: recursive
- name: Build picotool
if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }}
run: |
cmake -S picotool-src -B picotool-src/build -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/picotool -DPICOTOOL_FLAT_INSTALL=1
cd picotool-src/build
make -j ${{env.BUILD_THREADS}} install
- name: Checkout
uses: actions/checkout@v4
with:
path: main
submodules: recursive
- name: Configure CMake
run: cmake -S main -B ${{github.workspace}}/main/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DPICO_BOARD=${{matrix.pico_board}} -DFANPICO_BOARD=${{matrix.fanpico_board}} -Dpicotool_DIR=${{github.workspace}}/picotool/picotool
- name: Check Source Version
id: version-check
run: |
ver=$(awk '/FANPICO_VERSION[[:space:]]/ { gsub(/"/,""); print $3; exit; }' main/build/config.h)
echo "FANPICO_VERSION=$ver" >> $GITHUB_ENV
echo "FANPICO_VERSION=$ver" >> $GITHUB_OUTPUT
date=$(date +%Y%m%d)
echo "BUILD_DATE=$date" >> $GITHUB_ENV
echo "BUILD_DATE=$date" >> $GITHUB_OUTPUT
- name: Build
run: cmake --build ${{github.workspace}}/main/build --config ${{env.BUILD_TYPE}} -j ${{env.BUILD_THREADS}}
- name: Test
working-directory: ${{github.workspace}}/main/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
ls -l fanpico.*
sha256sum fanpico.uf2
- name: Gather Artifact Files
working-directory: ${{github.workspace}}/main/build
run: |
mkdir dist
cp -av fanpico.uf2 dist/fanpico-${{matrix.fanpico_board}}-${{matrix.pico_board}}.uf2
cp -av fanpico.elf dist/fanpico-${{matrix.fanpico_board}}-${{matrix.pico_board}}.elf
cp -av fanpico.elf.map dist/fanpico-${{matrix.fanpico_board}}-${{matrix.pico_board}}.elf.map
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: firmware-${{matrix.fanpico_board}}-${{matrix.pico_board}}-build${{github.run_number}}-${{env.BUILD_DATE}}
path: main/build/dist
- name: Gather License Files
if: ${{ matrix.fanpico_board == '0804' && matrix.pico_board == 'pico' }}
working-directory: ${{github.workspace}}/main
run: |
mkdir -p licenses/licenses
cp -v LICENSE credits.txt licenses/
licenses=$(find libs/ -name 'LICENSE*'; find ${PICO_SDK_PATH}/ -maxdepth 3 -name 'LICENSE*')
for file in $licenses; do
dir=$(dirname $file)
name=$(basename $file)
lib=$(basename $dir)
cp -v "$file" "licenses/licenses/${name}.${lib}"
done
- name: Upload License Artifact
if: ${{ matrix.fanpico_board == '0804' && matrix.pico_board == 'pico' }}
uses: actions/upload-artifact@v4
with:
name: licenses
path: main/licenses
merge:
runs-on: ubuntu-latest
needs: build
env:
FANPICO_VERSION: ${{needs.build.outputs.fanpico_version}}
BUILD_DATE: ${{needs.build.outputs.build_date}}
COMPILER_VERSION: ${{needs.build.outputs.compiler_version}}
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: bundle
pattern: firmware-*
merge-multiple: true
- name: Calculate checksums
working-directory: bundle
run: |
sha256sum * > sha256sums.txt
ls -la
echo "### Compiler Used" >> $GITHUB_STEP_SUMMARY
echo "${{env.COMPILER_VERSION}}" >> $GITHUB_STEP_SUMMARY
echo "### Generated firmware files" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
cat sha256sums.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: Upload checksum artifact
uses: actions/upload-artifact@v4
with:
name: firmware-checksums
path: bundle/*.txt
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: fanpico-firmware-${{env.BUILD_DATE}}-${{env.FANPICO_VERSION}}-build${{github.run_number}}
delete-merged: true
================================================
FILE: .github/workflows/codeql.yml
================================================
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '30 8 * * 6'
env:
BUILD_TYPE: Release
# Pico-SDK version
PICO_SDK_REF: 2.2.0
PICOTOOL_REF: 2.2.0
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'cpp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache Pico-SDK
id: cache-pico-sdk
uses: actions/cache@v4
with:
path: pico-sdk
key: ${{runner.os}}-pico-sdk-${{env.PICO_SDK_REF}}
- name: Checkout Pico-SDK
if: ${{steps.cache-pico-sdk.outputs.cache-hit != 'true' }}
uses: actions/checkout@v4
with:
repository: raspberrypi/pico-sdk
ref: ${{env.PICO_SDK_REF}}
path: pico-sdk
submodules: recursive
- name: Add PICO_SDK_PATH to Environment
run: |
echo "PICO_SDK_PATH=${{github.workspace}}/pico-sdk" >> $GITHUB_ENV
- name: Cache picotool
id: cache-picotool
uses: actions/cache@v4
with:
path: picotool
key: ${{runner.os}}-picotool-${{env.PICOTOOL_REF}}
- name: Checkout picotool
if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }}
uses: actions/checkout@v4
with:
repository: raspberrypi/picotool
ref: ${{env.PICOTOOL_REF}}
path: picotool-src
submodules: recursive
- name: Build picotool
if: ${{steps.cache-picotool.outputs.cache-hit != 'true' }}
run: |
cmake -S picotool-src -B picotool-src/build -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/picotool -DPICOTOOL_FLAT_INSTALL=1
cd picotool-src/build
make -j ${{env.BUILD_THREADS}} install
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DPICO_BOARD=pico_w -DFANPICO_BOARD=0804D -Dpicotool_DIR=${{github.workspace}}/picotool/picotool
- name: Build
run: cmake --build build --config ${{env.BUILD_TYPE}}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
================================================
FILE: .gitignore
================================================
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
# Emacs
*~
# MacOS
.DS_Store
build/
================================================
FILE: .gitmodules
================================================
[submodule "libs/cJSON"]
path = libs/cJSON
url = https://github.com/DaveGamble/cJSON.git
[submodule "libs/ss_oled-lib"]
path = libs/ss_oled-lib
url = https://github.com/tjko/ss_oled-lib.git
[submodule "libs/libb64"]
path = libs/libb64
url = https://github.com/libb64/libb64.git
[submodule "libs/bb_spi_lcd-lib"]
path = libs/bb_spi_lcd-lib
url = https://github.com/tjko/bb_spi_lcd-lib.git
[submodule "libs/pico-telnetd"]
path = libs/pico-telnetd
url = https://github.com/tjko/pico-telnetd.git
[submodule "libs/pico-lfs"]
path = libs/pico-lfs
url = https://github.com/tjko/pico-lfs.git
[submodule "libs/pico-1wire-lib"]
path = libs/pico-1wire-lib
url = https://github.com/tjko/pico-1wire-lib.git
[submodule "libs/pico-sensor-lib"]
path = libs/pico-sensor-lib
url = https://github.com/tjko/pico-sensor-lib.git
[submodule "libs/wolfssl"]
path = libs/wolfssl
url = https://github.com/wolfSSL/wolfssl.git
[submodule "libs/wolfssh"]
path = libs/wolfssh
url = https://github.com/wolfSSL/wolfssh.git
[submodule "libs/pico-sshd"]
path = libs/pico-sshd
url = https://github.com/tjko/pico-sshd.git
================================================
FILE: CMakeLists.txt
================================================
# CMakeLists.txt for fanpico
#
cmake_minimum_required(VERSION 3.18)
# Include Pico-SDK
if (DEFINED ENV{PICO_SDK_PATH})
include($ENV{PICO_SDK_PATH}/external/pico_sdk_import.cmake)
else ()
include(cmake/pico_sdk_import.cmake)
endif ()
message("Pico SDK version: ${PICO_SDK_VERSION_STRING}")
if (PICO_SDK_VERSION_STRING VERSION_LESS "2.0.0")
message(FATAL_ERROR "Pico-SDK version 2.0.0 or later required.")
endif()
project(fanpico
VERSION 1.7.9
DESCRIPTION "FanPico - Programmable PWM (PC) Fan Controller"
HOMEPAGE_URL https://kokkonen.net/fanpico/
LANGUAGES C CXX ASM
)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
set(FANPICO_BUILD beta CACHE STRING "Fanpico Build Tag")
set(FANPICO_BOARD 0804D CACHE STRING "Fanpico Board Model")
#set_property(CACHE FANPICO_BOARD PROPERTY STRINGS 0804 0804D 0401D)
set(FANPICO_CUSTOM_THEME 0 CACHE STRING "Fanpico LCD Custom Theme")
set(FANPICO_CUSTOM_LOGO 0 CACHE STRING "Fanpico LCD Custom Logo")
set(TLS_SUPPORT 1 CACHE STRING "TLS Support")
# Generate some "random" data for mbedtls (better than nothing...)
set(EXTRA_ENTROPY_LEN 64)
string(RANDOM LENGTH ${EXTRA_ENTROPY_LEN} EXTRA_ENTROPY)
#set(CMAKE_BUILD_TYPE Debug)
pico_sdk_init()
message("---------------------------------")
message(" FANPICO_BOARD: ${FANPICO_BOARD}")
message(" PICO_BOARD: ${PICO_BOARD}")
message(" PICO_PLATFORM: ${PICO_PLATFORM}")
message("FANPICO_CUSTOM_THEME: ${FANPICO_CUSTOM_THEME}")
message(" FANPICO_CUSTOM_LOGO: ${FANPICO_CUSTOM_LOGO}")
message(" TLS_SUPPORT: ${TLS_SUPPORT}")
message(" CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
message("---------------------------------")
# External libaries
# pico-lfs
add_subdirectory(libs/pico-lfs)
# prevent warnings from littlefs...
set_source_files_properties(
libs/pico-lfs/libs/littlefs/lfs.c
PROPERTIES
COMPILE_OPTIONS "-Wno-unused-function"
)
# ss_oled
add_subdirectory(libs/ss_oled-lib)
# bb_spi_lcd
add_subdirectory(libs/bb_spi_lcd-lib)
# cJSON
add_library(cJSON INTERFACE)
target_include_directories(cJSON INTERFACE libs/cJSON)
target_sources(cJSON INTERFACE
libs/cJSON/cJSON.h
libs/cJSON/cJSON.c
)
# libb64
add_library(libb64 INTERFACE)
target_include_directories(libb64 INTERFACE libs/libb64/include)
target_sources(libb64 INTERFACE
libs/libb64/src/cdecode.c
libs/libb64/src/cencode.c
)
# pico-telnetd
add_subdirectory(libs/pico-telnetd)
# pico-1wire-lib
add_subdirectory(libs/pico-1wire-lib)
# pico-sensor-lib
add_subdirectory(libs/pico-sensor-lib)
# pico-sshd
add_subdirectory(libs/pico-sshd)
target_compile_definitions(pico-sshd-lib INTERFACE PICOSSHD_EXTERNAL_SHA512CRYPT)
# wolfSSL / wolfCrypt
if (DEFINED ENV{WOLFSSL_ROOT})
set(WOLFSSL_ROOT $ENV{WOLFSSL_ROOT})
else ()
set(WOLFSSL_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/libs/wolfssl)
endif ()
message("wolfSSL available at ${WOLFSSL_ROOT}")
include(libs/pico-sshd/cmake/wolfssl_pico.cmake)
# wolfSSH
if (DEFINED ENV{WOLFSSH_ROOT})
set(WOLFSSH_ROOT $ENV{WOLFSSH_ROOT})
else ()
set(WOLFSSH_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/libs/wolfssh)
endif ()
message("wolfSSH available at ${WOLFSSH_ROOT}")
include(libs/pico-sshd/cmake/wolfssh_pico.cmake)
include_directories(src/wolfssl)
# FanPico Firmware
add_executable(fanpico
src/fanpico.c
src/bi_decl.c
src/command.c
src/command_util.c
src/flash.c
src/config.c
src/display.c
src/display_lcd.c
src/display_oled.c
src/network.c
src/tls.c
src/pwm.c
src/tacho.c
src/sensors.c
src/i2c.c
src/onewire.c
src/filters.c
src/filter_lossypeak.c
src/filter_sma.c
src/square_wave_gen.c
src/psram.c
src/memtest.c
src/pulse_len.c
src/util.c
src/util_rp2.c
src/log.c
src/crc32.c
src/default_config.S
src/credits.s
src/logos/default.s
src/themes/lcd-background.s
)
if (FANPICO_CUSTOM_THEME)
message("Enable custom theme...")
target_sources(fanpico PRIVATE src/themes/custom.s)
set_property(SOURCE src/themes/custom.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/themes)
endif()
if (FANPICO_CUSTOM_LOGO)
message("Enable custom logo...")
target_sources(fanpico PRIVATE src/logos/custom.s)
set_property(SOURCE src/logos/custom.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/logos)
endif()
set_property(SOURCE src/*.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src)
set_property(SOURCE src/themes/lcd-background.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/themes)
set_property(SOURCE src/logos/default.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR}/src/logos)
set_property(SOURCE src/credits.s APPEND PROPERTY COMPILE_OPTIONS -I${CMAKE_CURRENT_LIST_DIR})
pico_generate_pio_header(fanpico ${CMAKE_CURRENT_LIST_DIR}/src/square_wave_gen.pio)
pico_enable_stdio_usb(fanpico 1)
pico_enable_stdio_uart(fanpico 0)
pico_add_extra_outputs(fanpico)
target_include_directories(fanpico PRIVATE src)
configure_file(src/config.h.in config.h)
configure_file(src/fanpico-compile.h.in fanpico-compile.h)
target_link_libraries(fanpico PRIVATE
pico_stdlib
pico_stdio_uart
pico_multicore
pico_rand
pico_aon_timer
hardware_pwm
hardware_pio
hardware_adc
hardware_i2c
pico-lfs
cJSON
ss_oled-lib
bb_spi_lcd-lib
libb64
pico_1wire_lib
pico_sensor_lib
)
if (PICO_CYW43_SUPPORTED) # set by PICO_BOARD=pico_w
message("Enabling WiFi stuff...")
target_sources(fanpico PRIVATE
src/dhcp.c
src/syslog.c
src/httpd.c
src/mqtt.c
src/telnetd.c
src/snmp.c
src/sshd.c
src/ssh_util.c
# ${WOLFSSL_ROOT}/wolfcrypt/test/test.c
src/util_net.c
)
target_link_libraries(fanpico PRIVATE
pico_cyw43_arch_lwip_threadsafe_background
pico_lwip_sntp
pico_lwip_http
pico_lwip_mqtt
pico_lwip_snmp
pico-telnetd-lib
pico-sshd-lib
wolfssl
wolfssh
)
if (TLS_SUPPORT)
target_link_libraries(fanpico PRIVATE
pico_lwip_mbedtls
pico_mbedtls
)
# prevent warnings from mbedtls...
set_source_files_properties(
${PICO_LWIP_PATH}/src/apps/altcp_tls/altcp_tls_mbedtls.c
PROPERTIES
COMPILE_OPTIONS "-Wno-unused-result"
)
endif()
endif()
target_compile_options(fanpico PRIVATE -Wall)
#target_compile_options(fanpico PRIVATE -fno-strict-aliasing -fwrapv -fno-aggressive-loop-optimizations)
#target_compile_options(fanpico PRIVATE -fstack-protector-all)
target_compile_options(fanpico PRIVATE -fmacro-prefix-map=${CMAKE_SOURCE_DIR}/=)
target_compile_definitions(fanpico PRIVATE USBD_MANUFACTURER="TJKO Industries")
target_compile_definitions(fanpico PRIVATE USBD_PRODUCT="FanPico-${FANPICO_BOARD} Fan Controller")
target_compile_definitions(fanpico PRIVATE USBD_DESC_STR_MAX=32)
target_compile_definitions(fanpico PRIVATE PARAM_ASSERTIONS_ENABLE_ALL=1)
target_compile_definitions(fanpico PRIVATE PICO_MALLOC_PANIC=0)
target_compile_definitions(fanpico PRIVATE PICO_DEBUG_MALLOC=0)
#target_compile_definitions(fanpico PRIVATE PICO_DEOPTIMIZED_DEBUG=1)
target_compile_definitions(fanpico PRIVATE PICO_STACK_SIZE=0x2000)
target_compile_definitions(fanpico PRIVATE PICO_CORE1_STACK_SIZE=0x1000)
target_compile_definitions(fanpico PRIVATE PICO_USE_STACK_GUARDS=1)
target_compile_definitions(fanpico PRIVATE PICO_RP2040_USB_DEVICE_ENUMERATION_FIX=1)
target_compile_definitions(fanpico PRIVATE PICO_USE_FASTEST_SUPPORTED_CLOCK=1)
target_compile_definitions(fanpico PRIVATE PICO_EMBED_XIP_SETUP=1)
#target_compile_definitions(bs2_default PRIVATE PICO_FLASH_SPI_CLKDIV=2)
target_compile_definitions(fanpico PRIVATE
LFS_THREADSAFE=1
LFS_NO_DEBUG=1
# LFS_YES_TRACE=1
# I2C_DEBUG=1
)
if (${PICO_PLATFORM} MATCHES rp2350)
pico_set_linker_script(fanpico ${CMAKE_SOURCE_DIR}/src/memmap_custom_rp2350.ld)
else()
pico_set_linker_script(fanpico ${CMAKE_SOURCE_DIR}/src/memmap_custom_rp2040.ld)
endif()
# eof :-)
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
# Fanpico: Programmable PWM (PC) Fan Controller
[](https://github.com/tjko/fanpico/actions/workflows/cmake.yml)
[](https://github.com/tjko/fanpico/actions/workflows/codeql.yml)
<p><a href="https://certification.oshwa.org/us002599.html" title="Open Source Hardware Association Certificate"><img align="right" width="10%" src="images/fanpico-oshw.svg" alt="[OSHW] US002599 | Certified open source hardware | oshwa.org/cert"></a></p>
Fanpico is a smart PWM (PC) fan controller based around [Raspberry Pi Pico](https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html) (RP2040 MCU). Fanpico operates as standalone controller that can be configured and left running. It does not require any drivers and doesn't care what OS is being used. FanPico is an Open-source hardware (OSHW) project.
[](images/fanpico-0804D-v1.3-large.jpg?raw=true)
[](images/fanpico-0401D-large.jpg?raw=true)
## What is it for?
* Fanpico is for customizing fan "curves" to fine tune how your motherboard controlled fans run.
* Fine tuning fan speeds to easily balance airflow.
* Controlling fan based on temperature sensor input.
* Monitoring fan speeds and behaviour as well as monitoring what exactly motherboard is doing.
* Fanpico works also as standalong controller for other things than a PC, it's been used controlling fans on 3D printers and on enclosed network equipment racks, etc..
## Features
* Controls up to 8 fans.
* Connect up to 4 motherboard fan outputs.
* Connect up to 2 remote temperature probes (plus onboard "ambient" temperature sensor).
* Support for [1-Wire Temperature sensors](https://github.com/tjko/fanpico/wiki/1%E2%80%90Wire-Temperature-Sensors-with-FanPico) (up to 8 sensors)
* Support for [I2C Temperature sensors](https://github.com/tjko/fanpico/wiki/I2C-Temperature-Sensors-with-FanPico) (up to 8 sensors)
* [OLED](https://github.com/tjko/fanpico/wiki/OLED-(I2C)-Display-Support) and [LCD](https://github.com/tjko/fanpico/wiki/LCD-(SPI)-Panel-Connection) display support (boards where model name ends with "D").
* Can be powered from motherboard fan outputs or using auxiliary power connector (4-Pin Floppy or DC Barrel jack connector).
* Ability to define custom fan "curves" for each fan.
* Ability to provide custom tachometer (fan RPM) output signal back to motherboard.
* Support for Locked Rotor (Alarm) signal fans (allows using regular tachometer fans with system expecting Locked Rotor Alarm fans and vice versa).
* Control fans from any motherboard PWM signal or from temperature sensors.
* OS Independent, no drivers or software needed.
* Configuration stored on the device itself (in the flash memory).
* SCPI "like" programming interface (see [Command Reference](commands.md))
* Monitor each fan and motherboard output signals as well as temperatures.
* [WiFi support](https://github.com/tjko/fanpico/wiki/FanPico-Network-Interface) if opting to mount Pico W on the board.
* [HTTP server](https://github.com/tjko/fanpico/wiki/Fanpico-HTTP-Server) with TLS (HTTPS) support.
* [MQTT client](https://github.com/tjko/fanpico/wiki/FanPico-MQTT-Tutorial) with TLS support for logging data and to receive commands.
* [Home Assistant](https://github.com/tjko/fanpico/wiki/FanPico-Home-Assistant-(MQTT-Discovery)-Support) support using MQTT Discovery feature.
* Telnet server for configuration and monitoring.
* [SSH server](https://github.com/tjko/fanpico/wiki/Fanpico-Using-SSH-Server) for configuration and monitoring (experimental).
* [SNMP Agent](https://github.com/tjko/fanpico/wiki/SNMP-Agent-Usage) for monitoring.
### Interfaces
* Serial "Console". Primary method for configuring/monitoring FanPico units is via (USB) Serial console (some units also have 3.3V TTL Serial connection).
* Desktop application (that polls FanPico using SCPI commands over the console connection): [FanPico Monitor](https://github.com/tjko/fanpico-monitor)
* Web Interface (available when using _Pico W_) over WiFi
[](images/fanpico-web.png?raw=true)
For more documentation check [FanPico Wiki](https://github.com/tjko/fanpico/wiki)
## Sponsors
I would like to thank following sponsors, who have helped FanPico project:
* PCBWay
## Where can I get one?
Currently Fanpico is available as a DIY project.
Check discussion forums for places to purchase Kits or PCBs: [Places to Purchase FanPico](https://github.com/tjko/fanpico/discussions/12)
(Instructions for building the kit are in [FanPico Wiki](https://github.com/tjko/fanpico/wiki))
However, if there is sufficient interest, then ready-made units may be made available for sale.
If you'd be interested in purchasing FanPico pease indicate your interest here: [FanPico Forum](https://github.com/tjko/fanpico/discussions/9)
### DIY Option
You can upload the Kerber files (found under boards directory) to your favorite PCB maker website and get your boards produced in matter of days.
Component list (BOM or bill of materials) is found under boards directory as well along with the electrical schematics.
NOTE, check [discussions forum](https://github.com/tjko/fanpico/discussions/) for giveaways for free PCBs.
### Review Units
If you are member of press (or YouTuber) and would like to review/test Fanpico. Please contact me via email.
## How Can I help?
* Build your own FanPico and provide feedback, suggestions (see discussion forums).
* If you're into electronics new/improved board designs are most welcome.
* If you're into programming:
- Create cool (desktop) program that allows easily configuring FanPico boards (with ability to "draw" fan curves, etc..) and to monitor Fan statuses.
- Help improve the firmware.
* If you're into graphics (or web) design:
- Help create cool (but lightweight) web interface
- Create better logo for FanPico
* As this is Open (Source) Hardware Project, if you like to build (and sell) assembled boards or DIY kits, you'd be most welcome...
* You can always donate (and get your name added to the Sponsors section, if you so wish).
## Hardware
Fanpico is Open Source Hardware, reference design is provided for the "0804" model (8 fan outputs and 4 motherboard fan inputs), and "0804D" model that adds OLED display support (hence the "D" suffix).
Additional models with different combinations of fan inputs/outputs could be easily designed (takining into account limitations of Raspberry Pi Pico I/O limits). New and improved PCB models/designs are most welcome.
Model "0840D" with (with right-angle connectors and DC power connector):
[](images/fanpico-0804D-v1.3-dc-large.jpg?raw=true)
Model "0804" without display (with straight connectors):

### Hardware Design
Fanpico (reference design) utilizes all available I/O pins on a Raspberry Pi Pico.
* Fan PWM outputs are driven by the Pico's PWM hardware.
* Motherboard Fan PWM inputs are read using Pico's PWM hardware.
* Tacho signal output (for motherboard connectors) is generated using Pico's PIO hardware, providing extremely stable tachometer signal.
* Tacho signal inputs (from fans) are read differently in model 0804 and 0804D:
- 0804: signals are read using GPIO interrupts, measuring all fans simultaneously by counting number of pulses received over a period of time.
- 0804D: signals are read through multiplexer measuring one fan at a time, by measuring pulse length.
* Temperature readings are done using ADC, with help of a accurrate 3V voltage reference (LM4040). Any NTC (10k or 100k) thermistors can be used as themperature sensors.
* Each FAN output has jumper to select whether fan gets its power from associated MBFAN connector or from the AUX connector
* There is a jumper to select whether power the Fanpico itself from MBFAN1 or AUX connector.
To help design and test Fanpico couple other projects were born:
* [Tiny PicoProbe](https://github.com/tjko/tiny-picoprobe/) - tiny PicoProbe implementation.
* [Fan Test Adapter](https://github.com/tjko/fan-test-adapter/) - adapter to help simulate motherboard fan outputs.
Projects based on FanPico firmware:
* [BrickPico](https://github.com/tjko/brickpico/) - (LEGO) LED Light Kit Controller.
### Models (PCB designs)
Currently following models are available:
|Model|Fans (Outputs)|MB Fan (Inputs)|External Temperature Sensors|Display|Notes|
|-----|--------------|---------------|-------------------|--------|-----|
|[FANPICO-0804](boards/fanpico-0804/)|8|4|2|N|First publicly available board (reference design).|
|[FANPICO-0804D](boards/fanpico-0804D/)|8|4|2|Y|Support for OLED (128x64 or 128x128) displays|
|[FANPICO-0401D](boards/fanpico-0401D/)|4|1|2|Y|Adds QWIIC and 1-Wire connectors.|
|[FANPICO-0200](boards/fanpico-0200/)|2|0|2|Y|OLED display supported via QWIIC connector. PCB under development.
(all boards have one additional 'on-board' temperature sensor on the RP2040 MCU itself)
Models ending with "D" have connector to attach OLED display module to see 'real-time' status of fans and temperatures.
OLED panel directly mounted on the PCB:

LCD Panel attached via a short cable:

#### Accessory Boards (PCB designs)
Following accessories are available:
|Model|Info|
|-----|----|
|[OLED-Adapter](boards/oled-adapter/)|Mounting adapter for OLED boards with different pinouts.|
|[Power-Board](boards/power-board/)|Adapter for using high-power fans with FanPico.|
## Firmware
Firmware is developed in C using the Pico SDK. Pre-compiled firmware is released when there is new major features or bug fixes.
Latest pre-compiled firmware image can be found here: [Releases](https://github.com/tjko/fanpico/releases)
To get latest firmware with latest updates/fixes you must compile the firmware from the sources.
### Installing firmware image
Firmware can be installed via the built-in UF2 bootloader on the Raspberry Pi Pico or using the debug header with Picoprobe, etc...
#### Selecting Right Firmware to use
Each release (zip file) contains multiple different firmware files.
Make sure to select firmware for the board you're using and for the pico model ("pico_w" if using Pico W).
Firmware file names have format: fanpico-<board_model>-<pico_model>.uf2
```
fanpico-0401D-pico.uf2
fanpico-0401D-pico_w.uf2
fanpico-0804-pico.uf2
fanpico-0804-pico_w.uf2
fanpico-0804D-pico.uf2
fanpico-0804D-pico_w.uf2
```
#### Upgrading Firmware
Firmware upgrade steps:
* Boot Pico into UF2 bootloader. This can be done in two ways:
1) Press and hold "bootsel" button and then press and release "reset" button.
2) Issue command: SYS:UPGRADE
* Copy firmware file to the USB mass storage device that appears.
* As soon as firmware copy is complete, Pico will reboot and run the fanpico firmware.
### Building Firmware Images
Raspberry Pi Pico C/C++ SDK is required for compiling the firmware:
#### Requirements / Dependencies
* [Raspberry Pi Pico C/C++ SDK](https://www.raspberrypi.com/documentation/microcontrollers/c_sdk.html)
* [cJSON](https://github.com/DaveGamble/cJSON)
* [pico-lfs](https://github.com/tjko/pico-lfs)
* [ss_oled-lib](https://github.com/tjko/ss_oled-lib)
* [bb_spi_lcd-lib](https://github.com/tjko/bb_spi_lcd-lib)
* [libb64](https://github.com/libb64/libb64)
* [pico-telnetd](https://github.com/tjko/pico-telnetd)
* [pico-1wire-lib](https://github.com/tjko/pico-1wire-lib)
* [pico-sensor-lib](https://github.com/tjko/pico-sensor-lib)
* [wolfSSL](https://github.com/wolfSSL/wolfssl)
* [wolfSSH](https://github.com/wolfSSL/wolfssh)
* [pico-sshd](https://github.com/tjko/pico-sshd)
##### Install Pico SDK
Pico SDK must be installed working before you can compile fanpico.
Instructions on installing Pico SDK see: [Getting started with Raspberry Pi Pico](https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf)
(Make sure PICO_SDK_PATH environment variable is set)
##### Downloading sources
Create some directory for building fanpico ('src' used in this example):
```
$ mkdir src
$ cd src
$ git clone https://github.com/tjko/fanpico.git
$ git submodule update --init --recursive
```
##### Building fanpico firmware
To build fanpico firmware, first create a build directory:
```
$ cd fanpico
$ mkdir build
```
Select which board to build firmware for (default is "0804") and which Pico is to be used (default is "pico"):
```
$ cd build
$ cmake -DFANPICO_BOARD=0804D -DPICO_BOARD=pico_w ..
```
Then compile fanpico:
```
$ make -j
```
After successful compile you should see firmware binary in the build directory:
subdirectory:
```
$ ls *.uf2
fanpico.uf2
```
If you have picotool installed you can check the firmware image information:
```
$ picotool info -a fanpico.uf2
File fanpico.uf2 family ID 'rp2040':
Program Information
name: fanpico
version: 1.7.6
web site: https://kokkonen.net/fanpico/
description: FanPico-0804D - Smart PWM Fan Controller
features: USB stdin / stdout
boot settings: bootdelay = 0
safemode = 0
binary start: 0x10000000
binary end: 0x1012edc0
embedded drive: 0x101c0000-0x10200000 (256K): littlefs
Fixed Pin Information
0: TX (Serial) / MISO (SPI)
1: RX (Serial) / CS (SPI)
2: SDA (I2C) / SCK (SPI)
3: SCL (I2C) / MOSI (SPI)
4: Fan1 PWM signal (output)
5: Fan2 PWM signal (output)
6: Fan3 PWM signal (output)
7: Fan4 PWM signal (output)
8: Fan5 PWM signal (output)
9: Fan6 PWM signal (output)
10: Fan7 PWM signal (output)
11: Fan8 PWM signal (output)
12: MB Fan1 tacho signal (output)
13: MB Fan1 PWM signal (input)
14: MB Fan2 tacho signal (output)
15: MB Fan2 PWM signal (input)
16: MB Fan3 tacho signal (output)
17: MB Fan3 PWM signal (input)
18: MB Fan4 tacho signal (output)
19: MB Fan4 PWM signal (input)
20: Multiplexer S2 (output)
21: Multiplexer S1 (output)
22: Multiplexer S0 (output)
26: Multiplexer A [tacho signal] (input)
27: Temperature Sensor1 (input)
28: Temperature Sensor2 (input)
Build Information
sdk version: 2.1.1
pico_board: pico_w
boot2_name: boot2_w25q080
build date: Jul 10 2025
build attributes: Release
Metadata Blocks
none
```
================================================
FILE: boards/fanpico-0200/README.md
================================================
# FANPICO-0200 PCB
PCB Size: 81.0mm x 60.0mm

## Change Log
v1.1
- Add fuse (F3) to prevent pulling too much current through the buck regulator.
- Move sensor connectors footprints (J16 & J17) slightly away from board edge
to allow better fitment of right angle connectors.
v1.0
- First Prototye
================================================
FILE: boards/fanpico-0200/bom.csv
================================================
"Reference","Value","Datasheet","Footprint","Qty","DNP","Mouser Part Number","LCSC Part Number","Manufacturer","Manufacturer Part Number","Type","Notes"
"C1,C3,C4,C6,C24,C26,C29","0.1uF 50V","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","7","","","C1591","Samsung Electro-Mechanics","CL10B104KB8NNNC","SMD",""
"C2","10uF 50V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","1","","","C89632","Samsung Electro-Mechanics","CL31B106KBHNNNE","SMD",""
"C5","10uF 25V","~","Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder","1","","","C7194","Kyocera AVX","TAJB106K025RNJ","SMD",""
"C7,C8,C30","10uF 16V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","3","","80--T491A106K016","C7171","Kyocera AVX","TAJA106K016RNJ","SMD",""
"C9","12pF 50V","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","1","","","C38523","Samsung Electro-Mechanics","CL10C120JB8NNNC","SMD",""
"C10,C11","22uF 25V","~","Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder","2","","","C12891","Samsung Electro-Mechanics","CL31A226KAHNNNE","SMD",""
"C23,C25","1nF 50V","~","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","2","","","C1588","Samsung Electro-Mechanics","CL10B102KB8NNNC","SMD",""
"D1","SM5819PL 1A 40V","~","Diode_SMD:D_SMA","1","","833-SM5819PL-TP","C669023","MCC","SM5819PL-TP","SMD",""
"D2,D4,D5,D6","LED 0805 (green)","~","LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder","4","","710-150080GS75000","C434432","Yongyu Photoelectric","SZYY0805G","SMD",""
"D3,D28,D31","ES1D 1A 200V","~","Diode_SMD:D_SMA_Handsoldering","3","","512-ES1D","C445494","MDD(Microdiode Semiconductor)","ES1D","SMD",""
"D7,D13,D14,D16,D17,D23","3.3V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","6","","","C78439","Brightking","UDD32C03L01","SMD",""
"D8","30V TVS","~","Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder","1","","","C7473181","MSKSEMI","PESD0603MS30-MS","SMD",""
"D21,D22,D26","12V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","3","","","C5199168","ElecSuper","UDD32C12L01-ES","SMD","C502541"
"D27,D30","BAT54(C)","~","FanPico:D_SOT-23_ANK","2","","241-BAT54C_R1_00001","C2844172","FUXINSEMI","BAT54C","SMD",""
"D35,D36","5V TVS","~","Diode_SMD:D_SOD-323_HandSoldering","2","","","C5180216","ElecSuper","PESD5V0S1BA-ES","SMD",""
"F1","Polyfuse 2A (48V)","~","Fuse:Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder","1","","","C22399926","BHFUSE","BSMD2920-200-48V","SMD",""
"F2","Polyfuse 0.5A","~","Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder","1","","530-0ZCJ0050AF2E","C70072","TECHFUSE","nSMD035-16V","SMD",""
"F3","Polyfuse 1A","~","Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder","1","","","C7542958","LUTE","1206L100/30NR","SMD",""
"G1","qwiic_Logo","","sparkfun-qwiic:qwiic_5mm","1","","","","","","",""
"G2","Logo_Open_Hardware_Small","~","Symbol:OSHW-Logo_5.7x6mm_SilkScreen","1","","","","","","",""
"H1,H2,H3,H4","MountingHole_Pad","~","MountingHole:MountingHole_3.2mm_M3_Pad_Via","4","DNP","","","","","",""
"J1","DC Power Input","~","TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal","1","","651-1715022 ","C1509679","JILN","JL301-50002U04","THT",""
"J5","1-Wire","~","TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal","1","","","C68305","BOOMELE(Boom Precision Elec)","2.54-3P","THT","C5188443"
"J6","QWIIC","~","Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal","1","","","C160404","JST","SM04B-SRSS-TB(LF)(SN)","SMD",""
"J13","Fan1 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P"
"J14","Fan2 Output","~","Connector:FanPinHeader_1x04_P2.54mm_Vertical","1","","538-47053-1000","C240840","MOLEX","470531000","THT","KF2510-AW 3+1P"
"J16","Sensor1","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","","C20079","BOOMELE(Boom Precision Elec)","XH-2A","THT","C33132 (Right-Angle)"
"J17","Sensor2","~","Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical","1","","","C20079","BOOMELE(Boom Precision Elec)","XH-2A","THT","C33132 (Right-Angle)"
"J19","Serial Console (TTL)","~","Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical","1","","","C2937625","XFCN","PZ254V-11-03P","THT",""
"JP12","1-Wire PullUp Enable","~","Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical","1","","","C492401","XFCN","PZ254V-11-02P","THT",""
"L1","10uH","~","FanPico:IND-SMD_L7.2-W6.6_GPSR07X0","1","","","C5189958","SHOU HAN","CYA0630-10UH","SMD",""
"R1,R4","1k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C22548","YAGEO","RC0603FR-071KL","SMD",""
"R2","4.7k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C99782","YAGEO","RC0603FR-074K7L","SMD",""
"R3,R48","330","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C105881","YAGEO","RC0603FR-07330RL","SMD",""
"R5,R7,R40,R43,R50,R51","10k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","6","","","C98220","YAGEO","RC0603FR-0710KL","SMD",""
"R6","4.99k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C114621","YAGEO","RC0603FR-074K99L","SMD",""
"R8","422k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C245966","YAGEO","RC0603FR-07422KL","SMD",""
"R9","30.1k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C23000","UNI-ROYAL","0603WAF3012T5E","SMD",""
"R10","49.9k","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","","","C114624","YAGEO","RC0603FR-0749K9L","SMD",""
"R41,R44","680","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C115415","YAGEO","RC0603JR-07680RL","SMD",""
"R49,R55","0","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","2","","","C21189","UNI-ROYAL","0603WAF0000T5E","SMD",""
"R54","DNF","~","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","1","DNP","","C21189","UNI-ROYAL","0603WAF0000T5E","SMD",""
"SW1","SW_Push","~","FanPico:SW-SMD_L3.9-W3.0-P4.45","1","","","C720477","XUNPU","TS-1088-AR02016","SMD",""
"U1","SN74AHCT126","(AHCT125 = C36365, AHCT126 = C155177)","Package_SO:TSSOP-14_4.4x5mm_P0.65mm","1","","","C155177","TI","SN74AHCT126PWR","SMD",""
"U2","AP63301","","FanPico:TSOT-26","1","","","C2158003","DIODES","AP63301WU-7","SMD",""
"U4","Pico W","","FanPico:RPi_Pico_PicoW_SMD_TH","1","","","","RaspberryPi","Pico W / Pico 2 W","SMD",""
"U5","SPX1117-ADJ","http://www.diodes.com/datasheets/AP1117.pdf","Package_TO_SOT_SMD:SOT-223-3_TabPin2","1","","","C67402","MaxLinear","SPX1117M3-L/TR","SMD",""
"U6","LM4040DBZ-3","http://www.ti.com/lit/ds/symlink/lm4040-n.pdf","Package_TO_SOT_SMD:SOT-23","1","","","C143326","MAXIM","LM4040AIM3-3.0+T","SMD",""
================================================
FILE: boards/fanpico-0200/kicad/extra_fan_channel.kicad_sch
================================================
(kicad_sch
(version 20231120)
(generator "eeschema")
(generator_version "8.0")
(uuid "a3e4201d-65f6-465e-922c-6bde94345467")
(paper "A4")
(title_block
(title "FanPico-0200 v1.1")
(date "2025-12-05")
(company "Timo Kokkonen <tjko@iki.fi>")
(comment 3 "Fanpico firmware reference PCB.")
)
(lib_symbols
(symbol "Device:C"
(pin_numbers hide)
(pin_names
(offset 0.254)
)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "C"
(at 0.635 2.54 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Value" "C"
(at 0.635 -2.54 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Footprint" ""
(at 0.9652 -3.81 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Unpolarized capacitor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "cap capacitor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "C_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762) (xy 2.032 -0.762)
)
(stroke
(width 0.508)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.032 0.762) (xy 2.032 0.762)
)
(stroke
(width 0.508)
(type default)
)
(fill
(type none)
)
)
)
(symbol "C_1_1"
(pin passive line
(at 0 3.81 270)
(length 2.794)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 0 -3.81 90)
(length 2.794)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
(symbol "Device:D"
(pin_numbers hide)
(pin_names
(offset 1.016) hide)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "D"
(at 0 2.54 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "D"
(at 0 -2.54 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Diode"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Device" "D"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Pins" "1=K 2=A"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "diode"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "D_0_1"
(polyline
(pts
(xy -1.27 1.27) (xy -1.27 -1.27)
)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 1.27 0) (xy -1.27 0)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
)
(symbol "D_1_1"
(pin passive line
(at -3.81 0 0)
(length 2.54)
(name "K"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 3.81 0 180)
(length 2.54)
(name "A"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
(symbol "Device:D_TVS"
(pin_numbers hide)
(pin_names
(offset 1.016) hide)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "D"
(at 0 2.54 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "D_TVS"
(at 0 -2.54 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Bidirectional transient-voltage-suppression diode"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "diode TVS thyrector"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "D_TVS_0_1"
(polyline
(pts
(xy 1.27 0) (xy -1.27 0)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27)
)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27)
)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
)
(symbol "D_TVS_1_1"
(pin passive line
(at -3.81 0 0)
(length 2.54)
(name "A1"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 3.81 0 180)
(length 2.54)
(name "A2"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
(symbol "Device:R"
(pin_numbers hide)
(pin_names
(offset 0)
)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "R"
(at 2.032 0 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "R"
(at 0 0 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at -1.778 0 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Resistor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "R res resistor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "R_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "R_0_1"
(rectangle
(start -1.016 -2.54)
(end 1.016 2.54)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
)
(symbol "R_1_1"
(pin passive line
(at 0 3.81 270)
(length 1.27)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 0 -3.81 90)
(length 1.27)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
(symbol "power:+3.3V"
(power)
(pin_numbers hide)
(pin_names
(offset 0) hide)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "#PWR"
(at 0 -3.81 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "+3.3V"
(at 0 3.556 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"+3.3V\""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "global power"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27) (xy 0 2.54)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0 0) (xy 0 2.54)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0 2.54) (xy 0.762 1.27)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
)
(symbol "+3.3V_1_1"
(pin power_in line
(at 0 0 90)
(length 0)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
(symbol "power:GND"
(power)
(pin_numbers hide)
(pin_names
(offset 0) hide)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "#PWR"
(at 0 -6.35 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 0 -3.81 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "global power"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
)
(symbol "GND_1_1"
(pin power_in line
(at 0 0 270)
(length 0)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
)
(junction
(at 146.05 74.93)
(diameter 0)
(color 0 0 0 0)
(uuid "4934aed7-9338-49be-aee9-d617ef7b3e51")
)
(junction
(at 195.58 74.93)
(diameter 0)
(color 0 0 0 0)
(uuid "4e267e78-bddd-40b5-9867-c24899e604c9")
)
(junction
(at 167.64 121.92)
(diameter 0)
(color 0 0 0 0)
(uuid "8f9aa02d-452d-42e7-8563-0d0082e11af4")
)
(junction
(at 179.07 132.08)
(diameter 0)
(color 0 0 0 0)
(uuid "9f2e46e1-c478-4404-884b-69466fb68e1c")
)
(junction
(at 179.07 121.92)
(diameter 0)
(color 0 0 0 0)
(uuid "ac05814b-dc09-4f9a-bc3a-2cb524195c3f")
)
(junction
(at 166.37 74.93)
(diameter 0)
(color 0 0 0 0)
(uuid "bc3c0dfa-b464-40ed-b333-1addf7963fde")
)
(junction
(at 195.58 46.99)
(diameter 0)
(color 0 0 0 0)
(uuid "c65cf519-771a-455b-9fae-86c31004fccc")
)
(wire
(pts
(xy 195.58 74.93) (xy 195.58 80.01)
)
(stroke
(width 0)
(type default)
)
(uuid "05338c02-d69b-4bed-8580-e522a090bd45")
)
(wire
(pts
(xy 195.58 60.96) (xy 195.58 63.5)
)
(stroke
(width 0)
(type default)
)
(uuid "07926de5-6438-4a83-8c20-6b36a09f0ddb")
)
(polyline
(pts
(xy 250.19 144.78) (xy 207.01 144.78)
)
(stroke
(width 0)
(type default)
)
(uuid "0b251daa-acb2-4563-8a00-282536baae82")
)
(wire
(pts
(xy 101.6 121.92) (xy 101.6 135.89)
)
(stroke
(width 0)
(type default)
)
(uuid "1f024d5e-560e-405c-b664-e735dd50af4a")
)
(wire
(pts
(xy 179.07 132.08) (xy 179.07 135.89)
)
(stroke
(width 0)
(type default)
)
(uuid "239ab539-0f2d-42cb-a59d-0f7a520a8dcf")
)
(wire
(pts
(xy 195.58 74.93) (xy 212.09 74.93)
)
(stroke
(width 0)
(type default)
)
(uuid "24bcd667-a4ad-49f2-82b8-20ee15fe191d")
)
(wire
(pts
(xy 166.37 60.96) (xy 166.37 63.5)
)
(stroke
(width 0)
(type default)
)
(uuid "29fa2cb4-25a8-4253-84f8-795855ed8080")
)
(wire
(pts
(xy 171.45 46.99) (xy 195.58 46.99)
)
(stroke
(width 0)
(type default)
)
(uuid "3222a7b4-5960-48c5-b386-30b570b191e1")
)
(polyline
(pts
(xy 250.19 31.75) (xy 250.19 144.78)
)
(stroke
(width 0)
(type default)
)
(uuid "4bcd8d4b-6bb8-48f7-9029-c4c42d68bceb")
)
(wire
(pts
(xy 167.64 129.54) (xy 167.64 132.08)
)
(stroke
(width 0)
(type default)
)
(uuid "4f0cd46e-f1ad-4a55-84d1-386ed36e8a83")
)
(wire
(pts
(xy 166.37 71.12) (xy 166.37 74.93)
)
(stroke
(width 0)
(type default)
)
(uuid "51405f88-3b2e-4de2-9aab-1d126e774505")
)
(wire
(pts
(xy 173.99 74.93) (xy 166.37 74.93)
)
(stroke
(width 0)
(type default)
)
(uuid "5d7c9e49-c51b-4cd3-9c74-e64da3dc723c")
)
(wire
(pts
(xy 195.58 46.99) (xy 212.09 46.99)
)
(stroke
(width 0)
(type default)
)
(uuid "64d1f619-52db-4a09-8a28-848f170f0a20")
)
(polyline
(pts
(xy 90.17 34.29) (xy 137.16 34.29)
)
(stroke
(width 0)
(type default)
)
(uuid "650bf3ce-8e8e-4b15-8637-54cb9b7d608d")
)
(polyline
(pts
(xy 207.01 31.75) (xy 250.19 31.75)
)
(stroke
(width 0)
(type default)
)
(uuid "66311f16-42b4-4a80-99aa-0e16a0305b15")
)
(polyline
(pts
(xy 137.16 90.17) (xy 90.17 90.17)
)
(stroke
(width 0)
(type default)
)
(uuid "71f1d60b-385f-4b2a-8c0f-92a6f8634db3")
)
(wire
(pts
(xy 146.05 87.63) (xy 146.05 91.44)
)
(stroke
(width 0)
(type default)
)
(uuid "81e854b4-7131-4b2b-b926-8bd1b2e4e843")
)
(wire
(pts
(xy 66.04 135.89) (xy 101.6 135.89)
)
(stroke
(width 0)
(type default)
)
(uuid "8d0a11f6-388a-4c76-ab1d-fdcf7b784131")
)
(polyline
(pts
(xy 90.17 34.29) (xy 90.17 90.17)
)
(stroke
(width 0)
(type default)
)
(uuid "90f6e54f-8e86-4885-a5e0-960086fd80b7")
)
(wire
(pts
(xy 179.07 121.92) (xy 212.09 121.92)
)
(stroke
(width 0)
(type default)
)
(uuid "92a45522-f05b-4305-8b6a-18a9db6efdd7")
)
(wire
(pts
(xy 179.07 129.54) (xy 179.07 132.08)
)
(stroke
(width 0)
(type default)
)
(uuid "ac920f33-a13d-4674-8247-5663f541b13e")
)
(wire
(pts
(xy 146.05 74.93) (xy 132.08 74.93)
)
(stroke
(width 0)
(type default)
)
(uuid "bb43e9ed-3325-4a9f-855c-573d9e644fdb")
)
(wire
(pts
(xy 146.05 74.93) (xy 146.05 80.01)
)
(stroke
(width 0)
(type default)
)
(uuid "c24962ac-0aa7-4b5f-8ff3-244ea83df066")
)
(wire
(pts
(xy 167.64 121.92) (xy 179.07 121.92)
)
(stroke
(width 0)
(type default)
)
(uuid "c7dc142e-31cd-4ff7-a1c4-185343ae8f78")
)
(wire
(pts
(xy 166.37 74.93) (xy 146.05 74.93)
)
(stroke
(width 0)
(type default)
)
(uuid "cf212b08-31ad-4e19-903d-ca6ccfb8ccdd")
)
(wire
(pts
(xy 195.58 46.99) (xy 195.58 53.34)
)
(stroke
(width 0)
(type default)
)
(uuid "d3fb9dda-2c53-4126-a673-2a22ced20443")
)
(wire
(pts
(xy 101.6 121.92) (xy 167.64 121.92)
)
(stroke
(width 0)
(type default)
)
(uuid "d56419c1-2488-4102-8a1c-bdb708cc35ca")
)
(polyline
(pts
(xy 207.01 31.75) (xy 207.01 144.78)
)
(stroke
(width 0)
(type default)
)
(uuid "d781a121-7dce-4e92-b9ad-3e37759ee30c")
)
(wire
(pts
(xy 167.64 132.08) (xy 179.07 132.08)
)
(stroke
(width 0)
(type default)
)
(uuid "e0a1d798-f495-4ded-8f8a-2525b66ec0d5")
)
(wire
(pts
(xy 195.58 87.63) (xy 195.58 91.44)
)
(stroke
(width 0)
(type default)
)
(uuid "ea9008d9-37c4-4f12-b430-1228301c1358")
)
(wire
(pts
(xy 181.61 74.93) (xy 195.58 74.93)
)
(stroke
(width 0)
(type default)
)
(uuid "f804c6fc-5a85-423f-8ff9-2e1589e89c38")
)
(wire
(pts
(xy 132.08 46.99) (xy 163.83 46.99)
)
(stroke
(width 0)
(type default)
)
(uuid "f8154772-bd77-41c1-9a1e-fcfdebcdcac4")
)
(wire
(pts
(xy 160.02 60.96) (xy 166.37 60.96)
)
(stroke
(width 0)
(type default)
)
(uuid "fa3056d1-383c-4a6e-aa50-73d503531c9d")
)
(polyline
(pts
(xy 137.16 34.29) (xy 137.16 90.17)
)
(stroke
(width 0)
(type default)
)
(uuid "fcf37293-f178-4396-8fee-82c7d5b494ed")
)
(text "MCU Inputs/Outputs"
(exclude_from_sim no)
(at 104.14 38.1 0)
(effects
(font
(size 1.27 1.27)
)
(justify left bottom)
)
(uuid "53707df5-9a46-46d0-ac51-34bdb4c24446")
)
(text "(Extra) Fan Channel: ${SHEETNAME}"
(exclude_from_sim no)
(at 17.78 17.78 0)
(effects
(font
(size 2 2)
)
(justify left bottom)
)
(uuid "c43db354-0f28-4995-93b5-d0b6a1ecf636")
)
(text "To Fan"
(exclude_from_sim no)
(at 226.06 35.56 0)
(effects
(font
(size 1.27 1.27)
)
(justify left bottom)
)
(uuid "e18bc51f-9518-468f-97da-2d26eb089a20")
)
(hierarchical_label "PWR_OUT"
(shape output)
(at 212.09 121.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "0651f145-e5ab-45b0-a185-34b46b65decd")
)
(hierarchical_label "TACHO_READ"
(shape output)
(at 132.08 74.93 180)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "17e3805c-dc66-4948-bd12-835d03937191")
)
(hierarchical_label "TACHO_IN"
(shape input)
(at 212.09 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "44cf5094-95f1-41a4-b2b5-634803e10da1")
)
(hierarchical_label "PWM_GEN"
(shape input)
(at 132.08 46.99 180)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "7f09a51b-27ac-4cfb-822c-abe1268d8c50")
)
(hierarchical_label "PWM_OUT"
(shape output)
(at 212.09 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "7f310825-1f15-4d79-9bab-026cf11500fb")
)
(hierarchical_label "PWR_IN"
(shape input)
(at 66.04 135.89 180)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "e2014b0f-a50a-4333-81ed-31444f0ecafa")
)
(symbol
(lib_id "power:GND")
(at 146.05 91.44 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "0aebdc55-e632-4445-9db7-ba8cc31b43b3")
(property "Reference" "#PWR070"
(at 146.05 97.79 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 146.05 96.52 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 146.05 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 146.05 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 146.05 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "2aa46078-df7a-4f8d-b4e9-2440f4cf4d70")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "#PWR070")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "#PWR074")
(unit 1)
)
)
)
)
(symbol
(lib_id "power:+3.3V")
(at 160.02 60.96 90)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "2beabec1-a436-4b64-a488-7d07c9d15d77")
(property "Reference" "#PWR072"
(at 163.83 60.96 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "+3.3V"
(at 156.21 60.9599 90)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Footprint" ""
(at 160.02 60.96 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 160.02 60.96 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"+3.3V\""
(at 160.02 60.96 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "18527cec-a364-4293-a3ef-5550922c03aa")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "#PWR072")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "#PWR076")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:C")
(at 146.05 83.82 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "3cd107d3-c6a7-4254-9209-0b9ac70966b7")
(property "Reference" "C23"
(at 149.86 82.5499 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Value" "1nF 50V"
(at 149.86 85.0899 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder"
(at 147.0152 87.63 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Unpolarized capacitor"
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C1588"
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" ""
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "Samsung Electro-Mechanics"
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "CL10B102KB8NNNC"
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 146.05 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "62da4944-efd6-4146-9e24-7534afda4788")
)
(pin "2"
(uuid "08350092-d004-4d88-ad3b-41c1eb89e443")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "C23")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "C25")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:C")
(at 167.64 125.73 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "4d948fb0-0f6a-4c3b-ad9c-f4b8e97c3f7a")
(property "Reference" "C24"
(at 171.45 124.4599 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Value" "0.1uF 50V"
(at 171.45 126.9999 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder"
(at 168.6052 129.54 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Unpolarized capacitor"
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C1591"
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" ""
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "Samsung Electro-Mechanics"
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "CL10B104KB8NNNC"
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 167.64 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "34911415-9e26-4f43-9972-7ec508951cea")
)
(pin "2"
(uuid "c1dcf2f2-8ceb-454d-abe8-36c791deef4d")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "C24")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "C26")
(unit 1)
)
)
)
)
(symbol
(lib_id "power:GND")
(at 195.58 91.44 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "4e25f2ae-4b68-4e63-a15d-70880675d738")
(property "Reference" "#PWR022"
(at 195.58 97.79 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 195.58 96.52 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 195.58 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 195.58 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 195.58 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "0e08f158-50e9-41e9-aa19-92588a1ee656")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "#PWR022")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "#PWR023")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:D_TVS")
(at 195.58 57.15 90)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "6535bc33-56ae-4cc2-99e7-1448e1c62b75")
(property "Reference" "D35"
(at 198.12 55.8799 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
)
(property "Value" "5V TVS"
(at 198.12 58.4199 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
)
(property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering"
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Bidirectional transient-voltage-suppression diode"
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C5180216"
(at 195.58 57.15 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" ""
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "ElecSuper"
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "PESD5V0S1BA-ES"
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 195.58 57.15 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "e8702433-44c2-4946-aeb2-d43a492304ca")
)
(pin "2"
(uuid "d04829e4-c99e-474f-a569-53c22467dde9")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "D35")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "D36")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:D_TVS")
(at 195.58 83.82 90)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "6702d47f-0b12-4453-a9e7-aa625d400c1c")
(property "Reference" "D21"
(at 198.12 82.5499 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
)
(property "Value" "12V TVS"
(at 198.12 85.0899 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
)
(property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Bidirectional transient-voltage-suppression diode"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C5199168"
(at 195.58 83.82 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" ""
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "ElecSuper"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "UDD32C12L01-ES"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" "C502541"
(at 195.58 83.82 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "c5bab814-dd32-47e0-87f6-4603631d4fd9")
)
(pin "2"
(uuid "04566c58-479a-4b60-8194-4ad8bd081298")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "D21")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "D22")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:R")
(at 166.37 67.31 180)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "713f0faf-9b32-443b-b4b5-18ccafb68231")
(property "Reference" "R40"
(at 168.91 66.0399 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
)
(property "Value" "10k"
(at 168.91 68.5799 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"
(at 168.148 67.31 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Resistor"
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C98220"
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" ""
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "YAGEO"
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "RC0603FR-0710KL"
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 166.37 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "5155727b-4990-4c37-9beb-355f58e9803a")
)
(pin "2"
(uuid "e648f2dc-b928-4ff8-963a-41c0dd40a454")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "R40")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "R43")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:D")
(at 179.07 125.73 270)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(uuid "a1f9a25a-c2c4-4ad0-bb6b-2fcd9cd518b8")
(property "Reference" "D28"
(at 181.61 124.4599 90)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Value" "ES1D 1A 200V"
(at 179.324 128.778 90)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Footprint" "Diode_SMD:D_SMA_Handsoldering"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Diode"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C445494"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Device" "D"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Pins" "1=K 2=A"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" "512-ES1D"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "MDD(Microdiode Semiconductor)"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "ES1D"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 179.07 125.73 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "3bd54a97-a49e-4cfb-ae50-ba191e3888ad")
)
(pin "2"
(uuid "29b4a113-5f9c-475f-a3ef-d9373376c3df")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "D28")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "D31")
(unit 1)
)
)
)
)
(symbol
(lib_id "power:GND")
(at 195.58 63.5 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "b26a0ffc-7745-484b-9539-c92880c70c86")
(property "Reference" "#PWR042"
(at 195.58 69.85 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 195.58 68.58 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 195.58 63.5 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 195.58 63.5 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 195.58 63.5 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "774df901-1392-426e-bc85-6012ac6af56b")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "#PWR042")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "#PWR043")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:D")
(at 177.8 74.93 180)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "b49d0204-e5c4-45fa-965e-427ea584956f")
(property "Reference" "D27"
(at 177.8 68.58 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "BAT54(C)"
(at 177.8 71.12 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "FanPico:D_SOT-23_ANK"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Diode"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C2844172"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Device" "D"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Pins" "1=K 2=A"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" "241-BAT54C_R1_00001"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "FUXINSEMI"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "BAT54C"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 177.8 74.93 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "bb1f26c8-53a2-40e5-85f5-666e138dcc60")
)
(pin "2"
(uuid "d5e97938-d7f8-443c-8d94-c4a4e1343555")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "D27")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "D30")
(unit 1)
)
)
)
)
(symbol
(lib_id "power:GND")
(at 179.07 135.89 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "b4d25a82-a6b0-4b3e-9313-0b40d6a54f7f")
(property "Reference" "#PWR073"
(at 179.07 142.24 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 179.07 140.97 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 179.07 135.89 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 179.07 135.89 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 179.07 135.89 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "e1a2a4db-32f0-46a2-8e44-db366ed945ff")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "#PWR073")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "#PWR077")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:R")
(at 167.64 46.99 90)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "df0be9dc-7024-4b62-ba66-c4ceeafe3f18")
(property "Reference" "R41"
(at 167.64 40.64 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "680"
(at 167.64 43.18 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"
(at 167.64 48.768 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Resistor"
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C115415"
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" ""
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "YAGEO"
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "RC0603JR-07680RL"
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "SMD"
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" ""
(at 167.64 46.99 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "3afa5a6c-ee7d-460c-ab30-cd43c75ca778")
)
(pin "2"
(uuid "22a5a5e7-3266-4b58-a242-890b32c355e4")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/5ae37739-065e-4580-bde3-1038e45a286b"
(reference "R41")
(unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32"
(reference "R44")
(unit 1)
)
)
)
)
)
================================================
FILE: boards/fanpico-0200/kicad/fan_channels.kicad_sch
================================================
(kicad_sch
(version 20231120)
(generator "eeschema")
(generator_version "8.0")
(uuid "21c2a7bb-e53e-404f-aa6f-d468a4437c78")
(paper "A4")
(title_block
(title "FanPico-0200 v1.1")
(date "2025-12-05")
(company "Timo Kokkonen <tjko@iki.fi>")
(comment 3 "Fanpico firmware reference PCB.")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x04"
(pin_names
(offset 1.016) hide)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "J"
(at 0 5.08 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "Conn_01x04"
(at 0 -7.62 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "connector"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "Connector*:*_1x??_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "Conn_01x04_1_1"
(rectangle
(start -1.27 -4.953)
(end 0 -5.207)
(stroke
(width 0.1524)
(type default)
)
(fill
(type none)
)
)
(rectangle
(start -1.27 -2.413)
(end 0 -2.667)
(stroke
(width 0.1524)
(type default)
)
(fill
(type none)
)
)
(rectangle
(start -1.27 0.127)
(end 0 -0.127)
(stroke
(width 0.1524)
(type default)
)
(fill
(type none)
)
)
(rectangle
(start -1.27 2.667)
(end 0 2.413)
(stroke
(width 0.1524)
(type default)
)
(fill
(type none)
)
)
(rectangle
(start -1.27 3.81)
(end 1.27 -6.35)
(stroke
(width 0.254)
(type default)
)
(fill
(type background)
)
)
(pin passive line
(at -5.08 2.54 0)
(length 3.81)
(name "Pin_1"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at -5.08 0 0)
(length 3.81)
(name "Pin_2"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at -5.08 -2.54 0)
(length 3.81)
(name "Pin_3"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "3"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at -5.08 -5.08 0)
(length 3.81)
(name "Pin_4"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "4"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
(symbol "power:GND"
(power)
(pin_numbers hide)
(pin_names
(offset 0) hide)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "#PWR"
(at 0 -6.35 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 0 -3.81 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "global power"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
)
(symbol "GND_1_1"
(pin power_in line
(at 0 0 270)
(length 0)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
)
)
(wire
(pts
(xy 113.03 71.12) (xy 125.73 71.12)
)
(stroke
(width 0)
(type default)
)
(uuid "00bcd8b0-8b79-4470-9fae-9418c696e9b1")
)
(wire
(pts
(xy 113.03 107.95) (xy 125.73 107.95)
)
(stroke
(width 0)
(type default)
)
(uuid "0132f4e7-fd28-433b-bb32-9f82f9dfe657")
)
(wire
(pts
(xy 125.73 107.95) (xy 125.73 101.6)
)
(stroke
(width 0)
(type default)
)
(uuid "13f3e094-8561-4a83-9e47-ddbb60946697")
)
(wire
(pts
(xy 113.03 100.33) (xy 123.19 100.33)
)
(stroke
(width 0)
(type default)
)
(uuid "1cbeafd1-3c28-46e1-b594-64fee3bd8654")
)
(wire
(pts
(xy 123.19 69.85) (xy 132.08 69.85)
)
(stroke
(width 0)
(type default)
)
(uuid "21a592e4-7607-493b-9f82-0d6ca73ff7a2")
)
(wire
(pts
(xy 128.27 72.39) (xy 128.27 62.23)
)
(stroke
(width 0)
(type default)
)
(uuid "3054643b-cc74-445f-9f58-89c37bb9865e")
)
(wire
(pts
(xy 123.19 100.33) (xy 123.19 106.68)
)
(stroke
(width 0)
(type default)
)
(uuid "4cb3934b-5b6d-4bbe-b2d2-1982e1fb63d1")
)
(wire
(pts
(xy 99.06 85.09) (xy 93.98 85.09)
)
(stroke
(width 0)
(type default)
)
(uuid "50e1ed27-1c84-4767-8b11-82b957497406")
)
(wire
(pts
(xy 123.19 63.5) (xy 123.19 69.85)
)
(stroke
(width 0)
(type default)
)
(uuid "52271ddf-65dd-4e7c-9cb1-2aa361c3bc53")
)
(wire
(pts
(xy 99.06 85.09) (xy 99.06 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "5315c3cb-84b7-4249-8b12-328cc52c0fef")
)
(wire
(pts
(xy 113.03 63.5) (xy 123.19 63.5)
)
(stroke
(width 0)
(type default)
)
(uuid "58cde8d9-0ad1-44ef-9890-5578f39b2130")
)
(wire
(pts
(xy 125.73 101.6) (xy 132.08 101.6)
)
(stroke
(width 0)
(type default)
)
(uuid "60659308-433c-494e-991c-835bcd7e7c39")
)
(wire
(pts
(xy 123.19 106.68) (xy 132.08 106.68)
)
(stroke
(width 0)
(type default)
)
(uuid "63d04e82-80ff-453c-a4bc-cc90dbde29f3")
)
(wire
(pts
(xy 128.27 99.06) (xy 132.08 99.06)
)
(stroke
(width 0)
(type default)
)
(uuid "66987d47-b8b4-47c2-8a35-18def9c545eb")
)
(wire
(pts
(xy 113.03 104.14) (xy 132.08 104.14)
)
(stroke
(width 0)
(type default)
)
(uuid "680fe3a9-fb24-47d8-9f42-3417dfb35233")
)
(wire
(pts
(xy 128.27 62.23) (xy 132.08 62.23)
)
(stroke
(width 0)
(type default)
)
(uuid "8f1e8604-5e81-471a-9eac-8ef396a859db")
)
(wire
(pts
(xy 99.06 48.26) (xy 99.06 59.69)
)
(stroke
(width 0)
(type default)
)
(uuid "9382627e-3cf0-4d33-98c9-233a96a9fd5e")
)
(wire
(pts
(xy 99.06 48.26) (xy 93.98 48.26)
)
(stroke
(width 0)
(type default)
)
(uuid "a304b53c-89a8-44e6-8dec-80d9dcbba3a0")
)
(wire
(pts
(xy 125.73 64.77) (xy 132.08 64.77)
)
(stroke
(width 0)
(type default)
)
(uuid "a9c190c1-86a4-4992-afc8-a74431cccd21")
)
(wire
(pts
(xy 78.74 107.95) (xy 81.28 107.95)
)
(stroke
(width 0)
(type default)
)
(uuid "afbf65be-8669-458b-aaff-6186389819f6")
)
(wire
(pts
(xy 113.03 67.31) (xy 132.08 67.31)
)
(stroke
(width 0)
(type default)
)
(uuid "ca39a9a0-dbc9-4c89-bca0-abb108e869ab")
)
(wire
(pts
(xy 95.25 90.17) (xy 95.25 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "cc63e37e-3cbd-4b55-84be-dc2da2264b46")
)
(wire
(pts
(xy 128.27 109.22) (xy 128.27 99.06)
)
(stroke
(width 0)
(type default)
)
(uuid "d6c65298-ad4e-46ea-bd24-3cc284b70958")
)
(wire
(pts
(xy 95.25 53.34) (xy 93.98 53.34)
)
(stroke
(width 0)
(type default)
)
(uuid "d8f3468c-042a-431a-9078-9cef94a41cf8")
)
(wire
(pts
(xy 78.74 71.12) (xy 81.28 71.12)
)
(stroke
(width 0)
(type default)
)
(uuid "de6c98ea-aca3-4c10-a032-8370dafc995e")
)
(wire
(pts
(xy 125.73 71.12) (xy 125.73 64.77)
)
(stroke
(width 0)
(type default)
)
(uuid "e2507488-307b-4de4-b1cf-dfb101572885")
)
(wire
(pts
(xy 95.25 53.34) (xy 95.25 59.69)
)
(stroke
(width 0)
(type default)
)
(uuid "e5f3fba9-c47a-45b8-9de6-857957e45973")
)
(wire
(pts
(xy 95.25 90.17) (xy 93.98 90.17)
)
(stroke
(width 0)
(type default)
)
(uuid "eea02f8c-c157-4213-8050-6320da82d3a9")
)
(text "Fan Channels"
(exclude_from_sim no)
(at 18.796 20.066 0)
(effects
(font
(size 2 2)
)
(justify left bottom)
)
(uuid "4a8a343e-0bd9-4ace-9df8-a918ed5fa45d")
)
(global_label "MAIN_PWR"
(shape input)
(at 78.74 107.95 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "1452443b-8fad-4d22-9155-7658866f1b12")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 66.3205 107.95 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "FAN2_TACHO_READ"
(shape output)
(at 93.98 90.17 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "4aa1a01c-cbdf-42d3-afba-8167c577daaf")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 73.5776 90.17 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "FAN2_PWM_GEN"
(shape output)
(at 93.98 85.09 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "5793e4e9-7aa5-470c-a622-e845954092f1")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 76.4201 85.09 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "FAN1_PWM_GEN"
(shape output)
(at 93.98 48.26 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "5872c166-5581-44f5-a134-2ee42c3def37")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 76.4201 48.26 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "FAN1_TACHO_READ"
(shape output)
(at 93.98 53.34 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "7bbb9975-39da-4616-a4ec-cf4f8f4c6d2f")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 73.5776 53.34 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "MAIN_PWR"
(shape input)
(at 78.74 71.12 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "999f5199-3f37-4f5d-abc7-42c46678765b")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 66.3205 71.12 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(symbol
(lib_id "Connector_Generic:Conn_01x04")
(at 137.16 64.77 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(uuid "094bbf69-e345-406c-a80f-9e08f85706fd")
(property "Reference" "J13"
(at 137.16 55.88 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "Fan1 Output"
(at 137.16 58.42 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C240840"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" "538-47053-1000 "
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "MOLEX"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "470531000"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "THT"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" "KF2510-AW 3+1P"
(at 137.16 64.77 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "85dd6ce4-16c1-431a-9b36-297bf5f965d0")
)
(pin "2"
(uuid "9f0ed9a6-fec4-431e-9eb9-12ce63446809")
)
(pin "3"
(uuid "c4bfbc89-6800-4798-8ac7-47e94a6126a9")
)
(pin "4"
(uuid "336c0835-35df-4312-8013-633aac76c9b9")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25"
(reference "J13")
(unit 1)
)
)
)
)
(symbol
(lib_id "Connector_Generic:Conn_01x04")
(at 137.16 101.6 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(uuid "1f7b2ed4-13ae-4ca1-bb91-5bab3cbbdc1a")
(property "Reference" "J14"
(at 137.16 92.71 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "Fan2 Output"
(at 137.16 95.25 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Connector:FanPinHeader_1x04_P2.54mm_Vertical"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "JCLC Part Number" ""
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "LCSC Part Number" "C240840"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Mouser Part Number" "538-47053-1000 "
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer" "MOLEX"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Manufacturer Part Number" "470531000"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Type" "THT"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Notes" "KF2510-AW 3+1P"
(at 137.16 101.6 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "45e1981c-20aa-4236-9307-b7a47f504563")
)
(pin "2"
(uuid "cd2dbccd-c8ff-4362-a3ef-40ddf635fac9")
)
(pin "3"
(uuid "770e80d2-d2c8-4d17-8be1-34a26e2fb8b9")
)
(pin "4"
(uuid "f27c4151-f52f-4c90-89ae-5fbd8ae50b10")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25"
(reference "J14")
(unit 1)
)
)
)
)
(symbol
(lib_id "power:GND")
(at 128.27 109.22 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "7ad3c56a-fe9a-4831-b136-d7236a73b27f")
(property "Reference" "#PWR027"
(at 128.27 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 128.27 114.3 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 128.27 109.22 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 128.27 109.22 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 128.27 109.22 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "3c6c7d1d-a2bb-4336-815e-3e447cdde78f")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25"
(reference "#PWR027")
(unit 1)
)
)
)
)
(symbol
(lib_id "power:GND")
(at 128.27 72.39 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(uuid "9370a547-cff7-4cf5-b1b1-9154c18cd2f1")
(property "Reference" "#PWR026"
(at 128.27 78.74 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Value" "GND"
(at 128.27 77.47 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 128.27 72.39 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 128.27 72.39 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
(at 128.27 72.39 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "7fcb9167-b44b-4a83-99dc-ee6b2eb6958b")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25"
(reference "#PWR026")
(unit 1)
)
)
)
)
(sheet
(at 81.28 59.69)
(size 31.75 15.24)
(fields_autoplaced yes)
(stroke
(width 0.1524)
(type solid)
)
(fill
(color 0 0 0 0.0000)
)
(uuid "5ae37739-065e-4580-bde3-1038e45a286b")
(property "Sheetname" "Fan1"
(at 81.28 58.9784 0)
(effects
(font
(size 1.27 1.27)
)
(justify left bottom)
)
)
(property "Sheetfile" "extra_fan_channel.kicad_sch"
(at 81.28 75.5146 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
)
)
(pin "TACHO_IN" input
(at 113.03 67.31 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "53b9af5e-0d1e-4798-9730-b2f66425d0e8")
)
(pin "PWM_OUT" output
(at 113.03 63.5 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "e9717cad-e0dc-45e2-afb0-8dcba040a896")
)
(pin "PWR_OUT" output
(at 113.03 71.12 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "8a8c9370-87f2-4203-8b7f-4a8549fd9767")
)
(pin "PWM_GEN" input
(at 99.06 59.69 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "51197e01-04a3-4056-a0e6-81164ad9cc72")
)
(pin "TACHO_READ" output
(at 95.25 59.69 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "bb11d0bc-a8c0-45a1-ac7b-23c222935227")
)
(pin "PWR_IN" input
(at 81.28 71.12 180)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "8d7ef8e7-23dc-4d68-9f71-31a41a69dddd")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25"
(page "5")
)
)
)
)
(sheet
(at 81.28 96.52)
(size 31.75 15.24)
(fields_autoplaced yes)
(stroke
(width 0.1524)
(type solid)
)
(fill
(color 0 0 0 0.0000)
)
(uuid "61057e9f-bb51-4960-97cb-0865458dfe32")
(property "Sheetname" "Fan2"
(at 81.28 95.8084 0)
(effects
(font
(size 1.27 1.27)
)
(justify left bottom)
)
)
(property "Sheetfile" "extra_fan_channel.kicad_sch"
(at 81.28 112.3446 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
)
)
(pin "TACHO_IN" input
(at 113.03 104.14 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "87476565-1a0d-4c16-ba90-bb7914407d9a")
)
(pin "PWM_OUT" output
(at 113.03 100.33 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "46f1b7fb-6428-4189-9973-637b6836e8d7")
)
(pin "PWR_OUT" output
(at 113.03 107.95 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "9ed282dd-4c14-4f0f-bd42-1e43fd6fecbb")
)
(pin "PWM_GEN" input
(at 99.06 96.52 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "880b4ba4-39a0-4201-bf42-f99ce14cf754")
)
(pin "TACHO_READ" output
(at 95.25 96.52 90)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "123ba2db-1a3e-43c1-8c22-830021803414")
)
(pin "PWR_IN" input
(at 81.28 107.95 180)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "363b576f-dd0b-43f0-96c2-8f8b7a260877")
)
(instances
(project "fanpico"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/4d4dd17e-947f-4b3c-bd12-d4039fccae25"
(page "6")
)
)
)
)
)
================================================
FILE: boards/fanpico-0200/kicad/fanpico.kicad_pcb
================================================
(kicad_pcb
(version 20240108)
(generator "pcbnew")
(generator_version "8.0")
(general
(thickness 1.6)
(legacy_teardrops no)
)
(paper "A4")
(title_block
(date "2025-10-04")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS"
(type "Top Silk Screen")
)
(layer "F.Paste"
(type "Top Solder Paste")
)
(layer "F.Mask"
(type "Top Solder Mask")
(thickness 0.01)
)
(layer "F.Cu"
(type "copper")
(thickness 0.035)
)
(layer "dielectric 1"
(type "prepreg")
(thickness 0.1)
(material "FR4")
(epsilon_r 4.5)
(loss_tangent 0.02)
)
(layer "In1.Cu"
(type "copper")
(thickness 0.035)
)
(layer "dielectric 2"
(type "core")
(thickness 1.24)
(material "FR4")
(epsilon_r 4.5)
(loss_tangent 0.02)
)
(layer "In2.Cu"
(type "copper")
(thickness 0.035)
)
(layer "dielectric 3"
(type "prepreg")
(thickness 0.1)
(material "FR4")
(epsilon_r 4.5)
(loss_tangent 0.02)
)
(layer "B.Cu"
(type "copper")
(thickness 0.035)
)
(layer "B.Mask"
(type "Bottom Solder Mask")
(thickness 0.01)
)
(layer "B.Paste"
(type "Bottom Solder Paste")
)
(layer "B.SilkS"
(type "Bottom Silk Screen")
)
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(allow_soldermask_bridges_in_footprints no)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros no)
(usegerberextensions yes)
(usegerberattributes yes)
(usegerberadvancedattributes yes)
(creategerberjobfile yes)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref no)
(viasonmask no)
(mode 1)
(useauxorigin no)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(pdf_front_fp_property_popups yes)
(pdf_back_fp_property_popups yes)
(dxfpolygonmode yes)
(dxfimperialunits yes)
(dxfusepcbnewfont yes)
(psnegative no)
(psa4output no)
(plotreference yes)
(plotvalue no)
(plotfptext yes)
(plotinvisibletext no)
(sketchpadsonfab no)
(subtractmaskfromsilk yes)
(outputformat 1)
(mirror no)
(drillshape 0)
(scaleselection 1)
(outputdirectory "kerbers/")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "3V3")
(net 4 "unconnected-(U4-GPIO8-Pad11)")
(net 5 "FAN1_TACHO_READ")
(net 6 "/Power Rails/5V_REG_IN")
(net 7 "Net-(U5-ADJ)")
(net 8 "/Power Rails/5V_REG_OUT")
(net 9 "unconnected-(U4-GPIO11-Pad15)")
(net 10 "Net-(D4-A)")
(net 11 "Net-(D5-A)")
(net 12 "Net-(D6-A)")
(net 13 "DQ")
(net 14 "SDA")
(net 15 "SCL")
(net 16 "TX")
(net 17 "RX")
(net 18 "unconnected-(U4-GPIO9-Pad12)")
(net 19 "unconnected-(U4-GPIO10-Pad14)")
(net 20 "unconnected-(U4-GND-Pad13)")
(net 21 "unconnected-(U4-GPIO13-Pad17)")
(net 22 "unconnected-(U4-GPIO12-Pad16)")
(net 23 "/Fan Channels/Fan1/TACHO_IN")
(net 24 "/Fan Channels/Fan2/TACHO_IN")
(net 25 "unconnected-(U4-GPIO22-Pad29)")
(net 26 "unconnected-(U4-GPIO26_ADC0-Pad31)")
(net 27 "/Fan Channels/Fan1/PWM_OUT")
(net 28 "/Fan Channels/Fan2/PWM_OUT")
(net 29 "unconnected-(U4-GPIO17-Pad22)")
(net 30 "Net-(JP1-B)")
(net 31 "unconnected-(U1-4Y-Pad11)")
(net 32 "RESET")
(net 33 "Net-(R1-Pad2)")
(net 34 "unconnected-(U4-GPIO17-Pad22)_1")
(net 35 "FAN1_PWM_GEN")
(net 36 "/PWM2A")
(net 37 "/PWM2B")
(net 38 "FAN2_PWM_GEN")
(net 39 "unconnected-(U1-3Y-Pad8)")
(net 40 "unconnected-(U4-GPIO7-Pad10)")
(net 41 "unconnected-(U4-GPIO14-Pad19)_1")
(net 42 "unconnected-(U4-GPIO14-Pad19)")
(net 43 "unconnected-(U4-GPIO26_ADC0-Pad31)_1")
(net 44 "unconnected-(U4-3V3_EN-Pad37)_1")
(net 45 "unconnected-(U4-GPIO22-Pad29)_1")
(net 46 "unconnected-(U6-NC-Pad3)")
(net 47 "unconnected-(U4-GPIO6-Pad9)")
(net 48 "unconnected-(U4-GPIO10-Pad14)_1")
(net 49 "unconnected-(U4-GPIO9-Pad12)_1")
(net 50 "FAN2_TACHO_READ")
(net 51 "unconnected-(U4-GPIO16-Pad21)")
(net 52 "unconnected-(U4-GPIO8-Pad11)_1")
(net 53 "ADC_REF")
(net 54 "unconnected-(U4-GPIO16-Pad21)_1")
(net 55 "VBUS")
(net 56 "Net-(U2-SW)")
(net 57 "AGND")
(net 58 "TEMP1_READ")
(net 59 "TEMP2_READ")
(net 60 "unconnected-(U4-GPIO6-Pad9)_1")
(net 61 "VSYS")
(net 62 "unconnected-(U4-3V3_EN-Pad37)")
(net 63 "Net-(U1-~{1OE})")
(net 64 "Net-(JP12-A)")
(net 65 "unconnected-(U4-GPIO12-Pad16)_1")
(net 66 "unconnected-(U4-GPIO11-Pad15)_1")
(net 67 "unconnected-(U4-GPIO13-Pad17)_1")
(net 68 "unconnected-(U4-GND-Pad13)_1")
(net 69 "unconnected-(U4-GPIO7-Pad10)_1")
(net 70 "Net-(U2-BST)")
(net 71 "Net-(U2-FB)")
(net 72 "MAIN_PWR")
(net 73 "DC_IN")
(net 74 "Net-(JP1-A)")
(net 75 "Net-(D8-A2)")
(net 76 "Net-(D2-A)")
(net 77 "Net-(JP2-B)")
(net 78 "unconnected-(U4-GPIO4-Pad6)")
(net 79 "unconnected-(U4-GPIO4-Pad6)_1")
(net 80 "unconnected-(U4-GPIO5-Pad7)")
(net 81 "unconnected-(U4-GPIO5-Pad7)_1")
(net 82 "Net-(C10-Pad1)")
(footprint "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
(layer "F.Cu")
(uuid "00b018ab-882c-4b2d-8e10-e589455112c6")
(at 167.43 97.7125 90)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse handsolder")
(property "Reference" "F2"
(at 0 -1.82 90)
(layer "F.SilkS")
(uuid "2ed599af-df7f-4495-a2e0-0fdedd142358")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Value" "Polyfuse 0.5A"
(at 0 1.82 90)
(layer "F.Fab")
(uuid "30a738b9-4315-4afe-8c01-baf958491ed3")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Footprint" "Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
(at 0 0 90)
(layer "F.Fab")
(hide yes)
(uuid "bae8d5cf-3770-4757-a23f-cd008c74b4fd")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 90)
(layer "F.Fab")
(hide yes)
(uuid "4a700991-2632-4761-a03a-ec531ab96b20")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" "Resettable fuse, polymeric positive temperature coefficient"
(at 0 0 90)
(layer "F.Fab")
(hide yes)
(uuid "43f796ea-aa41-4ab1-8e89-d5d4b35814db")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "LCSC Part Number" "C70072"
(at 151.425 167.3625 90)
(layer "F.Fab")
(hide yes)
(uuid "ea6dcc1d-09ca-4d8e-972a-6a59ee8acff9")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "JCLC Part Number" ""
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "5fcdb13a-36ce-4308-a20c-b2caf7f3b47d")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Mouser Part Number" "530-0ZCJ0050AF2E"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "6cf51a65-e0aa-4ce5-8073-3c01c1cdf617")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer" "TECHFUSE"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "696a8806-4864-4d5e-8464-a00d5b97b192")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer Part Number" "nSMD035-16V"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "5c370c8a-99e1-40f4-a2ed-e96be2144ba7")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Type" "SMD"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "848cd5bc-946b-45ab-a6e8-1ca9fdcabba4")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Notes" ""
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "4817873d-34cb-4a39-8d03-d98c73c1842f")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property ki_fp_filters "*polyfuse* *PTC*")
(path "/20cc4b05-e726-4b05-ab1c-64b5db072e26/957eba50-6218-4e9d-a149-15ba007c2986")
(sheetname "Power Rails")
(sheetfile "power.kicad_sch")
(attr smd)
(fp_line
(start -0.602064 -0.91)
(end 0.602064 -0.91)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "3e2d1350-ff19-46cc-a322-b1dc8962272c")
)
(fp_line
(start -0.602064 0.91)
(end 0.602064 0.91)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "f843f20a-8ad0-4ec1-89a3-49ae602d7baf")
)
(fp_line
(start 2.45 -1.12)
(end 2.45 1.12)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "9d103dd9-df24-4882-a7d6-9de79e5b9094")
)
(fp_line
(start -2.45 -1.12)
(end 2.45 -1.12)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "096c0910-3543-4bfe-8ecf-1b15690b917d")
)
(fp_line
(start 2.45 1.12)
(end -2.45 1.12)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "36ffaba3-16b6-49c0-851f-20fccdf76951")
)
(fp_line
(start -2.45 1.12)
(end -2.45 -1.12)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "04fb1a04-3770-4cd5-ab65-a9ecf9d783c9")
)
(fp_line
(start 1.6 -0.8)
(end 1.6 0.8)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "0d2350c1-cf5d-4345-ac62-ecf22354bc10")
)
(fp_line
(start -1.6 -0.8)
(end 1.6 -0.8)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "d2d480a4-ed61-41d2-bc8b-ff90123d7801")
)
(fp_line
(start 1.6 0.8)
(end -1.6 0.8)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "b5129ea6-dd93-4320-b6ae-affdbfafa8e4")
)
(fp_line
(start -1.6 0.8)
(end -1.6 -0.8)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "dbff8703-8408-4a2c-94a8-f89da6191e9e")
)
(fp_text user "${REFERENCE}"
(at 0 0 90)
(layer "F.Fab")
(uuid "7929d1c5-5aa4-4568-ab51-cc93458ce4e6")
(effects
(font
(size 0.8 0.8)
(thickness 0.12)
)
)
)
(pad "1" smd roundrect
(at -1.4875 0 90)
(size 1.425 1.75)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.175439)
(net 8 "/Power Rails/5V_REG_OUT")
(pintype "passive")
(uuid "08619e52-025f-4468-9792-279a1404b409")
)
(pad "2" smd roundrect
(at 1.4875 0 90)
(size 1.425 1.75)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.175439)
(net 1 "+5V")
(pintype "passive")
(uuid "4f368048-24c3-4f22-ad1f-294ca2458e45")
)
(model "${KICAD8_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl"
(offset
(xyz 0 0 0)
)
(scale
(xyz 1 1 1)
)
(rotate
(xyz 0 0 0)
)
)
)
(footprint "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal"
(layer "F.Cu")
(uuid "01424783-9d7e-4bcd-85ec-4a6696ab5e0e")
(at 113.1568 91.7848 90)
(descr "Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity")
(tags "THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm")
(property "Reference" "J5"
(at 5.4848 1.9732 90)
(layer "F.SilkS")
(uuid "33576754-23d1-4de5-bb33-cbc07cad8878")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Value" "1-Wire"
(at 2.54 4.37 90)
(layer "F.Fab")
(uuid "89d6d4b8-900e-4cd7-a4c6-87309853d5fc")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "351aa55d-72f1-48fd-9f19-2906f3f77128")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "42c5b224-cac2-490f-86a5-f342a5ef12b5")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "6da75fda-a105-4820-9fd1-b6e476d5c852")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "JCLC Part Number" ""
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "4e6b3946-3aed-41d8-91b5-c5bceb6071b9")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Mouser Part Number" ""
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "e65b981a-8b32-4131-ba09-77f36ffb5fb9")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "LCSC Part Number" "C68305"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "bbcc4ae5-3f67-4da7-964f-053d91bcaa2c")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer" "BOOMELE(Boom Precision Elec)"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "81417cf4-5ee1-43e7-9556-63cbd4db6451")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer Part Number" "2.54-3P"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "7816a31b-de0e-4822-9785-713492a953c3")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Type" "THT"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "82caa6f9-f6ce-4c95-8ec6-dc4423affdf3")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Notes" "C5188443"
(at 0 0 90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "378aa737-4282-4a03-952b-425e1d22f3df")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property ki_fp_filters "Connector*:*_1x??_*")
(path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/96a18ea7-3d15-46f8-bc11-da38dba4984f")
(sheetname "Sensors & Connectors")
(sheetfile "sensors.kicad_sch")
(attr through_hole)
(fp_line
(start 6.7 -3.37)
(end 6.7 3.37)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "c83c8d34-680d-49a5-a51c-5e88ab6dd94e")
)
(fp_line
(start -1.62 -3.37)
(end 6.7 -3.37)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "9aeda4bc-7ed9-4b63-8768-1e670be0d2d8")
)
(fp_line
(start -1.62 -3.37)
(end -1.62 3.37)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "2d95eace-643f-4ab9-a7ff-05e1629d00a1")
)
(fp_line
(start -1.62 -2.25)
(end 6.7 -2.25)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "4ac92cbb-08b4-4b1a-85b9-7ce26f24cc0e")
)
(fp_line
(start -1.62 2.85)
(end 6.7 2.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "ae01362d-0e4c-4cd0-8ef9-2483a532925f")
)
(fp_line
(start -1.86 2.97)
(end -1.86 3.61)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "1ce3686c-2fef-4704-893d-0ce7ad1685c9")
)
(fp_line
(start -1.62 3.37)
(end 6.7 3.37)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "8150d465-46eb-401a-92c6-44a3f7fa7ece")
)
(fp_line
(start -1.86 3.61)
(end -1.46 3.61)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "fce8a3d5-b40c-4148-9156-065e78de0375")
)
(fp_line
(start 7.08 -3.75)
(end -2 -3.75)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "dd320482-ae57-4acb-a26a-b2d82659d039")
)
(fp_line
(start -2 -3.75)
(end -2 3.75)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "f084aeee-e1cf-46b4-8967-205efab45f70")
)
(fp_line
(start 7.08 3.75)
(end 7.08 -3.75)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "a39772be-58f1-4fb1-83ac-a55b7ecee6ba")
)
(fp_line
(start -2 3.75)
(end 7.08 3.75)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "e3fcdf20-8066-4b71-9d39-219461c0bf2f")
)
(fp_line
(start 6.58 -3.25)
(end 6.58 3.25)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "066eead6-ed23-46fb-bbd9-0483d74deb40")
)
(fp_line
(start -1.5 -3.25)
(end 6.58 -3.25)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "b9665493-d93d-481e-9cd2-4c82c2f9f3eb")
)
(fp_line
(start -1.5 -2.25)
(end 6.58 -2.25)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "53cc8d19-0d7e-49c0-9528-6c6b7be82584")
)
(fp_line
(start 5.781 -0.835)
(end 4.246 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "976de7d7-35e6-4b66-9d3f-f4b70834f01a")
)
(fp_line
(start 3.241 -0.835)
(end 1.706 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "f69cea0a-1a76-4fc0-9e49-80b52d94547a")
)
(fp_line
(start 0.701 -0.835)
(end -0.835 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "ae5b4c9c-03bd-4845-802c-62f6769d7d95")
)
(fp_line
(start 5.915 -0.7)
(end 4.38 0.835)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "1412591a-699e-4952-821c-128085a2444d")
)
(fp_line
(start 3.375 -0.7)
(end 1.84 0.835)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "4404c800-f0c6-41c5-b1f2-6f8cfc260f93")
)
(fp_line
(start 0.835 -0.7)
(end -0.701 0.835)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "a64adbbd-07e7-4c92-968e-e27a1e519b0f")
)
(fp_line
(start -1.5 2.85)
(end -1.5 -3.25)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "b4712a69-ec54-4376-84c7-5f253a04be5c")
)
(fp_line
(start -1.5 2.85)
(end 6.58 2.85)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "59e6bd55-1fab-4b36-9cd6-febe03fbbd9a")
)
(fp_line
(start 6.58 3.25)
(end -1.1 3.25)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "afe96426-249e-46fb-bd99-28a262044cfa")
)
(fp_line
(start -1.1 3.25)
(end -1.5 2.85)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "cf83a6cc-c5cc-44a3-99e2-223843936ab7")
)
(fp_circle
(center 5.08 0)
(end 6.18 0)
(stroke
(width 0.1)
(type solid)
)
(fill none)
(layer "F.Fab")
(uuid "07f5c71b-7c4a-48d6-a82d-e83dfd886e54")
)
(fp_circle
(center 2.54 0)
(end 3.64 0)
(stroke
(width 0.1)
(type solid)
)
(fill none)
(layer "F.Fab")
(uuid "623b16b6-851e-4ed3-861e-2390c41befd8")
)
(fp_circle
(center 0 0)
(end 1.1 0)
(stroke
(width 0.1)
(type solid)
)
(fill none)
(layer "F.Fab")
(uuid "453d3185-bd67-4c43-acc3-99183f5699f4")
)
(fp_text user "${REFERENCE}"
(at 2.54 2 90)
(layer "F.Fab")
(uuid "a471ae33-e316-4c35-875c-a1af3e652c3e")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(pad "1" thru_hole rect
(at 0 0 90)
(size 2.1 2.1)
(drill 1.1)
(layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu"
"In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu"
"In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu"
"In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu"
"In30.Cu"
)
(remove_unused_layers no)
(net 2 "GND")
(pinfunction "Pin_1")
(pintype "passive")
(uuid "1009bf27-939f-4a32-9c99-eea18db80378")
)
(pad "2" thru_hole circle
(at 2.54 0 90)
(size 2.1 2.1)
(drill 1.1)
(layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu"
"In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu"
"In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu"
"In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu"
"In30.Cu"
)
(remove_unused_layers no)
(net 13 "DQ")
(pinfunction "Pin_2")
(pintype "passive")
(uuid "a12e5bed-e19e-45a4-8fb7-d08347627996")
)
(pad "3" thru_hole circle
(at 5.08 0 90)
(size 2.1 2.1)
(drill 1.1)
(layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu"
"In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu"
"In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu"
"In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu"
"In30.Cu"
)
(remove_unused_layers no)
(net 3 "3V3")
(pinfunction "Pin_3")
(pintype "passive")
(uuid "11abf23a-6e3d-452b-b333-8ed64f03fc01")
)
(model "${KICAD8_3DMODEL_DIR}/TerminalBlock_TE-Connectivity.3dshapes/TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal.wrl"
(offset
(xyz 0 0 0)
)
(scale
(xyz 1 1 1)
)
(rotate
(xyz 0 0 0)
)
)
)
(footprint "Diode_SMD:D_SOD-323_HandSoldering"
(layer "F.Cu")
(uuid "01505f11-ae48-4d01-8ba1-2dd7ade04b75")
(at 111.38 94.9172)
(descr "SOD-323")
(tags "SOD-323")
(property "Reference" "D7"
(at 2.65 0.0172 90)
(layer "F.SilkS")
(uuid "1e42f0b0-6b38-450c-a77c-63968f7a1628")
(effects
(font
(size 0.8 0.8)
(thickness 0.15)
)
)
)
(property "Value" "3.3V TVS"
(at 0.1 1.9 0)
(layer "F.Fab")
(uuid "53c524f3-0be4-4232-9bcc-29cd59c8f5c3")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "adb3b399-a786-414d-9a19-0d3f92d5c10f")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "590cf364-561b-4125-9be1-ad802d2a957a")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" "Bidirectional transient-voltage-suppression diode"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "a1f05101-e7c8-42c9-a74e-a0e6e5dc377d")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "LCSC Part Number" "C78439"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "8a76be17-aab6-4587-91fa-a9be730dbfb5")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "JCLC Part Number" ""
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "5bc9cedb-c6e4-499c-82f7-b02f3565408d")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Mouser Part Number" ""
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "22c523bb-2941-41f2-9c20-48ffcddb1d7b")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer" "Brightking"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "b08a4591-839c-4834-b947-39d015147b5f")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer Part Number" "UDD32C03L01"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "010293b6-fe4b-432b-af07-e197e7ae9d3f")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Type" "SMD"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "29986a66-41ff-4218-883f-b8e2d703a9d0")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Notes" ""
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "01995888-9366-4c01-9046-516d9155af92")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*")
(path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/f1bbb4cf-cac1-498d-9bb6-9485f1c1e67c")
(sheetname "Sensors & Connectors")
(sheetfile "sensors.kicad_sch")
(attr smd)
(fp_line
(start -2.01 -0.85)
(end -2.01 0.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "87f9d48e-d27d-4826-959c-78977effea50")
)
(fp_line
(start -2.01 -0.85)
(end 1.25 -0.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "07a813c7-9b6b-48b3-b899-e95750d97dc4")
)
(fp_line
(start -2.01 0.85)
(end 1.25 0.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "59efb69d-5fb6-40a6-ba0c-4a84966a7e77")
)
(fp_line
(start -2 -0.95)
(end -2 0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "f0409028-cd56-4d6f-b67b-42f15906ad22")
)
(fp_line
(start -2 -0.95)
(end 2 -0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "ce337114-3d4f-45d8-aaba-36a2b69a01ca")
)
(fp_line
(start -2 0.95)
(end 2 0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "42936067-22f4-4d4d-9c69-0aac924a1058")
)
(fp_line
(start 2 -0.95)
(end 2 0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "efe063d0-cdff-4c8a-aac3-2fc8d637fa95")
)
(fp_line
(start -0.9 -0.7)
(end 0.9 -0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "74b69873-57a1-47df-b820-5be4f193db87")
)
(fp_line
(start -0.9 0.7)
(end -0.9 -0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "c88c9328-5ab3-4141-8e6f-4e79a4886ba4")
)
(fp_line
(start -0.3 -0.35)
(end -0.3 0.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "37780151-dc8a-48ea-923b-e6f0a52b2199")
)
(fp_line
(start -0.3 0)
(end -0.5 0)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "c0110a53-f40c-4077-a103-1b6b1b626a6a")
)
(fp_line
(start -0.3 0)
(end 0.2 -0.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "b0332c80-4df3-4f87-91fa-21b434ac8026")
)
(fp_line
(start 0.2 -0.35)
(end 0.2 0.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "c8760480-c83b-4e28-9aa7-107e448c320c")
)
(fp_line
(start 0.2 0)
(end 0.45 0)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "617b55bf-e977-4ba4-a3d7-47c1896d3722")
)
(fp_line
(start 0.2 0.35)
(end -0.3 0)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "9c4387c8-69bd-4b71-b37e-1deb25346cf0")
)
(fp_line
(start 0.9 -0.7)
(end 0.9 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "aa594cd2-4c45-4fb8-a97a-0b5480a47cb8")
)
(fp_line
(start 0.9 0.7)
(end -0.9 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "4dd2cd1c-e1ba-4670-85e2-28a1fe304bd4")
)
(fp_text user "${REFERENCE}"
(at 0 -1.85 0)
(layer "F.Fab")
(uuid "cacbd7e8-be74-4d13-a93f-2d2d29abbcd0")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(pad "1" smd roundrect
(at -1.25 0)
(size 1 1)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.25)
(net 2 "GND")
(pinfunction "A1")
(pintype "passive")
(uuid "5f4fd14a-1565-4007-8dec-ca9021e277f0")
)
(pad "2" smd roundrect
(at 1.25 0)
(size 1 1)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.25)
(net 13 "DQ")
(pinfunction "A2")
(pintype "passive")
(uuid "222094cb-8c56-4019-afea-99348cd86414")
)
(model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset
(xyz 0 0 0)
)
(scale
(xyz 1 1 1)
)
(rotate
(xyz 0 0 0)
)
)
)
(footprint "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal"
(layer "F.Cu")
(uuid "069671bf-7878-4007-9563-123b12569053")
(at 109.85 78.3672 -90)
(descr "JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH horizontal")
(property "Reference" "J6"
(at 0.0328 1.185 90)
(layer "F.SilkS")
(uuid "38a57dc1-48ad-4191-87b7-e4871da0e1a5")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Value" "QWIIC"
(at 0 3.98 90)
(layer "F.Fab")
(uuid "1bac8b80-6509-4263-a74e-b6a45d04c73a")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Footprint" "Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal"
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "fcd67a35-333b-4b89-a64a-a74cbb708d72")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "f831b691-a258-48cd-b656-89feb81bd997")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "db013852-9a43-4092-a476-17e13a52539d")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "LCSC Part Number" "C160404"
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "9b62bd26-1fca-48e1-9186-cfe3e0746399")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "JCLC Part Number" ""
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "5c1d1694-a68c-4040-b32f-1486cf47ec3b")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Mouser Part Number" ""
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "e2c68e75-fba4-47bd-96d8-8b14dfeb96ce")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer" "JST"
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "218a6a45-f2b5-4e99-b64c-f45bac535a76")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer Part Number" "SM04B-SRSS-TB(LF)(SN)"
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "ec1e8e92-ef28-4666-952a-354b9a36fb7c")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Type" "SMD"
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "700d2fdc-d699-4900-b47d-9b9802e256d7")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Notes" ""
(at 0 0 -90)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "4faf5fd1-d9bc-4741-b265-d750af8a3d05")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property ki_fp_filters "Connector*:*_1x??_*")
(path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/19772840-0f1c-4864-a3f2-b85e11be6f6a")
(sheetname "Sensors & Connectors")
(sheetfile "sensors.kicad_sch")
(attr smd)
(fp_line
(start -1.94 2.685)
(end 1.94 2.685)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "edbe4232-6cf0-468a-8610-6a5aa05df967")
)
(fp_line
(start -3.11 0.715)
(end -3.11 -1.785)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "ba95068f-8251-429c-8b4f-f804d7c4d596")
)
(fp_line
(start 3.11 0.715)
(end 3.11 -1.785)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "5ffc4347-08e4-4eb7-b6c0-d78142aa3ea1")
)
(fp_line
(start -3.11 -1.785)
(end -2.06 -1.785)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "b3225412-9439-4f15-b8c2-75deeb6bc217")
)
(fp_line
(start -2.06 -1.785)
(end -2.06 -2.775)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "7d4b46b5-8145-4f73-94f9-4df440cb51c0")
)
(fp_line
(start 3.11 -1.785)
(end 2.06 -1.785)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "b347cf7e-5683-4961-bbdd-fa4d700f21fc")
)
(fp_line
(start -3.9 3.28)
(end 3.9 3.28)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "db6058ad-9ba9-4172-a6ef-fb916749cffb")
)
(fp_line
(start 3.9 3.28)
(end 3.9 -3.28)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "4d1a28df-993f-4783-bf6c-8f52dd18205b")
)
(fp_line
(start -3.9 -3.28)
(end -3.9 3.28)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "a4c5b603-e4ad-45d3-8d70-c83a62f2b8dd")
)
(fp_line
(start 3.9 -3.28)
(end -3.9 -3.28)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "77028bb4-3b0e-4cc1-8fc5-399c384f78ee")
)
(fp_line
(start -3 2.575)
(end 3 2.575)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "a411a123-3e34-4ff9-a6ea-45882037e9bb")
)
(fp_line
(start -1.5 -0.967893)
(end -1 -1.675)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "c2f56a9c-94c4-441b-a277-76da8aa887f1")
)
(fp_line
(start -3 -1.675)
(end -3 2.575)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "b5a8faea-812b-4a3f-8806-d259b66e436e")
)
(fp_line
(start -3 -1.675)
(end 3 -1.675)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "a1fe9f02-0dcb-4107-96b9-4a9b739bc73b")
)
(fp_line
(start -2 -1.675)
(end -1.5 -0.967893)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "28b8d8bd-877f-486c-991c-21b95aff89b3")
)
(fp_line
(start 3 -1.675)
(end 3 2.575)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "ecb9d16c-c767-4401-a01f-30e292e774af")
)
(fp_text user "${REFERENCE}"
(at 0 0 90)
(layer "F.Fab")
(uuid "9cbbe8a8-1e57-4a5f-bd61-a676af391d97")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(pad "1" smd roundrect
(at -1.5 -2 270)
(size 0.6 1.55)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.25)
(net 2 "GND")
(pinfunction "Pin_1")
(pintype "passive")
(uuid "dd1f797c-2aef-4dbe-8c8b-f65f1071b2f3")
)
(pad "2" smd roundrect
(at -0.5 -2 270)
(size 0.6 1.55)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.25)
(net 3 "3V3")
(pinfunction "Pin_2")
(pintype "passive")
(uuid "9cf63c14-749d-403f-aacd-295de5252437")
)
(pad "3" smd roundrect
(at 0.5 -2 270)
(size 0.6 1.55)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.25)
(net 14 "SDA")
(pinfunction "Pin_3")
(pintype "passive")
(uuid "5b5b36b4-d8c3-4fc5-9e88-a828a477aa97")
)
(pad "4" smd roundrect
(at 1.5 -2 270)
(size 0.6 1.55)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.25)
(net 15 "SCL")
(pinfunction "Pin_4")
(pintype "passive")
(uuid "a7f9b718-52f5-43ec-86dc-20c1aad15ae2")
)
(pad "MP" smd roundrect
(at -2.8 1.875 270)
(size 1.2 1.8)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.208333)
(uuid "dd631c7c-a433-46a9-9618-c2998b537852")
)
(pad "MP" smd roundrect
(at 2.8 1.875 270)
(size 1.2 1.8)
(layers "F.Cu" "F.Paste" "F.Mask")
(roundrect_rratio 0.208333)
(uuid "70ba55b7-17e1-492f-9502-6fd935e483b2")
)
(model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.wrl"
(offset
(xyz 0 0 0)
)
(scale
(xyz 1 1 1)
)
(rotate
(xyz 0 0 0)
)
)
)
(footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
(layer "F.Cu")
(uuid "08801f4d-29f3-4989-9ccd-e1b6cf102dda")
(at 148.48 119.6)
(descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Reference" "J16"
(at 2.8 2.025 0)
(layer "F.SilkS")
(uuid "5ca2cdf6-2be0-4914-8df6-10cd3596f371")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Value" "Sensor1"
(at 1.25 4.6 0)
(layer "F.Fab")
(uuid "a77cda28-6d3d-4c48-9a2b-6259781a0de0")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
(at 0 0 0)
(layer "F.Fab")
(hide yes)
(uuid "326fcb41-a6ad-40a5-a424-6dee8064d9de")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 0)
(layer "F.Fab")
(hide yes)
(uuid "f7663f93-bbae-4f99-9582-d076b474f4c6")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"
(at 0 0 0)
(layer "F.Fab")
(hide yes)
(uuid "1f8c3e17-5ed0-41de-b8df-06845669e2dc")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "JCLC Part Number" ""
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "d3424c39-2687-40e4-9e57-29a706f4fec2")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "LCSC Part Number" "C20079"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "bcf6c0c9-e1a2-407e-9404-0c777c380956")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Mouser Part Number" ""
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "d17e7a19-2499-4587-9a4d-ef65e058f8de")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer" "BOOMELE(Boom Precision Elec)"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "b3cd4b05-c96e-40d8-8ef3-d5b3531babc7")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer Part Number" "XH-2A"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "cfd10f75-7bb1-44ee-a0ff-f478a9efce34")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Type" "THT"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "b9cfe182-54f4-4359-9565-f438e5f9e988")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Notes" "C33132 (Right-Angle)"
(at 0 0 0)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "62239af7-ad90-4190-bac1-3b808293f272")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property ki_fp_filters "Connector*:*_1x??_*")
(path "/4e9d9bbb-bb4b-4f71-a57a-a915249deb73/86718c7d-2943-402b-9e45-e521335cadab")
(sheetname "Sensors & Connectors")
(sheetfile "sensors.kicad_sch")
(attr through_hole)
(fp_line
(start -2.85 -2.75)
(end -2.85 -1.5)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "3da7d9c3-e85c-4c87-9ef2-8f780fbcbba3")
)
(fp_line
(start -2.56 -2.46)
(end -2.56 3.51)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "0b3f3fda-8194-4abd-997c-550fd4138bff")
)
(fp_line
(start -2.56 3.51)
(end 5.06 3.51)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "cf0ac0c4-f31d-4d63-9d00-9a465f042772")
)
(fp_line
(start -2.55 -2.45)
(end -2.55 -1.7)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "3846f93a-db84-4555-bb8c-740981e774e3")
)
(fp_line
(start -2.55 -1.7)
(end -0.75 -1.7)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "71f125fa-b999-4890-8f50-bfb325e0edf9")
)
(fp_line
(start -2.55 -0.2)
(end -1.8 -0.2)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "2f6abd7c-75c0-4fbe-b564-a62ecea546e5")
)
(fp_line
(start -1.8 -0.2)
(end -1.8 2.75)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "67c099db-29f5-4f27-b344-fa4e0ab26b52")
)
(fp_line
(start -1.8 2.75)
(end 1.25 2.75)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "773f6dc6-195b-4a40-80d7-12c35d6a35ef")
)
(fp_line
(start -1.6 -2.75)
(end -2.85 -2.75)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "beb2a7e7-53ae-49a0-a4b8-5f83be671f36")
)
(fp_line
(start -0.75 -2.45)
(end -2.55 -2.45)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "55d36896-d1c8-42f7-97df-4a8017a327cf")
)
(fp_line
(start -0.75 -1.7)
(end -0.75 -2.45)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "07cb77b3-2eb0-488a-bafe-a545c623b74d")
)
(fp_line
(start 0.75 -2.45)
(end 0.75 -1.7)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "692cf441-8c52-4bbc-8f59-9fdfccd6f627")
)
(fp_line
(start 0.75 -1.7)
(end 1.75 -1.7)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "3882bbb8-ad54-458d-8d8b-af3a74b0ac06")
)
(fp_line
(start 1.75 -2.45)
(end 0.75 -2.45)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "6584b987-46ca-4d41-879c-0132d2085cf0")
)
(fp_line
(start 1.75 -1.7)
(end 1.75 -2.45)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "0ee86fe3-ff12-469a-9b3b-a8d4d7b82ee0")
)
(fp_line
(start 3.25 -2.45)
(end 3.25 -1.7)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "41c5ee0f-5a15-4e5b-9d2b-752b8bdcc208")
)
(fp_line
(start 3.25 -1.7)
(end 5.05 -1.7)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "215a6a13-8068-48b3-ae13-664040ceb214")
)
(fp_line
(start 4.3 -0.2)
(end 4.3 2.75)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "db64a1b4-cfaa-45ee-b418-2e3ff5dfba20")
)
(fp_line
(start 4.3 2.75)
(end 1.25 2.75)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "2df327fb-84e9-4ed8-a8e9-24bf18167821")
)
(fp_line
(start 5.05 -2.45)
(end 3.25 -2.45)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "831814d3-05d8-4a08-870e-0ec01aa8a6f1")
)
(fp_line
(start 5.05 -1.7)
(end 5.05 -2.45)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "65f0684e-46a8-4f49-ae95-635963f15d4d")
)
(fp_line
(start 5.05 -0.2)
(end 4.3 -0.2)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "6d6a6503-c547-41c6-8681-5a03d4b144f0")
)
(fp_line
(start 5.06 -2.46)
(end -2.56 -2.46)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "a63c2df8-8a19-4775-8ea5-46dbe1833ac7")
)
(fp_line
(start 5.06 3.51)
(end 5.06 -2.46)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "5acfc03b-6477-4953-9c34-50d9af8aab9a")
)
(fp_line
(start -2.95 -2.85)
(end -2.95 3.9)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "6fe34533-a80c-4be8-9df9-ea5729202c9b")
)
(fp_line
(start -2.95 3.9)
(end 5.45 3.9)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "0750adc2-5ee5-4bac-8629-4bbfff364103")
)
(fp_line
(start 5.45 -2.85)
(end -2.95 -2.85)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "7c991ab6-d8a2-4a99-a579-749628e82308")
)
(fp_line
(start 5.45 3.9)
(end 5.45 -2.85)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "0c7d2766-7202-40b2-bb6b-94ac71e8347b")
)
(fp_line
(start -2.45 -2.35)
(end -2.45 3.4)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "077c6e3b-48c3-49b3-a47b-57903ef8e3a2")
)
(fp_line
(start -2.45 3.4)
(end 4.95 3.4)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "3f76567c-91a3-40dc-880c-214def5cbd7c")
)
(fp_line
(start -0.625 -2.35)
(end 0 -1.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "5adb2515-b742-4d89-9061-0454371cd5d6")
)
(fp_line
(start 0 -1.35)
(end 0.625 -2.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "be85efa8-6297-4ca7-a1f4-3b68ef1f872a")
)
(fp_line
(start 4.95 -2.35)
(end -2.45 -2.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "91935937-ea67-4fd5-8745-90e48650329a")
)
(fp_line
(start 4.95 3.4)
(end 4.95 -2.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "dfd9699d-71d8-469b-b944-b3083f789edd")
)
(fp_text user "${REFERENCE}"
(at 1.25 2.7 0)
(layer "F.Fab")
(uuid "98efe830-083b-496b-b22c-a27cc5f428e8")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(pad "1" thru_hole roundrect
(at 0 0)
(size 1.7 2)
(drill 1)
(layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu"
"In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu"
"In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu"
"In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu"
"In30.Cu"
)
(remove_unused_layers no)
(roundrect_rratio 0.147059)
(net 57 "AGND")
(pinfunction "Pin_1")
(pintype "passive")
(uuid "51ada84f-c091-4c37-be18-560cdbf62d2b")
)
(pad "2" thru_hole oval
(at 2.5 0)
(size 1.7 2)
(drill 1)
(layers "*.Cu" "*.Mask" "In3.Cu" "In4.Cu" "In5.Cu" "In6.Cu" "In7.Cu" "In8.Cu"
"In9.Cu" "In10.Cu" "In11.Cu" "In12.Cu" "In13.Cu" "In14.Cu" "In15.Cu"
"In16.Cu" "In17.Cu" "In18.Cu" "In19.Cu" "In20.Cu" "In21.Cu" "In22.Cu"
"In23.Cu" "In24.Cu" "In25.Cu" "In26.Cu" "In27.Cu" "In28.Cu" "In29.Cu"
"In30.Cu"
)
(remove_unused_layers no)
(net 58 "TEMP1_READ")
(pinfunction "Pin_2")
(pintype "passive")
(uuid "16e711fe-7ca0-4336-b569-56cf1e7eb35e")
)
(model "${KICAD8_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl"
(offset
(xyz 0 0 0)
)
(scale
(xyz 1 1 1)
)
(rotate
(xyz 0 0 0)
)
)
)
(footprint "Diode_SMD:D_SOD-323_HandSoldering"
(layer "F.Cu")
(uuid "0a9fa84d-e2ac-47ab-935a-a282f9d2d763")
(at 153.8005 81.1625 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Reference" "D22"
(at 0 -1.85 0)
(layer "F.SilkS")
(uuid "644946c6-aad6-44e3-bb06-5f00be854373")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Value" "12V TVS"
(at 0.1 1.9 0)
(layer "F.Fab")
(uuid "8fdfd28d-cf44-42f6-beae-0d1b1a5da47c")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Footprint" "Diode_SMD:D_SOD-323_HandSoldering"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "bc575efd-c2c5-48c2-b900-34a042524768")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "a6c55022-6065-42aa-ba75-3ad7358c7817")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" "Bidirectional transient-voltage-suppression diode"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "d6eaa0c0-15c4-4f4b-b585-8313295def3c")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "LCSC Part Number" "C5199168"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "a3932e2b-78c6-4e12-a214-f28e1f0c8e15")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "JCLC Part Number" ""
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "1d5ebf3d-2729-4eec-8160-17df076c28f4")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Mouser Part Number" ""
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "ebc640d3-0970-4440-85c3-77de01abf39f")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer" "ElecSuper"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "cf542ad8-535a-4e42-aabd-3208af718908")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Manufacturer Part Number" "UDD32C12L01-ES"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "5ae05c3f-69e2-45c4-a911-459f6e9e8795")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Type" "SMD"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "75600245-af1e-4695-b387-69746b36e4b5")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property "Notes" "C502541"
(at 0 0 180)
(unlocked yes)
(layer "F.Fab")
(hide yes)
(uuid "a9e0c9a4-6152-44ce-99f1-32d0a8a099e3")
(effects
(font
(size 1 1)
(thickness 0.15)
)
)
)
(property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*")
(path "/4d4dd17e-947f-4b3c-bd12-d4039fccae25/61057e9f-bb51-4960-97cb-0865458dfe32/6702d47f-0b12-4453-a9e7-aa625d400c1c")
(sheetname "Fan2")
(sheetfile "extra_fan_channel.kicad_sch")
(attr smd)
(fp_line
(start -2.01 0.85)
(end 1.25 0.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "e926672e-1cbf-4134-b573-791ac9ffaecf")
)
(fp_line
(start -2.01 -0.85)
(end 1.25 -0.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "6a9fd837-5c5c-4ca0-95c9-95037b95223a")
)
(fp_line
(start -2.01 -0.85)
(end -2.01 0.85)
(stroke
(width 0.12)
(type solid)
)
(layer "F.SilkS")
(uuid "77df123c-5f8f-44f6-8d5e-e734cbfb7319")
)
(fp_line
(start 2 -0.95)
(end 2 0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "3c9e01da-1f17-4ccc-a5b2-42404d487add")
)
(fp_line
(start -2 0.95)
(end 2 0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "00974859-7ddf-4819-808f-ebcfcf6fb81e")
)
(fp_line
(start -2 -0.95)
(end 2 -0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "f1a702c6-ad00-44f8-b854-ca302efab8b3")
)
(fp_line
(start -2 -0.95)
(end -2 0.95)
(stroke
(width 0.05)
(type solid)
)
(layer "F.CrtYd")
(uuid "bb44ed72-baaf-4632-b8e7-bbf3897f49f6")
)
(fp_line
(start 0.9 0.7)
(end -0.9 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "7fac106e-faff-4f5e-99fa-97fb36ed9787")
)
(fp_line
(start 0.9 -0.7)
(end 0.9 0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "d822c172-7a0c-4b75-a569-ff25847adde3")
)
(fp_line
(start 0.2 0.35)
(end -0.3 0)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "b0d6be54-2d9a-4bde-bf6c-657987838885")
)
(fp_line
(start 0.2 0)
(end 0.45 0)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "62322151-c6a0-4b55-bce8-45916f11ac95")
)
(fp_line
(start 0.2 -0.35)
(end 0.2 0.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "101ac440-9c93-4719-aa54-b03f1902d822")
)
(fp_line
(start -0.3 0)
(end 0.2 -0.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "715e8be3-2797-4792-8098-5d63becc8962")
)
(fp_line
(start -0.3 0)
(end -0.5 0)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "ad1ea364-7b66-4314-85a8-5a8f41222242")
)
(fp_line
(start -0.3 -0.35)
(end -0.3 0.35)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "c3650e08-ce0f-4572-92e2-b1beb0942fad")
)
(fp_line
(start -0.9 0.7)
(end -0.9 -0.7)
(stroke
(width 0.1)
(type solid)
)
(layer "F.Fab")
(uuid "75002a42-8a64-4f01-bbbe-c3aecf58
gitextract_l4rxsnmc/
├── .github/
│ ├── FUNDING.yml
│ └── workflows/
│ ├── cmake.yml
│ └── codeql.yml
├── .gitignore
├── .gitmodules
├── CMakeLists.txt
├── LICENSE
├── README.md
├── boards/
│ ├── fanpico-0200/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── fanpico-0401D/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── fanpico-0804/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── fanpico-0804D/
│ │ ├── README.md
│ │ ├── bom.csv
│ │ └── kicad/
│ │ ├── extra_fan_channel.kicad_sch
│ │ ├── fan_channel.kicad_sch
│ │ ├── fan_channels.kicad_sch
│ │ ├── fanpico.kicad_pcb
│ │ ├── fanpico.kicad_pro
│ │ ├── fanpico.kicad_sch
│ │ ├── power.kicad_sch
│ │ └── sensors.kicad_sch
│ ├── oled-adapter/
│ │ ├── README.md
│ │ └── kicad/
│ │ ├── fanpico-oled-adapter.kicad_pcb
│ │ ├── fanpico-oled-adapter.kicad_prl
│ │ ├── fanpico-oled-adapter.kicad_pro
│ │ └── fanpico-oled-adapter.kicad_sch
│ └── power-board/
│ ├── README.md
│ ├── bom.csv
│ └── kicad/
│ ├── fanpico_powerboard.kicad_pcb
│ ├── fanpico_powerboard.kicad_prl
│ ├── fanpico_powerboard.kicad_pro
│ └── fanpico_powerboard.kicad_sch
├── build.sh
├── build_httpd_fs.sh
├── cmake/
│ └── pico_sdk_import.cmake
├── commands.md
├── compile.sh
├── contrib/
│ ├── build_makefsdata.sh
│ ├── kicad_extract_netclasses.py
│ └── makefsdata.patch
├── credits.txt
├── debug.sh
├── flash.sh
├── kicad/
│ ├── FanPico.pretty/
│ │ ├── D_SOT-23_ANK.kicad_mod
│ │ ├── Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.kicad_mod
│ │ ├── IND-SMD_L7.2-W6.6_GPSR07X0.kicad_mod
│ │ ├── L_7.3x7.3_H3.5_HandSolder.kicad_mod
│ │ ├── OLED_module.kicad_mod
│ │ ├── P2PAK.kicad_mod
│ │ ├── RPi_Pico_PicoW_SMD_TH.kicad_mod
│ │ ├── SW-SMD_L3.9-W3.0-P4.45.kicad_mod
│ │ ├── SW_PUSH_6mm_SMD_2.kicad_mod
│ │ ├── TE 171826-4 Floppy 4-pin Combo.kicad_mod
│ │ ├── TE 171826-4 Floppy 4-pin.kicad_mod
│ │ ├── TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.kicad_mod
│ │ ├── TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle.kicad_mod
│ │ ├── TSOT-26.kicad_mod
│ │ └── ToolingHole_1.152mm.kicad_mod
│ ├── README.md
│ └── fanpico.kicad_sym
├── mibs/
│ ├── TJKO-FanPico-MIB
│ └── TJKO-ROOT-MIB
└── src/
├── bi_decl.c
├── boards/
│ ├── 0200.h
│ ├── 0200.json
│ ├── 0401D.h
│ ├── 0401D.json
│ ├── 0804.h
│ ├── 0804.json
│ ├── 0804D.h
│ └── 0804D.json
├── command.c
├── command_util.c
├── command_util.h
├── config.c
├── config.h.in
├── crc32.c
├── credits.s
├── default_config.S
├── dhcp.c
├── display.c
├── display_lcd.c
├── display_oled.c
├── fanpico-compile.h.in
├── fanpico.c
├── fanpico.h
├── fanpico_fsdata.c
├── filter_lossypeak.c
├── filter_sma.c
├── filters.c
├── filters.h
├── flash.c
├── httpd-fs/
│ ├── 404.html
│ ├── fanpico.css
│ ├── index.shtml
│ ├── status.csv
│ └── status.json
├── httpd-fs_ssi.list
├── httpd.c
├── i2c.c
├── log.c
├── log.h
├── logos/
│ ├── custom.h
│ ├── custom.s
│ ├── default.h
│ └── default.s
├── lwip_hooks.h
├── lwipopts.h
├── mbedtls_config.h
├── memmap_custom_rp2040.ld
├── memmap_custom_rp2350.ld
├── memtest.c
├── memtest.h
├── mqtt.c
├── network.c
├── onewire.c
├── psram.c
├── psram.h
├── pulse_len.c
├── pulse_len.h
├── pwm.c
├── sensors.c
├── snmp.c
├── square_wave_gen.c
├── square_wave_gen.h
├── square_wave_gen.pio
├── ssh_util.c
├── sshd.c
├── syslog.c
├── syslog.h
├── tacho.c
├── telnetd.c
├── themes/
│ ├── custom.s
│ ├── default-320x240.h
│ ├── default-480x320.h
│ └── lcd-background.s
├── tls.c
├── util.c
├── util_net.c
├── util_net.h
├── util_rp2.c
└── wolfssl/
└── user_settings.h
SYMBOL INDEX (679 symbols across 45 files)
FILE: contrib/kicad_extract_netclasses.py
function parse_kicad_project_json (line 12) | def parse_kicad_project_json(json_data):
FILE: src/bi_decl.c
function set_binary_info (line 31) | void set_binary_info(struct fanpico_fw_settings *settings)
FILE: src/command.c
type error_t (line 53) | struct error_t {
type error_t (line 59) | struct error_t
type fanpico_state (line 69) | struct fanpico_state
type fanpico_config (line 70) | struct fanpico_config
function cmd_idn (line 79) | int cmd_idn(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_exit (line 96) | int cmd_exit(const char *cmd, const char *args, int query, struct prev_c...
function cmd_who (line 108) | int cmd_who(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_usb_boot (line 120) | int cmd_usb_boot(const char *cmd, const char *args, int query, struct pr...
function cmd_board (line 144) | int cmd_board(const char *cmd, const char *args, int query, struct prev_...
function cmd_version (line 154) | int cmd_version(const char *cmd, const char *args, int query, struct pre...
function cmd_fans (line 188) | int cmd_fans(const char *cmd, const char *args, int query, struct prev_c...
function cmd_led (line 197) | int cmd_led(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_mbfans (line 212) | int cmd_mbfans(const char *cmd, const char *args, int query, struct prev...
function cmd_sensors (line 221) | int cmd_sensors(const char *cmd, const char *args, int query, struct pre...
function cmd_vsensors (line 230) | int cmd_vsensors(const char *cmd, const char *args, int query, struct pr...
function cmd_vsensors_sources (line 239) | int cmd_vsensors_sources(const char *cmd, const char *args, int query, s...
function cmd_null (line 270) | int cmd_null(const char *cmd, const char *args, int query, struct prev_c...
function cmd_debug (line 276) | int cmd_debug(const char *cmd, const char *args, int query, struct prev_...
function cmd_log_level (line 288) | int cmd_log_level(const char *cmd, const char *args, int query, struct p...
function cmd_syslog_level (line 314) | int cmd_syslog_level(const char *cmd, const char *args, int query, struc...
function cmd_echo (line 339) | int cmd_echo(const char *cmd, const char *args, int query, struct prev_c...
function cmd_display_type (line 345) | int cmd_display_type(const char *cmd, const char *args, int query, struc...
function cmd_display_theme (line 351) | int cmd_display_theme(const char *cmd, const char *args, int query, stru...
function cmd_display_logo (line 357) | int cmd_display_logo(const char *cmd, const char *args, int query, struc...
function cmd_display_layout_r (line 363) | int cmd_display_layout_r(const char *cmd, const char *args, int query, s...
function cmd_reset (line 370) | int cmd_reset(const char *cmd, const char *args, int query, struct prev_...
function cmd_save_config (line 392) | int cmd_save_config(const char *cmd, const char *args, int query, struct...
function cmd_print_config (line 400) | int cmd_print_config(const char *cmd, const char *args, int query, struc...
function cmd_upload_config (line 408) | int cmd_upload_config(const char *cmd, const char *args, int query, stru...
function cmd_delete_config (line 423) | int cmd_delete_config(const char *cmd, const char *args, int query, stru...
function cmd_one (line 431) | int cmd_one(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_zero (line 438) | int cmd_zero(const char *cmd, const char *args, int query, struct prev_c...
function cmd_read (line 445) | int cmd_read(const char *cmd, const char *args, int query, struct prev_c...
function cmd_vsensors_read (line 490) | int cmd_vsensors_read(const char *cmd, const char *args, int query, stru...
function cmd_fan_name (line 508) | int cmd_fan_name(const char *cmd, const char *args, int query, struct pr...
function cmd_fan_min_pwm (line 516) | int cmd_fan_min_pwm(const char *cmd, const char *args, int query, struct...
function cmd_fan_max_pwm (line 523) | int cmd_fan_max_pwm(const char *cmd, const char *args, int query, struct...
function cmd_fan_pwm_coef (line 530) | int cmd_fan_pwm_coef(const char *cmd, const char *args, int query, struc...
function cmd_fan_pwm_map (line 537) | int cmd_fan_pwm_map(const char *cmd, const char *args, int query, struct...
function cmd_fan_filter (line 583) | int cmd_fan_filter(const char *cmd, const char *args, int query, struct ...
function cmd_fan_rpm_factor (line 628) | int cmd_fan_rpm_factor(const char *cmd, const char *args, int query, str...
function cmd_fan_rpm_mode (line 635) | int cmd_fan_rpm_mode(const char *cmd, const char *args, int query, struc...
function cmd_fan_source (line 682) | int cmd_fan_source(const char *cmd, const char *args, int query, struct ...
function cmd_fan_tacho_hys (line 732) | int cmd_fan_tacho_hys(const char *cmd, const char *args, int query, stru...
function cmd_fan_pwm_hys (line 739) | int cmd_fan_pwm_hys(const char *cmd, const char *args, int query, struct...
function cmd_fan_rpm (line 746) | int cmd_fan_rpm(const char *cmd, const char *args, int query, struct pre...
function cmd_fan_tacho (line 766) | int cmd_fan_tacho(const char *cmd, const char *args, int query, struct p...
function cmd_fan_pwm (line 785) | int cmd_fan_pwm(const char *cmd, const char *args, int query, struct pre...
function cmd_fan_read (line 804) | int cmd_fan_read(const char *cmd, const char *args, int query, struct pr...
function cmd_mbfan_name (line 832) | int cmd_mbfan_name(const char *cmd, const char *args, int query, struct ...
function cmd_mbfan_min_rpm (line 840) | int cmd_mbfan_min_rpm(const char *cmd, const char *args, int query, stru...
function cmd_mbfan_max_rpm (line 847) | int cmd_mbfan_max_rpm(const char *cmd, const char *args, int query, stru...
function cmd_mbfan_rpm_coef (line 854) | int cmd_mbfan_rpm_coef(const char *cmd, const char *args, int query, str...
function cmd_mbfan_rpm_factor (line 861) | int cmd_mbfan_rpm_factor(const char *cmd, const char *args, int query, s...
function cmd_mbfan_rpm_map (line 868) | int cmd_mbfan_rpm_map(const char *cmd, const char *args, int query, stru...
function cmd_mbfan_rpm_mode (line 914) | int cmd_mbfan_rpm_mode(const char *cmd, const char *args, int query, str...
function cmd_mbfan_source (line 964) | int cmd_mbfan_source(const char *cmd, const char *args, int query, struc...
function cmd_mbfan_rpm (line 1063) | int cmd_mbfan_rpm(const char *cmd, const char *args, int query, struct p...
function cmd_mbfan_tacho (line 1081) | int cmd_mbfan_tacho(const char *cmd, const char *args, int query, struct...
function cmd_mbfan_pwm (line 1098) | int cmd_mbfan_pwm(const char *cmd, const char *args, int query, struct p...
function cmd_mbfan_read (line 1115) | int cmd_mbfan_read(const char *cmd, const char *args, int query, struct ...
function cmd_mbfan_filter (line 1143) | int cmd_mbfan_filter(const char *cmd, const char *args, int query, struc...
function cmd_sensor_name (line 1188) | int cmd_sensor_name(const char *cmd, const char *args, int query, struct...
function cmd_sensor_temp_offset (line 1196) | int cmd_sensor_temp_offset(const char *cmd, const char *args, int query,...
function cmd_sensor_temp_coef (line 1203) | int cmd_sensor_temp_coef(const char *cmd, const char *args, int query, s...
function cmd_sensor_temp_nominal (line 1210) | int cmd_sensor_temp_nominal(const char *cmd, const char *args, int query...
function cmd_sensor_ther_nominal (line 1217) | int cmd_sensor_ther_nominal(const char *cmd, const char *args, int query...
function cmd_adc_vref (line 1224) | int cmd_adc_vref(const char *cmd, const char *args, int query, struct p...
function cmd_sensor_beta_coef (line 1230) | int cmd_sensor_beta_coef(const char *cmd, const char *args, int query, s...
function cmd_sensor_temp_map (line 1237) | int cmd_sensor_temp_map(const char *cmd, const char *args, int query, st...
function cmd_sensor_temp (line 1283) | int cmd_sensor_temp(const char *cmd, const char *args, int query, struct...
function cmd_sensor_filter (line 1307) | int cmd_sensor_filter(const char *cmd, const char *args, int query, stru...
function cmd_vsensor_name (line 1352) | int cmd_vsensor_name(const char *cmd, const char *args, int query, struc...
function cmd_vsensor_source (line 1359) | int cmd_vsensor_source(const char *cmd, const char *args, int query, str...
function cmd_vsensor_temp_map (line 1479) | int cmd_vsensor_temp_map(const char *cmd, const char *args, int query, s...
function cmd_vsensor_temp (line 1525) | int cmd_vsensor_temp(const char *cmd, const char *args, int query, struc...
function cmd_vsensor_humidity (line 1549) | int cmd_vsensor_humidity(const char *cmd, const char *args, int query, s...
function cmd_vsensor_pressure (line 1568) | int cmd_vsensor_pressure(const char *cmd, const char *args, int query, s...
function cmd_vsensor_filter (line 1587) | int cmd_vsensor_filter(const char *cmd, const char *args, int query, str...
function cmd_vsensor_write (line 1632) | int cmd_vsensor_write(const char *cmd, const char *args, int query, stru...
function cmd_wifi (line 1662) | int cmd_wifi(const char *cmd, const char *args, int query, struct prev_c...
function cmd_wifi_ip (line 1678) | int cmd_wifi_ip(const char *cmd, const char *args, int query, struct pre...
function cmd_wifi_netmask (line 1683) | int cmd_wifi_netmask(const char *cmd, const char *args, int query, struc...
function cmd_wifi_gateway (line 1688) | int cmd_wifi_gateway(const char *cmd, const char *args, int query, struc...
function cmd_wifi_dns (line 1693) | int cmd_wifi_dns(const char *cmd, const char *args, int query, struct pr...
function cmd_wifi_syslog_client (line 1699) | int cmd_wifi_syslog_client(const char *cmd, const char *args, int query,...
function cmd_wifi_syslog (line 1704) | int cmd_wifi_syslog(const char *cmd, const char *args, int query, struct...
function cmd_wifi_ntp_client (line 1709) | int cmd_wifi_ntp_client(const char *cmd, const char *args, int query, st...
function cmd_wifi_ntp (line 1714) | int cmd_wifi_ntp(const char *cmd, const char *args, int query, struct pr...
function cmd_wifi_mac (line 1720) | int cmd_wifi_mac(const char *cmd, const char *args, int query, struct pr...
function cmd_wifi_ssid (line 1729) | int cmd_wifi_ssid(const char *cmd, const char *args, int query, struct p...
function cmd_wifi_status (line 1735) | int cmd_wifi_status(const char *cmd, const char *args, int query, struct...
function cmd_wifi_stats (line 1744) | int cmd_wifi_stats(const char *cmd, const char *args, int query, struct ...
function cmd_wifi_info (line 1753) | int cmd_wifi_info(const char *cmd, const char *args, int query, struct p...
function cmd_wifi_rejoin (line 1762) | int cmd_wifi_rejoin(const char *cmd, const char *args, int query, struct...
function cmd_wifi_country (line 1771) | int cmd_wifi_country(const char *cmd, const char *args, int query, struc...
function cmd_wifi_password (line 1778) | int cmd_wifi_password(const char *cmd, const char *args, int query, stru...
function cmd_wifi_hostname (line 1784) | int cmd_wifi_hostname(const char *cmd, const char *args, int query, stru...
function cmd_wifi_auth_mode (line 1791) | int cmd_wifi_auth_mode(const char *cmd, const char *args, int query, str...
function cmd_wifi_mode (line 1810) | int cmd_wifi_mode(const char *cmd, const char *args, int query, struct p...
function cmd_mqtt_server (line 1816) | int cmd_mqtt_server(const char *cmd, const char *args, int query, struct...
function cmd_mqtt_port (line 1822) | int cmd_mqtt_port(const char *cmd, const char *args, int query, struct p...
function cmd_mqtt_user (line 1828) | int cmd_mqtt_user(const char *cmd, const char *args, int query, struct p...
function cmd_mqtt_pass (line 1834) | int cmd_mqtt_pass(const char *cmd, const char *args, int query, struct p...
function cmd_mqtt_status_interval (line 1840) | int cmd_mqtt_status_interval(const char *cmd, const char *args, int quer...
function cmd_mqtt_temp_interval (line 1846) | int cmd_mqtt_temp_interval(const char *cmd, const char *args, int query,...
function cmd_mqtt_vsensor_interval (line 1852) | int cmd_mqtt_vsensor_interval(const char *cmd, const char *args, int que...
function cmd_mqtt_rpm_interval (line 1858) | int cmd_mqtt_rpm_interval(const char *cmd, const char *args, int query, ...
function cmd_mqtt_duty_interval (line 1864) | int cmd_mqtt_duty_interval(const char *cmd, const char *args, int query,...
function cmd_mqtt_allow_scpi (line 1870) | int cmd_mqtt_allow_scpi(const char *cmd, const char *args, int query, st...
function cmd_mqtt_status_topic (line 1876) | int cmd_mqtt_status_topic(const char *cmd, const char *args, int query, ...
function cmd_mqtt_cmd_topic (line 1883) | int cmd_mqtt_cmd_topic(const char *cmd, const char *args, int query, str...
function cmd_mqtt_resp_topic (line 1890) | int cmd_mqtt_resp_topic(const char *cmd, const char *args, int query, st...
function cmd_mqtt_temp_topic (line 1897) | int cmd_mqtt_temp_topic(const char *cmd, const char *args, int query, st...
function cmd_mqtt_vtemp_topic (line 1904) | int cmd_mqtt_vtemp_topic(const char *cmd, const char *args, int query, s...
function cmd_mqtt_vhumidity_topic (line 1911) | int cmd_mqtt_vhumidity_topic(const char *cmd, const char *args, int quer...
function cmd_mqtt_vpressure_topic (line 1918) | int cmd_mqtt_vpressure_topic(const char *cmd, const char *args, int quer...
function cmd_mqtt_fan_rpm_topic (line 1925) | int cmd_mqtt_fan_rpm_topic(const char *cmd, const char *args, int query,...
function cmd_mqtt_fan_duty_topic (line 1932) | int cmd_mqtt_fan_duty_topic(const char *cmd, const char *args, int query...
function cmd_mqtt_mbfan_rpm_topic (line 1939) | int cmd_mqtt_mbfan_rpm_topic(const char *cmd, const char *args, int quer...
function cmd_mqtt_mbfan_duty_topic (line 1946) | int cmd_mqtt_mbfan_duty_topic(const char *cmd, const char *args, int que...
function cmd_mqtt_ha_discovery (line 1953) | int cmd_mqtt_ha_discovery(const char *cmd, const char *args, int query, ...
function cmd_mqtt_mask_temp (line 1960) | int cmd_mqtt_mask_temp(const char *cmd, const char *args, int query, str...
function cmd_mqtt_mask_vtemp (line 1967) | int cmd_mqtt_mask_vtemp(const char *cmd, const char *args, int query, st...
function cmd_mqtt_mask_vhumidity (line 1974) | int cmd_mqtt_mask_vhumidity(const char *cmd, const char *args, int query...
function cmd_mqtt_mask_vpressure (line 1981) | int cmd_mqtt_mask_vpressure(const char *cmd, const char *args, int query...
function cmd_mqtt_mask_fan_rpm (line 1988) | int cmd_mqtt_mask_fan_rpm(const char *cmd, const char *args, int query, ...
function cmd_mqtt_mask_fan_duty (line 1995) | int cmd_mqtt_mask_fan_duty(const char *cmd, const char *args, int query,...
function cmd_mqtt_mask_mbfan_rpm (line 2002) | int cmd_mqtt_mask_mbfan_rpm(const char *cmd, const char *args, int query...
function cmd_mqtt_mask_mbfan_duty (line 2009) | int cmd_mqtt_mask_mbfan_duty(const char *cmd, const char *args, int quer...
function cmd_mqtt_tls (line 2017) | int cmd_mqtt_tls(const char *cmd, const char *args, int query, struct pr...
function cmd_tls_pkey (line 2023) | int cmd_tls_pkey(const char *cmd, const char *args, int query, struct pr...
function cmd_tls_cert (line 2099) | int cmd_tls_cert(const char *cmd, const char *args, int query, struct pr...
function cmd_ssh_auth (line 2167) | int cmd_ssh_auth(const char *cmd, const char *args, int query, struct pr...
function cmd_ssh_server (line 2173) | int cmd_ssh_server(const char *cmd, const char *args, int query, struct ...
function cmd_ssh_port (line 2178) | int cmd_ssh_port(const char *cmd, const char *args, int query, struct pr...
function cmd_ssh_user (line 2184) | int cmd_ssh_user(const char *cmd, const char *args, int query, struct pr...
function cmd_ssh_pass (line 2191) | int cmd_ssh_pass(const char *cmd, const char *args, int query, struct pr...
function cmd_ssh_pkey (line 2208) | int cmd_ssh_pkey(const char *cmd, const char *args, int query, struct pr...
function cmd_ssh_pkey_create (line 2217) | int cmd_ssh_pkey_create(const char *cmd, const char *args, int query, st...
function cmd_ssh_pkey_del (line 2225) | int cmd_ssh_pkey_del(const char *cmd, const char *args, int query, struc...
function cmd_ssh_pubkey (line 2233) | int cmd_ssh_pubkey(const char *cmd, const char *args, int query, struct ...
function cmd_ssh_pubkey_add (line 2256) | int cmd_ssh_pubkey_add(const char *cmd, const char *args, int query, str...
function cmd_ssh_pubkey_del (line 2307) | int cmd_ssh_pubkey_del(const char *cmd, const char *args, int query, str...
function cmd_ssh_acls (line 2331) | int cmd_ssh_acls(const char *cmd, const char *args, int query, struct pr...
function cmd_telnet_auth (line 2337) | int cmd_telnet_auth(const char *cmd, const char *args, int query, struct...
function cmd_telnet_rawmode (line 2343) | int cmd_telnet_rawmode(const char *cmd, const char *args, int query, str...
function cmd_telnet_server (line 2349) | int cmd_telnet_server(const char *cmd, const char *args, int query, stru...
function cmd_telnet_port (line 2355) | int cmd_telnet_port(const char *cmd, const char *args, int query, struct...
function cmd_telnet_user (line 2361) | int cmd_telnet_user(const char *cmd, const char *args, int query, struct...
function cmd_telnet_pass (line 2368) | int cmd_telnet_pass(const char *cmd, const char *args, int query, struct...
function cmd_telnet_acls (line 2385) | int cmd_telnet_acls(const char *cmd, const char *args, int query, struct...
function cmd_snmp_agent (line 2391) | int cmd_snmp_agent(const char *cmd, const char *args, int query, struct ...
function cmd_snmp_community (line 2397) | int cmd_snmp_community(const char *cmd, const char *args, int query, str...
function cmd_snmp_community_write (line 2404) | int cmd_snmp_community_write(const char *cmd, const char *args, int quer...
function cmd_snmp_contact (line 2411) | int cmd_snmp_contact(const char *cmd, const char *args, int query, struc...
function cmd_snmp_location (line 2418) | int cmd_snmp_location(const char *cmd, const char *args, int query, stru...
function cmd_snmp_auth_traps (line 2425) | int cmd_snmp_auth_traps(const char *cmd, const char *args, int query, st...
function cmd_snmp_community_trap (line 2431) | int cmd_snmp_community_trap(const char *cmd, const char *args, int query...
function cmd_snmp_trap_dst (line 2438) | int cmd_snmp_trap_dst(const char *cmd, const char *args, int query, stru...
function cmd_http_server (line 2443) | int cmd_http_server(const char *cmd, const char *args, int query, struct...
function cmd_http_port (line 2449) | int cmd_http_port(const char *cmd, const char *args, int query, struct p...
function cmd_http_tlsport (line 2455) | int cmd_http_tlsport(const char *cmd, const char *args, int query, struc...
function cmd_http_mask_fan (line 2461) | int cmd_http_mask_fan(const char *cmd, const char *args, int query, stru...
function cmd_http_mask_mbfan (line 2468) | int cmd_http_mask_mbfan(const char *cmd, const char *args, int query, st...
function cmd_http_mask_sensor (line 2475) | int cmd_http_mask_sensor(const char *cmd, const char *args, int query, s...
function cmd_http_mask_vsensor (line 2482) | int cmd_http_mask_vsensor(const char *cmd, const char *args, int query, ...
function cmd_time (line 2491) | int cmd_time(const char *cmd, const char *args, int query, struct prev_c...
function cmd_timezone (line 2521) | int cmd_timezone(const char *cmd, const char *args, int query, struct pr...
function cmd_uptime (line 2527) | int cmd_uptime(const char *cmd, const char *args, int query, struct prev...
function cmd_err (line 2555) | int cmd_err(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_name (line 2571) | int cmd_name(const char *cmd, const char *args, int query, struct prev_c...
function cmd_lfs (line 2578) | int cmd_lfs(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_lfs_del (line 2597) | int cmd_lfs_del(const char *cmd, const char *args, int query, struct pre...
function cmd_lfs_dir (line 2611) | int cmd_lfs_dir(const char *cmd, const char *args, int query, struct pre...
function cmd_lfs_format (line 2621) | int cmd_lfs_format(const char *cmd, const char *args, int query, struct ...
function cmd_lfs_ren (line 2634) | int cmd_lfs_ren(const char *cmd, const char *args, int query, struct pre...
function cmd_lfs_copy (line 2659) | int cmd_lfs_copy(const char *cmd, const char *args, int query, struct pr...
function cmd_flash (line 2686) | int cmd_flash(const char *cmd, const char *args, int query, struct prev_...
function cmd_psram (line 2695) | int cmd_psram(const char *cmd, const char *args, int query, struct prev_...
function cmd_memory (line 2706) | int __attribute__((optimize("O0"))) cmd_memory(const char *cmd, const ch...
function cmd_memtest (line 2764) | int cmd_memtest(const char *cmd, const char *args, int query, struct pre...
function cmd_onewire (line 2780) | int cmd_onewire(const char *cmd, const char *args, int query, struct pre...
function cmd_onewire_sensors (line 2786) | int cmd_onewire_sensors(const char *cmd, const char *args, int query, st...
function cmd_i2c (line 2806) | int cmd_i2c(const char *cmd, const char *args, int query, struct prev_cm...
function cmd_i2c_scan (line 2815) | int cmd_i2c_scan(const char *cmd, const char *args, int query, struct pr...
function cmd_i2c_speed (line 2824) | int cmd_i2c_speed(const char *cmd, const char *args, int query, struct p...
function cmd_serial (line 2830) | int cmd_serial(const char *cmd, const char *args, int query, struct prev...
function cmd_spi (line 2836) | int cmd_spi(const char *cmd, const char *args, int query, struct prev_cm...
type cmd_t (line 2844) | struct cmd_t
type cmd_t (line 2851) | struct cmd_t
type cmd_t (line 2860) | struct cmd_t
type cmd_t (line 2886) | struct cmd_t
type cmd_t (line 2894) | struct cmd_t
type cmd_t (line 2902) | struct cmd_t
type cmd_t (line 2914) | struct cmd_t
type cmd_t (line 2923) | struct cmd_t
type cmd_t (line 2938) | struct cmd_t
type cmd_t (line 2943) | struct cmd_t
type cmd_t (line 2959) | struct cmd_t
type cmd_t (line 2966) | struct cmd_t
type cmd_t (line 2976) | struct cmd_t
type cmd_t (line 2983) | struct cmd_t
type cmd_t (line 2990) | struct cmd_t
type cmd_t (line 3002) | struct cmd_t
type cmd_t (line 3013) | struct cmd_t
type cmd_t (line 3024) | struct cmd_t
type cmd_t (line 3031) | struct cmd_t
type cmd_t (line 3037) | struct cmd_t
type cmd_t (line 3080) | struct cmd_t
type cmd_t (line 3086) | struct cmd_t
type cmd_t (line 3100) | struct cmd_t
type cmd_t (line 3113) | struct cmd_t
type cmd_t (line 3125) | struct cmd_t
type cmd_t (line 3133) | struct cmd_t
type cmd_t (line 3138) | struct cmd_t
type cmd_t (line 3151) | struct cmd_t
type cmd_t (line 3159) | struct cmd_t
type cmd_t (line 3167) | struct cmd_t
type cmd_t (line 3173) | struct cmd_t
type cmd_t (line 3181) | struct cmd_t
type cmd_t (line 3191) | struct cmd_t
type cmd_t (line 3196) | struct cmd_t
function process_command (line 3229) | void process_command(const struct fanpico_state *state, struct fanpico_c...
function last_command_status (line 3261) | int last_command_status()
FILE: src/command_util.c
type cmd_t (line 62) | struct cmd_t
type cmd_t (line 62) | struct cmd_t
type cmd_t (line 62) | struct cmd_t
type prev_cmd_t (line 62) | struct prev_cmd_t
function get_cmd_index (line 140) | int get_cmd_index(const char *cmd)
type prev_cmd_t (line 182) | struct prev_cmd_t
function get_prev_cmd_index (line 208) | int get_prev_cmd_index(const struct prev_cmd_t *prev_cmd, uint depth)
function string_setting (line 226) | int string_setting(const char *cmd, const char *args, int query, struct ...
function bitmask16_setting (line 248) | int bitmask16_setting(const char *cmd, const char *args, int query, stru...
function uint32_setting (line 276) | int uint32_setting(const char *cmd, const char *args, int query, struct ...
function uint16_setting (line 303) | int uint16_setting(const char *cmd, const char *args, int query, struct ...
function uint8_setting (line 330) | int uint8_setting(const char *cmd, const char *args, int query, struct p...
function float_setting (line 357) | int float_setting(const char *cmd, const char *args, int query, struct p...
function bool_setting (line 382) | int bool_setting(const char *cmd, const char *args, int query, struct pr...
function ip_change (line 413) | int ip_change(const char *cmd, const char *args, int query, struct prev_...
function ip_list_change (line 428) | int ip_list_change(const char *cmd, const char *args, int query, struct ...
function acl_list_change (line 480) | int acl_list_change(const char *cmd, const char *args, int query, struct...
function array_string_setting (line 544) | int array_string_setting(const char *cmd, const char *args, int query, s...
function array_uint8_setting (line 577) | int array_uint8_setting(const char *cmd, const char *args, int query, st...
function array_uint16_setting (line 610) | int array_uint16_setting(const char *cmd, const char *args, int query, s...
function array_float_setting (line 643) | int array_float_setting(const char *cmd, const char *args, int query, st...
FILE: src/command_util.h
type prev_cmd_t (line 33) | struct prev_cmd_t {
type cmd_t (line 38) | struct cmd_t {
type cmd_t (line 48) | struct cmd_t
type cmd_t (line 48) | struct cmd_t
type cmd_t (line 49) | struct cmd_t
type prev_cmd_t (line 49) | struct prev_cmd_t
type prev_cmd_t (line 52) | struct prev_cmd_t
type prev_cmd_t (line 53) | struct prev_cmd_t
type prev_cmd_t (line 54) | struct prev_cmd_t
type prev_cmd_t (line 56) | struct prev_cmd_t
type prev_cmd_t (line 58) | struct prev_cmd_t
type prev_cmd_t (line 60) | struct prev_cmd_t
type prev_cmd_t (line 62) | struct prev_cmd_t
type prev_cmd_t (line 64) | struct prev_cmd_t
type prev_cmd_t (line 66) | struct prev_cmd_t
type prev_cmd_t (line 69) | struct prev_cmd_t
type prev_cmd_t (line 71) | struct prev_cmd_t
type prev_cmd_t (line 73) | struct prev_cmd_t
type prev_cmd_t (line 76) | struct prev_cmd_t
type prev_cmd_t (line 80) | struct prev_cmd_t
type prev_cmd_t (line 84) | struct prev_cmd_t
type prev_cmd_t (line 88) | struct prev_cmd_t
type prev_cmd_t (line 96) | struct prev_cmd_t
type prev_cmd_t (line 97) | struct prev_cmd_t
FILE: src/config.c
type fanpico_config (line 40) | struct fanpico_config
type fanpico_config (line 41) | struct fanpico_config
function str2pwm_source (line 45) | int str2pwm_source(const char *s)
type pwm_source_types (line 64) | enum pwm_source_types
function valid_pwm_source_ref (line 79) | int valid_pwm_source_ref(enum pwm_source_types source, uint16_t s_id)
function str2vsmode (line 105) | int str2vsmode(const char *s)
type vsensor_modes (line 127) | enum vsensor_modes
function str2rpm_mode (line 145) | int str2rpm_mode(const char *s)
type rpm_modes (line 157) | enum rpm_modes
function str2tacho_source (line 165) | int str2tacho_source(const char *s)
type tacho_source_types (line 186) | enum tacho_source_types
function str2onewireaddr (line 210) | uint64_t str2onewireaddr(const char *s)
function valid_tacho_source_ref (line 216) | int valid_tacho_source_ref(enum tacho_source_types source, uint16_t s_id)
function json2pwm_map (line 237) | static void json2pwm_map(cJSON *item, struct pwm_map *map)
function cJSON (line 254) | static cJSON* pwm_map2json(const struct pwm_map *map)
function json2filter (line 273) | static void json2filter(cJSON *item, enum signal_filter_types *filter, v...
function cJSON (line 286) | static cJSON* filter2json(enum signal_filter_types filter, void *filter_...
function json2tacho_map (line 304) | static void json2tacho_map(cJSON *item, struct tacho_map *map)
function cJSON (line 320) | static cJSON* tacho_map2json(const struct tacho_map *map)
function json2tacho_sources (line 338) | static void json2tacho_sources(cJSON *item, uint8_t *sources)
function cJSON (line 353) | static cJSON* tacho_sources2json(const uint8_t *sources)
function json2temp_map (line 369) | static void json2temp_map(cJSON *item, struct temp_map *map)
function cJSON (line 386) | static cJSON* temp_map2json(const struct temp_map *map)
function json2vsensors (line 405) | static void json2vsensors(cJSON *item, uint8_t *s)
function cJSON (line 423) | static cJSON* vsensors2json(const uint8_t *s)
function json2iplist (line 440) | static void json2iplist(cJSON *item, ip_addr_t *list, uint32_t len)
function cJSON (line 460) | static cJSON* iplist2json(const ip_addr_t *list, uint32_t len)
function json2acllist (line 475) | static void json2acllist(cJSON *item, acl_entry_t *list, uint32_t len)
function cJSON (line 508) | static cJSON* acllist2json(const acl_entry_t *list, uint32_t len)
function json2sshpubkeys (line 534) | static void json2sshpubkeys(cJSON *list, struct ssh_public_key *keys)
function cJSON (line 563) | static cJSON* sshpubkeys2json(const struct ssh_public_key *keys)
function clear_config (line 601) | void clear_config(struct fanpico_config *cfg)
function cJSON (line 829) | cJSON *config_to_json(const struct fanpico_config *cfg)
function json_to_config (line 1142) | int json_to_config(cJSON *config, struct fanpico_config *cfg)
function read_config (line 1382) | void read_config(bool use_default_config)
function save_config (line 1438) | void save_config()
function print_config (line 1463) | void print_config()
function upload_config (line 1491) | void upload_config()
function delete_config (line 1596) | void delete_config()
FILE: src/crc32.c
function xcrc32 (line 171) | unsigned int
FILE: src/dhcp.c
function pico_dhcp_option_add_hook (line 39) | void pico_dhcp_option_add_hook(struct netif *netif, struct dhcp *dhcp, u...
function pico_dhcp_option_parse_hook (line 83) | void pico_dhcp_option_parse_hook(struct netif *netif, struct dhcp *dhcp,...
FILE: src/display.c
function display_init (line 29) | void display_init()
function clear_display (line 45) | void clear_display()
function display_status (line 57) | void display_status(const struct fanpico_state *state,
function display_message (line 70) | void display_message(int rows, const char **text_lines)
FILE: src/display_lcd.c
type lcd_type (line 46) | struct lcd_type {
type display_field_types (line 58) | enum display_field_types {
type display_data_types (line 75) | enum display_data_types {
type display_field_t (line 85) | typedef struct display_field {
type display_theme (line 96) | struct display_theme {
type display_theme_entry (line 110) | struct display_theme_entry {
type display_logo_t (line 116) | typedef struct display_logo {
type display_theme_entry (line 135) | struct display_theme_entry
type display_theme (line 157) | struct display_theme
type lcd_type (line 229) | struct lcd_type
function draw_rounded_box (line 248) | void draw_rounded_box(SPILCD *lcd, uint16_t x, uint16_t y, uint16_t widt...
function lcd_display_init (line 260) | void lcd_display_init()
function lcd_clear_display (line 404) | void lcd_clear_display()
function draw_fields (line 412) | void draw_fields(const struct fanpico_state *state, const struct fanpico...
function lcd_display_status (line 563) | void lcd_display_status(const struct fanpico_state *state,
function lcd_display_message (line 595) | void lcd_display_message(int rows, const char **text_lines)
FILE: src/display_oled.c
type layout_item_types (line 35) | enum layout_item_types {
type layout_item (line 44) | struct layout_item {
type layout_item (line 58) | struct layout_item
function parse_r_layout (line 70) | void parse_r_layout(const char *layout)
function oled_display_init (line 125) | void oled_display_init()
function oled_clear_display (line 244) | void oled_clear_display()
function oled_display_status (line 252) | void oled_display_status(const struct fanpico_state *state,
function oled_display_message (line 387) | void oled_display_message(int rows, const char **text_lines)
FILE: src/fanpico.c
type fanpico_state (line 56) | struct fanpico_state
type fanpico_config (line 57) | struct fanpico_config
type fanpico_state (line 58) | struct fanpico_state
type fanpico_state (line 59) | struct fanpico_state
type fanpico_state (line 60) | struct fanpico_state
type fanpico_fw_settings (line 61) | struct fanpico_fw_settings
type fanpico_fw_settings (line 62) | struct fanpico_fw_settings
type fanpico_network_state (line 65) | struct fanpico_network_state
type fanpico_network_state (line 66) | struct fanpico_network_state
type persistent_memory_block (line 69) | struct persistent_memory_block
type persistent_memory_block (line 70) | struct persistent_memory_block
function update_persistent_memory_crc (line 84) | static void update_persistent_memory_crc()
function init_persistent_memory (line 91) | static void init_persistent_memory()
function update_persistent_memory (line 126) | void update_persistent_memory()
function update_persistent_memory_tz (line 144) | void update_persistent_memory_tz(const char *tz)
function boot_reason (line 158) | void boot_reason()
function setup (line 167) | static void setup()
function clear_state (line 298) | static void clear_state(struct fanpico_state *s)
function update_system_state (line 337) | static void update_system_state()
function update_outputs (line 348) | static void update_outputs(struct fanpico_state *state, const struct fan...
function core1_main (line 387) | static void core1_main()
function main (line 507) | int main()
FILE: src/fanpico.h
type pwm_source_types (line 98) | enum pwm_source_types {
type signal_filter_types (line 107) | enum signal_filter_types {
type tacho_source_types (line 114) | enum tacho_source_types {
type temp_sensor_types (line 123) | enum temp_sensor_types {
type vsensor_modes (line 129) | enum vsensor_modes {
type rpm_modes (line 140) | enum rpm_modes {
type acl_entry_t (line 147) | typedef struct acl_entry_t {
type ssh_public_key (line 153) | struct ssh_public_key {
type pwm_map (line 161) | struct pwm_map {
type tacho_map (line 166) | struct tacho_map {
type temp_map (line 171) | struct temp_map {
type fan_output (line 176) | struct fan_output {
type mb_input (line 198) | struct mb_input {
type sensor_input (line 219) | struct sensor_input {
type vsensor_input (line 232) | struct vsensor_input {
type fanpico_config (line 246) | struct fanpico_config {
type fanpico_fw_settings (line 349) | struct fanpico_fw_settings {
type fanpico_network_state (line 356) | struct fanpico_network_state {
type fanpico_state (line 372) | struct fanpico_state {
type persistent_memory_block (line 396) | struct persistent_memory_block {
type persistent_memory_block (line 410) | struct persistent_memory_block
type fanpico_state (line 411) | struct fanpico_state
type fanpico_network_state (line 413) | struct fanpico_network_state
type fanpico_fw_settings (line 422) | struct fanpico_fw_settings
type fanpico_state (line 425) | struct fanpico_state
type fanpico_config (line 425) | struct fanpico_config
type fanpico_config (line 430) | struct fanpico_config
type pwm_source_types (line 432) | enum pwm_source_types
type vsensor_modes (line 434) | enum vsensor_modes
type rpm_modes (line 436) | enum rpm_modes
type pwm_source_types (line 437) | enum pwm_source_types
type tacho_source_types (line 439) | enum tacho_source_types
type tacho_source_types (line 440) | enum tacho_source_types
type fanpico_state (line 451) | struct fanpico_state
type fanpico_config (line 451) | struct fanpico_config
type fanpico_state (line 456) | struct fanpico_state
type fanpico_config (line 456) | struct fanpico_config
type fanpico_state (line 462) | struct fanpico_state
type fanpico_config (line 462) | struct fanpico_config
type ssh_public_key (line 528) | struct ssh_public_key
type ssh_public_key (line 529) | struct ssh_public_key
type fanpico_config (line 540) | struct fanpico_config
type fanpico_state (line 540) | struct fanpico_state
type fanpico_config (line 546) | struct fanpico_config
type fanpico_config (line 547) | struct fanpico_config
type altcp_tls_config (line 552) | struct altcp_tls_config
type fanpico_config (line 561) | struct fanpico_config
type pwm_map (line 562) | struct pwm_map
type fanpico_state (line 563) | struct fanpico_state
type fanpico_config (line 563) | struct fanpico_config
type signal_filter_types (line 567) | enum signal_filter_types
type signal_filter_types (line 568) | enum signal_filter_types
type signal_filter_types (line 569) | enum signal_filter_types
type signal_filter_types (line 570) | enum signal_filter_types
type fanpico_config (line 573) | struct fanpico_config
type temp_map (line 574) | struct temp_map
type fanpico_config (line 575) | struct fanpico_config
type fanpico_state (line 576) | struct fanpico_state
type fanpico_state (line 583) | struct fanpico_state
type tacho_map (line 586) | struct tacho_map
type fanpico_state (line 587) | struct fanpico_state
type fanpico_config (line 587) | struct fanpico_config
type timespec (line 608) | struct timespec
type timespec (line 609) | struct timespec
type timespec (line 609) | struct timespec
type tm (line 613) | struct tm
FILE: src/fanpico_fsdata.c
type fsdata_file (line 1215) | struct fsdata_file
type fsdata_file (line 1223) | struct fsdata_file
type fsdata_file (line 1231) | struct fsdata_file
type fsdata_file (line 1239) | struct fsdata_file
type fsdata_file (line 1247) | struct fsdata_file
type fsdata_file (line 1255) | struct fsdata_file
type fsdata_file (line 1263) | struct fsdata_file
FILE: src/filter_lossypeak.c
type lossypeak_context_t (line 32) | typedef struct lossypeak_context {
function lossy_peak_filter (line 91) | float lossy_peak_filter(void *ctx, float input)
FILE: src/filter_sma.c
type sma_context_t (line 34) | typedef struct sma_context {
function sma_filter (line 83) | float sma_filter(void *ctx, float input)
FILE: src/filters.c
function str2filter (line 41) | int str2filter(const char *s)
type signal_filter_types (line 56) | enum signal_filter_types
type signal_filter_types (line 65) | enum signal_filter_types
type signal_filter_types (line 78) | enum signal_filter_types
function filter (line 91) | float filter(enum signal_filter_types filter, void *ctx, float input)
FILE: src/filters.h
type filter_entry_t (line 29) | typedef struct filter_entry {
FILE: src/flash.c
type lfs_config (line 33) | struct lfs_config
function lfs_setup (line 37) | void lfs_setup(bool multicore)
function flash_format (line 58) | int flash_format(bool multicore)
function flash_read_file (line 76) | int flash_read_file(char **bufptr, uint32_t *sizeptr, const char *filename)
function flash_write_file (line 129) | int flash_write_file(const char *buf, uint32_t size, const char *filename)
function flash_delete_file (line 169) | int flash_delete_file(const char *filename)
function flash_rename_file (line 203) | int flash_rename_file(const char *oldname, const char *newname)
function flash_copy_file (line 237) | int flash_copy_file(const char *srcname, const char *dstname, bool overw...
function flash_file_size (line 328) | int flash_file_size(const char *filename)
function littlefs_scan_dir (line 355) | static int littlefs_scan_dir(const char *path, size_t *files, size_t *di...
function flash_get_fs_info (line 430) | int flash_get_fs_info(size_t *size, size_t *free, size_t *files,
function littlefs_list_dir (line 472) | static int littlefs_list_dir(const char *path, bool recursive)
function flash_list_directory (line 539) | int flash_list_directory(const char *path, bool recursive)
function print_rp2040_flashinfo (line 560) | void print_rp2040_flashinfo()
FILE: src/httpd.c
function u16_t (line 34) | u16_t csv_stats(char *insert, int insertlen, u16_t current_tag_part, u16...
function u16_t (line 121) | u16_t json_stats(char *insert, int insertlen, u16_t current_tag_part, u1...
function u16_t (line 246) | u16_t fanpico_ssi_handler(const char *tag, char *insert, int insertlen,
FILE: src/i2c.c
function scan_i2c_bus (line 40) | void scan_i2c_bus()
function display_i2c_status (line 68) | void display_i2c_status()
function setup_i2c_bus (line 74) | void setup_i2c_bus(struct fanpico_config *config)
function i2c_read_temps (line 128) | int i2c_read_temps(struct fanpico_config *config)
FILE: src/log.c
type log_priority (line 48) | struct log_priority {
type log_facility (line 53) | struct log_facility {
type log_priority (line 58) | struct log_priority
type log_facility (line 70) | struct log_facility
function str2log_priority (line 95) | int str2log_priority(const char *pri)
function str2log_facility (line 124) | int str2log_facility(const char *facility)
function get_log_level (line 155) | int get_log_level()
function set_log_level (line 160) | void set_log_level(int level)
function get_syslog_level (line 165) | int get_syslog_level()
function set_syslog_level (line 170) | void set_syslog_level(int level)
function get_debug_level (line 175) | int get_debug_level()
function set_debug_level (line 180) | void set_debug_level(int level)
function log_msg (line 186) | void log_msg(int priority, const char *format, ...)
function debug (line 229) | void debug(int debug_level, const char *fmt, ...)
FILE: src/lwip_hooks.h
type netif (line 9) | struct netif
type dhcp (line 9) | struct dhcp
type dhcp_msg (line 9) | struct dhcp_msg
type netif (line 12) | struct netif
type dhcp (line 12) | struct dhcp
type dhcp_msg (line 12) | struct dhcp_msg
type pbuf (line 13) | struct pbuf
FILE: src/memtest.c
function simple_speed_mem_test (line 58) | int simple_speed_mem_test(void *heap, size_t size, bool readonly)
FILE: src/mqtt.c
function mqtt_pub_request_cb (line 63) | static void mqtt_pub_request_cb(void *arg, err_t result)
function mqtt_publish_message (line 81) | static int mqtt_publish_message(const char *topic, const char *buf, u16_...
function send_mqtt_command_response (line 133) | static void send_mqtt_command_response(const char *cmd, int result, cons...
function mqtt_incoming_publish_cb (line 150) | static void mqtt_incoming_publish_cb(void *arg, const char *topic, u32_t...
function incoming_fanpico_cmd (line 166) | static void incoming_fanpico_cmd(const u8_t *data, u16_t len)
function incoming_ha_status (line 214) | static void incoming_ha_status(const u8_t *data, u16_t len)
function mqtt_incoming_data_cb (line 228) | static void mqtt_incoming_data_cb(void *arg, const u8_t *data, u16_t len...
function mqtt_sub_request_cb (line 243) | static void mqtt_sub_request_cb(void *arg, err_t result)
function mqtt_ha_sub_request_cb (line 250) | static void mqtt_ha_sub_request_cb(void *arg, err_t result)
function mqtt_connection_cb (line 257) | static void mqtt_connection_cb(mqtt_client_t *client, void *arg, mqtt_co...
function mqtt_dns_resolve_cb (line 311) | static void mqtt_dns_resolve_cb(const char *name, const ip_addr_t *ipadd...
function mqtt_connect (line 324) | static void mqtt_connect(mqtt_client_t *client)
function fanpico_setup_mqtt_client (line 397) | void fanpico_setup_mqtt_client()
function fanpico_mqtt_client_active (line 420) | int fanpico_mqtt_client_active()
function fanpico_mqtt_reconnect (line 425) | void fanpico_mqtt_reconnect()
function send_ha_discovery_msg (line 542) | static int send_ha_discovery_msg(const char *topic, const char *type, in...
function fanpico_mqtt_ha_discovery (line 557) | static void fanpico_mqtt_ha_discovery()
type fanpico_state (line 625) | struct fanpico_state
type fanpico_state (line 691) | struct fanpico_state
function fanpico_mqtt_publish (line 764) | void fanpico_mqtt_publish()
function fanpico_mqtt_publish_temp (line 801) | void fanpico_mqtt_publish_temp()
function fanpico_mqtt_publish_vsensor (line 822) | void fanpico_mqtt_publish_vsensor()
function fanpico_mqtt_publish_rpm (line 855) | void fanpico_mqtt_publish_rpm()
function fanpico_mqtt_publish_duty (line 890) | void fanpico_mqtt_publish_duty()
function fanpico_mqtt_scpi_command (line 923) | void fanpico_mqtt_scpi_command()
FILE: src/network.c
type wifi_auth_type (line 54) | struct wifi_auth_type {
type wifi_auth_type (line 59) | struct wifi_auth_type
function wifi_get_auth_type (line 72) | bool wifi_get_auth_type(const char *name, uint32_t *type)
function wifi_rejoin (line 137) | void wifi_rejoin()
function wifi_check_status (line 173) | static bool wifi_check_status()
function wifi_link_cb (line 197) | static void wifi_link_cb(struct netif *netif)
function wifi_status_cb (line 203) | static void wifi_status_cb(struct netif *netif)
function wifi_init (line 243) | static void wifi_init()
function wifi_status (line 438) | void wifi_status()
function wifi_info_display (line 455) | void wifi_info_display()
function wifi_poll (line 491) | static void wifi_poll()
function pico_set_system_time (line 595) | void pico_set_system_time(long int sec)
function network_init (line 622) | void network_init()
function network_poll (line 629) | void network_poll()
FILE: src/onewire.c
type onewire_state_t (line 33) | typedef struct onewire_state_t {
function onewire_address (line 44) | uint64_t onewire_address(uint sensor)
function onewire_scan_bus (line 53) | void onewire_scan_bus()
function onewire_read_temps (line 105) | int onewire_read_temps(struct fanpico_config *config, struct fanpico_sta...
function setup_onewire_bus (line 157) | void setup_onewire_bus()
FILE: src/psram.c
type psram_type_t (line 69) | struct psram_type_t {
type psram_type_t (line 81) | struct psram_type_t
function csr_busy_wait (line 95) | static inline void csr_busy_wait()
function csr_txempty_wait (line 103) | static inline void csr_txempty_wait()
function csr_enable_direct_mode (line 111) | static inline void csr_enable_direct_mode(uint8_t csr_clkdiv)
function csr_disable_direct_mode (line 118) | static inline void csr_disable_direct_mode()
function psram_is_writable (line 242) | static bool psram_is_writable(void *base_addr)
function psram_check_size (line 257) | static bool psram_check_size(void *base_addr, uint32_t size)
function psram_init (line 285) | static int psram_init(int pin, bool clear_memory)
function psram_setup (line 384) | void psram_setup()
function psram_size (line 398) | size_t psram_size()
function psram_id_t (line 408) | const psram_id_t* psram_get_id()
type psram_type_t (line 420) | struct psram_type_t
FILE: src/psram.h
type psram_id_t (line 48) | typedef struct psram_id_t {
FILE: src/pulse_len.c
function pulse_measure (line 44) | uint64_t pulse_measure(int pin, bool type, bool mode, uint32_t timeout_ms)
function pulseIn (line 86) | uint64_t pulseIn(int gpio, int value, uint32_t timeout_ms)
function pulse_setup_interrupt (line 120) | void pulse_setup_interrupt(uint gpio, uint32_t events)
function pulse_disable_interrupt (line 131) | void pulse_disable_interrupt()
function pulse_enable_interrupt (line 136) | void pulse_enable_interrupt()
function pulse_start_measure (line 142) | void pulse_start_measure()
function pulse_interval (line 151) | uint64_t pulse_interval()
FILE: src/pwm.c
function set_pwm_duty_cycle (line 74) | void set_pwm_duty_cycle(uint fan, float duty)
function get_pwm_duty_cycle (line 93) | float get_pwm_duty_cycle(uint fan)
function get_pwm_duty_cycles (line 125) | void get_pwm_duty_cycles(const struct fanpico_config *config)
function setup_pwm_outputs (line 193) | void setup_pwm_outputs()
function setup_pwm_inputs (line 229) | void setup_pwm_inputs()
function pwm_map (line 259) | double pwm_map(const struct pwm_map *map, double val)
function calculate_pwm_duty (line 285) | double calculate_pwm_duty(struct fanpico_state *state, const struct fanp...
FILE: src/sensors.c
function get_temperature (line 41) | double get_temperature(uint8_t input, const struct fanpico_config *config)
function sensor_get_duty (line 100) | double sensor_get_duty(const struct temp_map *map, double temp)
function get_vsensor (line 122) | double get_vsensor(uint8_t i, struct fanpico_config *config,
FILE: src/snmp.c
type snmp_obj_id (line 55) | struct snmp_obj_id
type snmp_oid_range (line 81) | struct snmp_oid_range
type snmp_oid_range (line 82) | struct snmp_oid_range
type snmp_oid_range (line 83) | struct snmp_oid_range
type snmp_oid_range (line 84) | struct snmp_oid_range
function snmp_err_t (line 87) | static snmp_err_t fan_table_get(const u32_t* column, const u32_t* row,
function snmp_err_t (line 123) | static snmp_err_t fan_table_get_cell_val(const u32_t* column, const u32_...
function snmp_err_t (line 133) | static snmp_err_t fan_table_get_next_cell_inst_and_val(const u32_t* colu...
function snmp_err_t (line 157) | static snmp_err_t mbfan_table_get(const u32_t* column, const u32_t* row,
function snmp_err_t (line 193) | static snmp_err_t mbfan_table_get_cell_val(const u32_t* column, const u3...
function snmp_err_t (line 203) | static snmp_err_t mbfan_table_get_next_cell_inst_and_val(const u32_t* co...
function snmp_err_t (line 229) | static snmp_err_t sensor_table_get(const u32_t* column, const u32_t* row,
function snmp_err_t (line 261) | static snmp_err_t sensor_table_get_cell_val(const u32_t* column, const u...
function snmp_err_t (line 271) | static snmp_err_t sensor_table_get_next_cell_inst_and_val(const u32_t* c...
function snmp_err_t (line 296) | static snmp_err_t vsensor_table_get(const u32_t* column, const u32_t* row,
function snmp_err_t (line 334) | static snmp_err_t vsensor_table_get_cell_val(const u32_t* column, const ...
function snmp_err_t (line 344) | static snmp_err_t vsensor_table_get_next_cell_inst_and_val(const u32_t* ...
type snmp_scalar_node (line 372) | struct snmp_scalar_node
type snmp_table_simple_col_def (line 375) | struct snmp_table_simple_col_def
type snmp_table_simple_node (line 382) | struct snmp_table_simple_node
type snmp_scalar_node (line 389) | struct snmp_scalar_node
type snmp_table_simple_node (line 392) | struct snmp_table_simple_node
type snmp_scalar_node (line 399) | struct snmp_scalar_node
type snmp_table_simple_col_def (line 402) | struct snmp_table_simple_col_def
type snmp_table_simple_node (line 408) | struct snmp_table_simple_node
type snmp_scalar_node (line 415) | struct snmp_scalar_node
type snmp_table_simple_col_def (line 418) | struct snmp_table_simple_col_def
type snmp_table_simple_node (line 426) | struct snmp_table_simple_node
type snmp_node (line 432) | struct snmp_node
type snmp_tree_node (line 442) | struct snmp_tree_node
type snmp_node (line 445) | struct snmp_node
type snmp_tree_node (line 448) | struct snmp_tree_node
type snmp_mib (line 450) | struct snmp_mib
type snmp_mib (line 456) | struct snmp_mib
function fanpico_snmp_init (line 462) | void fanpico_snmp_init()
function fanpico_snmp_startup_trap (line 491) | void fanpico_snmp_startup_trap(bool warmstart)
FILE: src/square_wave_gen.c
function uint (line 41) | uint square_wave_gen_load_program(PIO pio)
function square_wave_gen_program_init (line 50) | void square_wave_gen_program_init(PIO pio, uint sm, uint offset, uint pin)
function square_wave_gen_enabled (line 64) | void square_wave_gen_enabled(PIO pio, uint sm, bool enabled)
function square_wave_gen_set_period (line 72) | void square_wave_gen_set_period(PIO pio, uint sm, uint32_t period)
function square_wave_gen_set_freq (line 81) | void square_wave_gen_set_freq(PIO pio, uint sm, double freq)
FILE: src/ssh_util.c
type ssh_pkey_alg_t (line 32) | typedef struct ssh_pkey_alg_t {
function create_rsa_key (line 41) | static int create_rsa_key(void *buf, size_t buf_size)
function create_ecdsa_key (line 48) | static int create_ecdsa_key(void *buf, size_t buf_size)
function create_ed25519_key (line 53) | static int create_ed25519_key(void *buf, size_t buf_size)
function ssh_list_pkeys (line 69) | void ssh_list_pkeys()
function ssh_create_pkey (line 92) | int ssh_create_pkey(const char* args)
function ssh_delete_pkey (line 139) | int ssh_delete_pkey(const char* args)
function ssh_get_pkey (line 169) | int ssh_get_pkey(int index, char** buf_ptr, uint32_t* buf_size_ptr, cons...
function str_to_ssh_pubkey (line 199) | int str_to_ssh_pubkey(const char *s, struct ssh_public_key *pk)
type ssh_public_key (line 253) | struct ssh_public_key
FILE: src/sshd.c
function ssh_allow_connection_cb (line 47) | static int ssh_allow_connection_cb(ip_addr_t *src_ip)
function sshserver_init (line 73) | void sshserver_init()
function sshserver_disconnect (line 167) | void sshserver_disconnect()
function sshserver_who (line 176) | void sshserver_who()
FILE: src/syslog.c
type syslog_t (line 35) | typedef struct syslog_t_ {
function syslog_t (line 46) | syslog_t* syslog_init(const ip_addr_t *ipaddr, u16_t port)
function syslog_open (line 89) | int syslog_open(const ip_addr_t *server, u16_t port, int facility, const...
function syslog_close (line 103) | void syslog_close()
function syslog_msg (line 122) | int syslog_msg(int severity, const char *format, ...)
FILE: src/tacho.c
function next_in_queue (line 88) | int next_in_queue(uint8_t q)
function multiplexer_select (line 109) | void multiplexer_select(uint8_t port)
function update_tacho_input_freq (line 244) | void update_tacho_input_freq(struct fanpico_state *st)
function setup_tacho_inputs (line 262) | void setup_tacho_inputs()
function setup_tacho_input_interrupts (line 300) | void setup_tacho_input_interrupts()
function set_tacho_output_freq (line 319) | void set_tacho_output_freq(uint fan, double frequency)
function set_lra_output (line 328) | void set_lra_output(uint fan, bool lra)
function setup_tacho_outputs (line 338) | void setup_tacho_outputs()
function tacho_map (line 367) | double tacho_map(const struct tacho_map *map, double val)
function calculate_tacho_freq (line 393) | double calculate_tacho_freq(struct fanpico_state *state, const struct fa...
FILE: src/telnetd.c
function telnet_allow_connection_cb (line 53) | static int telnet_allow_connection_cb(ip_addr_t *src_ip)
function telnetserver_init (line 80) | void telnetserver_init()
function telnetserver_disconnect (line 103) | void telnetserver_disconnect()
function telnetserver_who (line 112) | void telnetserver_who()
FILE: src/themes/default-320x240.h
type display_theme (line 83) | struct display_theme
FILE: src/themes/default-480x320.h
type display_theme (line 86) | struct display_theme
FILE: src/tls.c
function read_pem_file (line 35) | int read_pem_file(char *buf, uint32_t size, uint32_t timeout, bool append)
type altcp_tls_config (line 85) | struct altcp_tls_config
type altcp_tls_config (line 87) | struct altcp_tls_config
FILE: src/util.c
function print_mallinfo (line 43) | void print_mallinfo()
function str_to_int (line 76) | int str_to_int(const char *str, int *val, int base)
function str_to_float (line 89) | int str_to_float(const char *str, float *val)
function time_t (line 102) | time_t timespec_to_time_t(const struct timespec *ts)
type timespec (line 110) | struct timespec
type timespec (line 110) | struct timespec
type tm (line 124) | struct tm
function str_to_time_t (line 158) | bool str_to_time_t(const char *str, time_t *t)
function rtc_get_tm (line 173) | bool rtc_get_tm(struct tm *tm)
function time_t (line 193) | time_t pico_mktime(struct tm *tm)
function rtc_get_time (line 202) | bool rtc_get_time(time_t *t)
function check_for_change (line 218) | int check_for_change(double oldval, double newval, double threshold)
function pow_i64 (line 231) | int64_t pow_i64(int64_t x, uint8_t y)
function round_decimal (line 258) | double round_decimal(double val, unsigned int decimal)
function base64decode_raw (line 299) | int base64decode_raw(const void *input, size_t input_len, void **output)
function clamp_int (line 371) | int clamp_int(int val, int min, int max)
function str_to_bitmask (line 470) | int str_to_bitmask(const char *str, uint16_t len, uint32_t *mask, uint8_...
FILE: src/util_net.c
function valid_wifi_country (line 43) | int valid_wifi_country(const char *country)
function valid_hostname (line 66) | int valid_hostname(const char *name)
function make_netmask (line 81) | void make_netmask(ip_addr_t *nm, uint8_t prefix)
FILE: src/util_rp2.c
function get_stack_pointer (line 59) | inline uint32_t get_stack_pointer() {
function get_stack_free (line 68) | inline uint32_t get_stack_free()
function print_rp2_meminfo (line 76) | void print_rp2_meminfo()
function watchdog_disable (line 89) | void watchdog_disable()
function print_irqinfo (line 95) | void print_irqinfo()
function time_passed (line 160) | int time_passed(absolute_time_t *t, uint32_t ms)
function time_elapsed (line 177) | int time_elapsed(absolute_time_t t, uint32_t ms)
function getstring_timeout_ms (line 188) | int getstring_timeout_ms(char *str, uint32_t maxlen, uint32_t timeout)
function get_rp2_dvdd (line 222) | float get_rp2_dvdd()
function print_rp2_board_info (line 253) | void print_rp2_board_info()
function print_psram_info (line 292) | void print_psram_info()
function rp2_memtest (line 314) | void rp2_memtest()
function powman_vreg_update_in_progress_wait (line 362) | static inline void powman_vreg_update_in_progress_wait()
function rp2_set_sys_clock (line 370) | void rp2_set_sys_clock(uint32_t khz)
function rp2_is_picow (line 411) | int rp2_is_picow(void)
Copy disabled (too large)
Download .json
Condensed preview — 168 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (13,800K chars).
[
{
"path": ".github/FUNDING.yml",
"chars": 61,
"preview": "# These are supported funding model platforms\n\ngithub: tjko\n\n"
},
{
"path": ".github/workflows/cmake.yml",
"chars": 6157,
"preview": "name: Firmware Build\n\non:\n push:\n branches: [ \"main\" ]\n pull_request:\n branches: [ \"main\" ]\n\nenv:\n BUILD_THREAD"
},
{
"path": ".github/workflows/codeql.yml",
"chars": 4034,
"preview": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# Y"
},
{
"path": ".gitignore",
"chars": 205,
"preview": "CMakeLists.txt.user\nCMakeCache.txt\nCMakeFiles\nCMakeScripts\nTesting\nMakefile\ncmake_install.cmake\ninstall_manifest.txt\ncom"
},
{
"path": ".gitmodules",
"chars": 1108,
"preview": "[submodule \"libs/cJSON\"]\n\tpath = libs/cJSON\n\turl = https://github.com/DaveGamble/cJSON.git\n[submodule \"libs/ss_oled-lib\""
},
{
"path": "CMakeLists.txt",
"chars": 7851,
"preview": "# CMakeLists.txt for fanpico\n#\n\ncmake_minimum_required(VERSION 3.18)\n\n# Include Pico-SDK\nif (DEFINED ENV{PICO_SDK_PATH})"
},
{
"path": "LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "README.md",
"chars": 14910,
"preview": "\n# Fanpico: Programmable PWM (PC) Fan Controller\n\n[\n\n## Change Log\n\n\nv1.1\n- Add fuse (F3) to prevent"
},
{
"path": "boards/fanpico-0200/bom.csv",
"chars": 6810,
"preview": "\"Reference\",\"Value\",\"Datasheet\",\"Footprint\",\"Qty\",\"DNP\",\"Mouser Part Number\",\"LCSC Part Number\",\"Manufacturer\",\"Manufact"
},
{
"path": "boards/fanpico-0200/kicad/extra_fan_channel.kicad_sch",
"chars": 45754,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"a3e4201d-65f6-465e-922c-6bde94"
},
{
"path": "boards/fanpico-0200/kicad/fan_channels.kicad_sch",
"chars": 21933,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"21c2a7bb-e53e-404f-aa6f-d468a4"
},
{
"path": "boards/fanpico-0200/kicad/fanpico.kicad_pcb",
"chars": 1377899,
"preview": "(kicad_pcb\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(general\n\t\t(thickness 1.6)\n\t\t(legacy_te"
},
{
"path": "boards/fanpico-0200/kicad/fanpico.kicad_pro",
"chars": 21605,
"preview": "{\n \"board\": {\n \"3dviewports\": [],\n \"design_settings\": {\n \"defaults\": {\n \"apply_defaults_to_fp_fields\""
},
{
"path": "boards/fanpico-0200/kicad/fanpico.kicad_sch",
"chars": 139903,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"e63e39d7-6ac0-4ffd-8aa3-1841a4"
},
{
"path": "boards/fanpico-0200/kicad/power.kicad_sch",
"chars": 147837,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"028ff83f-3fa5-4d87-a092-2685b6"
},
{
"path": "boards/fanpico-0200/kicad/sensors.kicad_sch",
"chars": 82496,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"d585006f-9358-47f4-9303-a822a0"
},
{
"path": "boards/fanpico-0401D/README.md",
"chars": 546,
"preview": "# FANPICO-0401D PCB\n\nPCB Size: 82.5mm x 81.5mm\n\n\n\n## Change Log\n\nv1.1\n- Add built-in pull-up for"
},
{
"path": "boards/fanpico-0401D/bom.csv",
"chars": 6853,
"preview": "\"Reference\",\"Value\",\"Datasheet\",\"Footprint\",\"Qty\",\"DNP\",\"Mouser Part Number\",\"LCSC Part Number\",\"Manufacturer\",\"Manufact"
},
{
"path": "boards/fanpico-0401D/kicad/extra_fan_channel.kicad_sch",
"chars": 43815,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"a3e4201d-65f6-465e-922c-6bde94"
},
{
"path": "boards/fanpico-0401D/kicad/fan_channel.kicad_sch",
"chars": 66290,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"bbdfdd6a-c898-4a7d-9724-7451df"
},
{
"path": "boards/fanpico-0401D/kicad/fan_channels.kicad_sch",
"chars": 56702,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"21c2a7bb-e53e-404f-aa6f-d468a4"
},
{
"path": "boards/fanpico-0401D/kicad/fanpico.kicad_pcb",
"chars": 1756988,
"preview": "(kicad_pcb\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(general\n\t\t(thickness 1.6)\n\t\t(legacy_te"
},
{
"path": "boards/fanpico-0401D/kicad/fanpico.kicad_pro",
"chars": 21187,
"preview": "{\n \"board\": {\n \"3dviewports\": [],\n \"design_settings\": {\n \"defaults\": {\n \"apply_defaults_to_fp_fields\""
},
{
"path": "boards/fanpico-0401D/kicad/fanpico.kicad_sch",
"chars": 136661,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"e63e39d7-6ac0-4ffd-8aa3-1841a4"
},
{
"path": "boards/fanpico-0401D/kicad/power.kicad_sch",
"chars": 88244,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"028ff83f-3fa5-4d87-a092-2685b6"
},
{
"path": "boards/fanpico-0401D/kicad/sensors.kicad_sch",
"chars": 113284,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"d585006f-9358-47f4-9303-a822a0"
},
{
"path": "boards/fanpico-0804/README.md",
"chars": 738,
"preview": "# FANPICO-0804 PCB\n\nPCB Size: 135mm x 81.5mm\n\n\n\n## Change Log\n\nv1.3\n- Rotate fan and temperature"
},
{
"path": "boards/fanpico-0804/bom.csv",
"chars": 4146,
"preview": "Ref,Qnty,Value,Cmp name,Footprint,Description,Vendor,Mouser P/N,LCSC P/N\r\n\"C1, C2, C3, C4, C6, C11, C14, C17, C20, C22, "
},
{
"path": "boards/fanpico-0804/kicad/extra_fan_channel.kicad_sch",
"chars": 30793,
"preview": "(kicad_sch (version 20211123) (generator eeschema)\n\n (uuid a3e4201d-65f6-465e-922c-6bde94345467)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/fanpico-0804/kicad/fan_channel.kicad_sch",
"chars": 50820,
"preview": "(kicad_sch (version 20211123) (generator eeschema)\n\n (uuid bbdfdd6a-c898-4a7d-9724-7451df1ad22f)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/fanpico-0804/kicad/fan_channels.kicad_sch",
"chars": 69894,
"preview": "(kicad_sch (version 20211123) (generator eeschema)\n\n (uuid 21c2a7bb-e53e-404f-aa6f-d468a4437c78)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/fanpico-0804/kicad/fanpico.kicad_pcb",
"chars": 2766263,
"preview": "(kicad_pcb (version 20211014) (generator pcbnew)\n\n (general\n (thickness 1.6)\n )\n\n (paper \"A4\")\n (layers\n (0 \"F"
},
{
"path": "boards/fanpico-0804/kicad/fanpico.kicad_pro",
"chars": 10219,
"preview": "{\n \"board\": {\n \"design_settings\": {\n \"defaults\": {\n \"board_outline_line_width\": 0.09999999999999999,\n "
},
{
"path": "boards/fanpico-0804/kicad/fanpico.kicad_sch",
"chars": 184809,
"preview": "(kicad_sch (version 20211123) (generator eeschema)\n\n (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/fanpico-0804/kicad/power.kicad_sch",
"chars": 61953,
"preview": "(kicad_sch (version 20211123) (generator eeschema)\n\n (uuid 028ff83f-3fa5-4d87-a092-2685b6e33322)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/fanpico-0804/kicad/sensors.kicad_sch",
"chars": 18993,
"preview": "(kicad_sch (version 20211123) (generator eeschema)\n\n (uuid d585006f-9358-47f4-9303-a822a0a26736)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/fanpico-0804D/README.md",
"chars": 1117,
"preview": "# FANPICO-0804D PCB\n\nPCB Size: 135mm x 81.5mm\n\n\n\n## Change Log\n\nv1.3\n- Add QWIIC connector (to s"
},
{
"path": "boards/fanpico-0804D/bom.csv",
"chars": 8287,
"preview": "\"Reference\",\"Value\",\"Datasheet\",\"Footprint\",\"Qty\",\"DNP\",\"LCSC Part Number\",\"Mouser Part Number\",\"Manufacturer\",\"Manufact"
},
{
"path": "boards/fanpico-0804D/kicad/extra_fan_channel.kicad_sch",
"chars": 59314,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"a3e4201d-65f6-465e-922c-6bde94"
},
{
"path": "boards/fanpico-0804D/kicad/fan_channel.kicad_sch",
"chars": 98079,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"bbdfdd6a-c898-4a7d-9724-7451df"
},
{
"path": "boards/fanpico-0804D/kicad/fan_channels.kicad_sch",
"chars": 88866,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"21c2a7bb-e53e-404f-aa6f-d468a4"
},
{
"path": "boards/fanpico-0804D/kicad/fanpico.kicad_pcb",
"chars": 2550671,
"preview": "(kicad_pcb\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(general\n\t\t(thickness 1.6)\n\t\t(legacy_te"
},
{
"path": "boards/fanpico-0804D/kicad/fanpico.kicad_pro",
"chars": 20582,
"preview": "{\n \"board\": {\n \"3dviewports\": [],\n \"design_settings\": {\n \"defaults\": {\n \"apply_defaults_to_fp_fields\""
},
{
"path": "boards/fanpico-0804D/kicad/fanpico.kicad_sch",
"chars": 185394,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"e63e39d7-6ac0-4ffd-8aa3-1841a4"
},
{
"path": "boards/fanpico-0804D/kicad/power.kicad_sch",
"chars": 87551,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"028ff83f-3fa5-4d87-a092-2685b6"
},
{
"path": "boards/fanpico-0804D/kicad/sensors.kicad_sch",
"chars": 124138,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"d585006f-9358-47f4-9303-a822a0"
},
{
"path": "boards/oled-adapter/README.md",
"chars": 308,
"preview": "# FanPico-OLED-Adapter\n\nPCB Size: 25mm x 14.5mm\n\nThis is small adapter for making it easier to mount larger 1.5\" 128x128"
},
{
"path": "boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_pcb",
"chars": 70337,
"preview": "(kicad_pcb (version 20221018) (generator pcbnew)\n\n (general\n (thickness 1.6)\n )\n\n (paper \"A4\")\n (layers\n (0 \"F"
},
{
"path": "boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_prl",
"chars": 1183,
"preview": "{\n \"board\": {\n \"active_layer\": 0,\n \"active_layer_preset\": \"\",\n \"auto_track_width\": true,\n \"hidden_netclasse"
},
{
"path": "boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_pro",
"chars": 11049,
"preview": "{\n \"board\": {\n \"3dviewports\": [],\n \"design_settings\": {\n \"defaults\": {\n \"board_outline_line_width\": 0"
},
{
"path": "boards/oled-adapter/kicad/fanpico-oled-adapter.kicad_sch",
"chars": 20594,
"preview": "(kicad_sch (version 20230121) (generator eeschema)\n\n (uuid 01a24222-42e6-4e92-be4c-2681fd306cd2)\n\n (paper \"A4\")\n\n (ti"
},
{
"path": "boards/power-board/README.md",
"chars": 995,
"preview": "# FanPico PowerBoard\n\nPCB Size: 65mm x 65mm\n\nThis is a small power injector board for powering high-power fans, that req"
},
{
"path": "boards/power-board/bom.csv",
"chars": 1732,
"preview": "\"Reference\",\"Value\",\"Datasheet\",\"Footprint\",\"Qty\",\"DNP\",\"LCSC Part Number\",\"Mouser Part Number\"\n\"D1\",\"LED\",\"~\",\"Diode_SM"
},
{
"path": "boards/power-board/kicad/fanpico_powerboard.kicad_pcb",
"chars": 520724,
"preview": "(kicad_pcb\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(general\n\t\t(thickness 1.6)\n\t\t(legacy_te"
},
{
"path": "boards/power-board/kicad/fanpico_powerboard.kicad_prl",
"chars": 1296,
"preview": "{\n \"board\": {\n \"active_layer\": 0,\n \"active_layer_preset\": \"All Layers\",\n \"auto_track_width\": true,\n \"hidden"
},
{
"path": "boards/power-board/kicad/fanpico_powerboard.kicad_pro",
"chars": 14643,
"preview": "{\n \"board\": {\n \"3dviewports\": [],\n \"design_settings\": {\n \"defaults\": {\n \"apply_defaults_to_fp_fields\""
},
{
"path": "boards/power-board/kicad/fanpico_powerboard.kicad_sch",
"chars": 74129,
"preview": "(kicad_sch\n\t(version 20231120)\n\t(generator \"eeschema\")\n\t(generator_version \"8.0\")\n\t(uuid \"4448a583-d87a-4af7-9117-9a08da"
},
{
"path": "build.sh",
"chars": 721,
"preview": "#!/bin/sh\n#\n# build.sh\n#\n\nBUILD_DIR=./build\n\nerror() { echo \"`basename $0`: $*\"; }\nfatal() { echo \"`basename $0`: $*\"; e"
},
{
"path": "build_httpd_fs.sh",
"chars": 592,
"preview": "#!/bin/sh\n#\n# build_httpd_fs.sh\n#\n\nSERVER=\"FanPico (https://github.com/tjko/fanpico)\"\n\nFSDIR=src/httpd-fs/\nFSDATAFILE=sr"
},
{
"path": "cmake/pico_sdk_import.cmake",
"chars": 3775,
"preview": "# This is a copy of <PICO_SDK_PATH>/external/pico_sdk_import.cmake\n\n# This can be dropped into an external project to he"
},
{
"path": "commands.md",
"chars": 99000,
"preview": "# Fanpico: Command Reference\nFanpico uses \"SCPI like\" command set. Command syntax should be mostly SCPI and IEE488.2 com"
},
{
"path": "compile.sh",
"chars": 740,
"preview": "#!/bin/sh\n#\n# build.sh\n#\n\nBUILD_DIR=./build\n\nerror() { echo \"`basename $0`: $*\"; }\nfatal() { echo \"`basename $0`: $*\"; e"
},
{
"path": "contrib/build_makefsdata.sh",
"chars": 367,
"preview": "#!/bin/sh\n\nINCLUDES=\"-I ${PICO_SDK_PATH}/lib/lwip/src/include/ -I ${PICO_SDK_PATH}/lib/lwip/contrib/ports/unix/port/incl"
},
{
"path": "contrib/kicad_extract_netclasses.py",
"chars": 601,
"preview": "#!/usr/bin/env python3\n#\n# kicad_extract_netclasses.py\n#\n#\n\nimport sys\nimport re\nimport json\n\n\ndef parse_kicad_project_j"
},
{
"path": "contrib/makefsdata.patch",
"chars": 1277,
"preview": "--- a/src/apps/http/makefsdata/makefsdata.c\n+++ b/src/apps/http/makefsdata/makefsdata.c\n@@ -882,7 +882,7 @@ static int c"
},
{
"path": "credits.txt",
"chars": 1640,
"preview": "FanPico: Smart PWM (PC) Fan Controller\nCopyright (C) 2021-2026 Timo Kokkonen <tjko@iki.fi>\nhttps://kokkonen.net/fanpico\n"
},
{
"path": "debug.sh",
"chars": 144,
"preview": "#!/bin/sh\n#\n# Launch openocd for debugging.\n#\n\nopenocd -f interface/cmsis-dap.cfg \\\n\t-f target/rp2040.cfg \\\n\t-c \"adapter"
},
{
"path": "flash.sh",
"chars": 213,
"preview": "#!/bin/sh\n#\n# Flash Fanpico firmware using picoprobe\n#\n\nopenocd -f interface/cmsis-dap.cfg \\\n -c \"adapter speed 5"
},
{
"path": "kicad/FanPico.pretty/D_SOT-23_ANK.kicad_mod",
"chars": 4105,
"preview": "(footprint \"D_SOT-23_ANK\" (version 20221018) (generator pcbnew)\n (layer \"F.Cu\")\n (descr \"SOT-23, Single Diode\")\n (tag"
},
{
"path": "kicad/FanPico.pretty/Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal.kicad_mod",
"chars": 7232,
"preview": "(footprint \"Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal\"\n\t(version 20240108)\n\t(gen"
},
{
"path": "kicad/FanPico.pretty/IND-SMD_L7.2-W6.6_GPSR07X0.kicad_mod",
"chars": 3762,
"preview": "(footprint \"IND-SMD_L7.2-W6.6_GPSR07X0\"\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(layer \"F."
},
{
"path": "kicad/FanPico.pretty/L_7.3x7.3_H3.5_HandSolder.kicad_mod",
"chars": 3773,
"preview": "(footprint \"L_7.3x7.3_H3.5_HandSolder\" (version 20221018) (generator pcbnew)\n (layer \"F.Cu\")\n (descr \"Choke, SMD, 7.3x"
},
{
"path": "kicad/FanPico.pretty/OLED_module.kicad_mod",
"chars": 3870,
"preview": "(footprint \"OLED_module\" (version 20211014) (generator pcbnew)\n (layer \"F.Cu\")\n (tedit 5A19A429)\n (descr \"Through hol"
},
{
"path": "kicad/FanPico.pretty/P2PAK.kicad_mod",
"chars": 7414,
"preview": "(footprint \"P2PAK\" (version 20221018) (generator pcbnew)\n (layer \"F.Cu\")\n (descr \"TO-263/D2PAK/DDPAK SMD package, http"
},
{
"path": "kicad/FanPico.pretty/RPi_Pico_PicoW_SMD_TH.kicad_mod",
"chars": 30502,
"preview": "(footprint \"RPi_Pico_PicoW_SMD_TH\" (version 20221018) (generator pcbnew)\n (layer \"F.Cu\")\n (descr \"Through hole straigh"
},
{
"path": "kicad/FanPico.pretty/SW-SMD_L3.9-W3.0-P4.45.kicad_mod",
"chars": 4107,
"preview": "(footprint \"SW-SMD_L3.9-W3.0-P4.45\"\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(layer \"F.Cu\")"
},
{
"path": "kicad/FanPico.pretty/SW_PUSH_6mm_SMD_2.kicad_mod",
"chars": 5847,
"preview": "(footprint \"SW_PUSH_6mm_SMD_2\" (version 20221018) (generator pcbnew)\n (layer \"F.Cu\")\n (descr \"https://www.omron.com/ec"
},
{
"path": "kicad/FanPico.pretty/TE 171826-4 Floppy 4-pin Combo.kicad_mod",
"chars": 8688,
"preview": "(footprint \"TE 171826-4 Floppy 4-pin Combo\"\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version \"8.0\")\n\t(layer"
},
{
"path": "kicad/FanPico.pretty/TE 171826-4 Floppy 4-pin.kicad_mod",
"chars": 3691,
"preview": "(footprint \"TE 171826-4 Floppy 4-pin\" (version 20211014) (generator pcbnew)\n (layer \"F.Cu\")\n (tedit 6204BF02)\n (prope"
},
{
"path": "kicad/FanPico.pretty/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical.kicad_mod",
"chars": 14736,
"preview": "(footprint \"TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical\"\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(generator_version "
},
{
"path": "kicad/FanPico.pretty/TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle.kicad_mod",
"chars": 15641,
"preview": "(footprint \"TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical_and_RightAngle\"\n\t(version 20240108)\n\t(generator \"pcbnew\")\n\t(gen"
},
{
"path": "kicad/FanPico.pretty/TSOT-26.kicad_mod",
"chars": 3801,
"preview": "(footprint \"TSOT-26\" (version 20221018) (generator pcbnew)\n (layer \"F.Cu\")\n (descr \"TSOT, 6 Pin (https://www.jedec.org"
},
{
"path": "kicad/FanPico.pretty/ToolingHole_1.152mm.kicad_mod",
"chars": 1202,
"preview": "(footprint \"ToolingHole_1.152mm\" (version 20211014) (generator pcbnew)\n (layer \"F.Cu\")\n (tedit 5B924920)\n (descr \"Mou"
},
{
"path": "kicad/README.md",
"chars": 192,
"preview": "# KiCad Symbols and Footprints used in FanPico PCBs\n\nNon-standard symbols and footprints used in FanPico and BrickPico P"
},
{
"path": "kicad/fanpico.kicad_sym",
"chars": 17309,
"preview": "(kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor)\n (symbol \"CD74HC4050NSR\" (pin_names (offset 1.016)"
},
{
"path": "mibs/TJKO-FanPico-MIB",
"chars": 9297,
"preview": "TJKO-FanPico-MIB DEFINITIONS ::= BEGIN\n\nIMPORTS\n\tdevices\n\t\t\t\t\tFROM TJKO-ROOT-MIB\n\tMODULE-IDENTITY,\n\tOBJECT-TYPE,\n\tUnsign"
},
{
"path": "mibs/TJKO-ROOT-MIB",
"chars": 534,
"preview": "TJKO-ROOT-MIB DEFINITIONS ::= BEGIN\n\nIMPORTS\n\tMODULE-IDENTITY,\n\tOBJECT-IDENTITY,\n\tenterprises\n\t\t\t\tFROM SNMPv2-SMI\n\t;\n\n\nt"
},
{
"path": "src/bi_decl.c",
"chars": 5574,
"preview": "/* bi_decl.c\n Copyright (C) 2021-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/boards/0200.h",
"chars": 2601,
"preview": "/* boards/0200.h */\n\n\n#define FANPICO_MODEL \"0200\"\n\n#define FAN_COUNT 2 /* Number of Fan outputs on the board "
},
{
"path": "src/boards/0200.json",
"chars": 2859,
"preview": "{\n \"id\": \"fanpico-config-v1\",\n \"debug\": 0,\n \"display_type\": \"none\",\n \"local_echo\": false,\n \"led_mode\": 0,"
},
{
"path": "src/boards/0401D.h",
"chars": 2649,
"preview": "/* boards/0401D.h */\n\n\n#define FANPICO_MODEL \"0401D\"\n\n#define FAN_COUNT 4 /* Number of Fan outputs on the boar"
},
{
"path": "src/boards/0401D.json",
"chars": 3539,
"preview": "{\n \"id\": \"fanpico-config-v1\",\n \"debug\": 0,\n \"local_echo\": false,\n \"led_mode\": 0,\n \"spi_active\": 0,\n \"s"
},
{
"path": "src/boards/0804.h",
"chars": 2410,
"preview": "/* boards/0804.h */\n\n\n#define FANPICO_MODEL \"0804\"\n\n#define FAN_COUNT 8 /* Number of Fan outputs on the board "
},
{
"path": "src/boards/0804.json",
"chars": 5157,
"preview": "{\n \"id\": \"fanpico-config-v1\",\n \"debug\": 0,\n \"local_echo\": false,\n \"led_mode\": 0,\n \"sensors\": [\n\t{\n\t \"i"
},
{
"path": "src/boards/0804D.h",
"chars": 2539,
"preview": "/* boards/0804D.h */\n\n\n#define FANPICO_MODEL \"0804D\"\n\n#define FAN_COUNT 8 /* Number of Fan outputs on the boar"
},
{
"path": "src/boards/0804D.json",
"chars": 5202,
"preview": "{\n \"id\": \"fanpico-config-v1\",\n \"debug\": 0,\n \"local_echo\": false,\n \"led_mode\": 0,\n \"spi_active\": 0,\n \"s"
},
{
"path": "src/command.c",
"chars": 87946,
"preview": "/* command.c\n Copyright (C) 2021-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/command_util.c",
"chars": 16056,
"preview": "/* command_util.c\n Copyright (C) 2021-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n"
},
{
"path": "src/command_util.h",
"chars": 4439,
"preview": "/* command_util.h\n Copyright (C) 2021-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n"
},
{
"path": "src/config.c",
"chars": 47715,
"preview": "/* config.c\n Copyright (C) 2021-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Thi"
},
{
"path": "src/config.h.in",
"chars": 596,
"preview": "\n#ifndef FANPICO_CONFIG_H\n#define FANPICO_CONFIG_H 1\n\n#define FANPICO_VERSION \"@fanpico_VERSION@\"\n#define FANPIC"
},
{
"path": "src/crc32.c",
"chars": 6601,
"preview": "/* crc32.c\n Copyright (C) 2009-2022 Free Software Foundation, Inc.\n\n This file is part of the libiberty library.\n\n "
},
{
"path": "src/credits.s",
"chars": 394,
"preview": "# credits.s\n# Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n#\n# This"
},
{
"path": "src/default_config.S",
"chars": 446,
"preview": "# default_config.S\n# Copyright (C) 2021-2024 Timo Kokkonen <tjko@iki.fi>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n#"
},
{
"path": "src/dhcp.c",
"chars": 3835,
"preview": "/* dhcp.c\n Copyright (C) 2022-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This "
},
{
"path": "src/display.c",
"chars": 1799,
"preview": "/* display.c\n Copyright (C) 2022-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/display_lcd.c",
"chars": 14890,
"preview": "/* display_lcd.c\n Copyright (C) 2022-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n "
},
{
"path": "src/display_oled.c",
"chars": 9933,
"preview": "/* display_oled.c\n Copyright (C) 2022-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n"
},
{
"path": "src/fanpico-compile.h.in",
"chars": 271,
"preview": "#ifndef FANPICO_COMPILE_H\n#define FANPICO_COMPILE_H 1\n\n#define TLS_SUPPORT @TLS_SUPPORT@\n\n#ifdef NDEBUG\n#define ALTCP_MB"
},
{
"path": "src/fanpico.c",
"chars": 17798,
"preview": "/* fanpico.c\n Copyright (C) 2021-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/fanpico.h",
"chars": 19412,
"preview": "/* fanpico.h\n Copyright (C) 2021-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/fanpico_fsdata.c",
"chars": 88493,
"preview": "#include \"lwip/apps/fs.h\"\n#include \"lwip/def.h\"\n\n\n#define file_NULL (struct fsdata_file *) NULL\n\n\n#ifndef FS_FILE_FLAGS_"
},
{
"path": "src/filter_lossypeak.c",
"chars": 2795,
"preview": "/* filter_lossypeak.c\n Copyright (C) 2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n "
},
{
"path": "src/filter_sma.c",
"chars": 2400,
"preview": "/* filter_sma.c\n Copyright (C) 2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This"
},
{
"path": "src/filters.c",
"chars": 2301,
"preview": "/* filters.c\n Copyright (C) 2023-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/filters.h",
"chars": 1501,
"preview": "/* filters.h\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/flash.c",
"chars": 13466,
"preview": "/* flash.c\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This"
},
{
"path": "src/httpd-fs/404.html",
"chars": 521,
"preview": "<html>\n<head><title>FanPico: Error</title></head>\n<body bgcolor=\"white\" text=\"black\">\n\n <table width=\"100%\">\n <t"
},
{
"path": "src/httpd-fs/fanpico.css",
"chars": 1054,
"preview": "/* FanPico CSS */\n\n#b1 {\n background: #016567;\n border-radius: 10px;\n padding: 10px;\n}\n\n#l1 {\n background: #"
},
{
"path": "src/httpd-fs/index.shtml",
"chars": 2732,
"preview": "<html>\n <head>\n <title>FanPico: <!--#name--></title>\n <link rel=\"stylesheet\" href=\"fanpico.css\">\n <link rel=\"i"
},
{
"path": "src/httpd-fs/status.csv",
"chars": 16,
"preview": "<!--#csvstat-->\n"
},
{
"path": "src/httpd-fs/status.json",
"chars": 17,
"preview": "<!--#jsonstat-->\n"
},
{
"path": "src/httpd-fs_ssi.list",
"chars": 35,
"preview": "index.shtml\nstatus.json\nstatus.csv\n"
},
{
"path": "src/httpd.c",
"chars": 11086,
"preview": "/* httpd.c\n Copyright (C) 2022-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This"
},
{
"path": "src/i2c.c",
"chars": 5156,
"preview": "/* i2c.c\n Copyright (C) 2024 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This file i"
},
{
"path": "src/log.c",
"chars": 4698,
"preview": "/* log.c\n Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This f"
},
{
"path": "src/log.h",
"chars": 1583,
"preview": "/* log.h\n Copyright (C) 2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This file i"
},
{
"path": "src/logos/custom.h",
"chars": 959,
"preview": "/* custom.h\n Copyright (C) 2022-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Thi"
},
{
"path": "src/logos/custom.s",
"chars": 415,
"preview": "# custom.s\n# Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n#\n# This "
},
{
"path": "src/logos/default.h",
"chars": 948,
"preview": "/* default.h\n Copyright (C) 2022-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/logos/default.s",
"chars": 382,
"preview": "# default.s\n# Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n#\n# This"
},
{
"path": "src/lwip_hooks.h",
"chars": 501,
"preview": "#ifndef _LWIP_HOOKS_H\n#define _LWIP_HOOKS_H\n\n#include \"lwip/arch.h\"\n#include \"lwip/dhcp.h\"\n#include \"lwip/prot/dhcp.h\"\n\n"
},
{
"path": "src/lwipopts.h",
"chars": 5608,
"preview": "#ifndef _LWIPOPTS_H\n#define _LWIPOPTS_H\n\n#include <stdint.h>\n#include \"fanpico-compile.h\"\n\nextern uint16_t fanpico_http_"
},
{
"path": "src/mbedtls_config.h",
"chars": 2197,
"preview": "/* Workaround for some mbedtls source files using INT_MAX without including limits.h */\n#include <limits.h>\n\n\n#define MB"
},
{
"path": "src/memmap_custom_rp2040.ld",
"chars": 8032,
"preview": "/* Based on GCC ARM embedded samples.\n Defines the following symbols for use by code:\n __exidx_start\n __exidx_en"
},
{
"path": "src/memmap_custom_rp2350.ld",
"chars": 8841,
"preview": "/* Based on GCC ARM embedded samples.\n Defines the following symbols for use by code:\n __exidx_start\n __exidx_en"
},
{
"path": "src/memtest.c",
"chars": 2559,
"preview": "/* memtest.c\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This fi"
},
{
"path": "src/memtest.h",
"chars": 979,
"preview": "/* memtest.h\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This fi"
},
{
"path": "src/mqtt.c",
"chars": 29097,
"preview": "/* mqtt.c\n Copyright (C) 2023-2024 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This "
},
{
"path": "src/network.c",
"chars": 17196,
"preview": "/* network.c\n Copyright (C) 2022-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/onewire.c",
"chars": 4468,
"preview": "/* onewire.c\n Copyright (C) 2024 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This fi"
},
{
"path": "src/psram.c",
"chars": 11546,
"preview": "/* psram.c\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This file"
},
{
"path": "src/psram.h",
"chars": 1814,
"preview": "/* psram.h\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This file"
},
{
"path": "src/pulse_len.c",
"chars": 3993,
"preview": "/* pulse_len.c\n Copyright (C) 2021-2024 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n "
},
{
"path": "src/pulse_len.h",
"chars": 1226,
"preview": "/* pulse_len.h\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n "
},
{
"path": "src/pwm.c",
"chars": 8487,
"preview": "/* pwm.c\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This f"
},
{
"path": "src/sensors.c",
"chars": 5099,
"preview": "/* sensors.c\n Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n Th"
},
{
"path": "src/snmp.c",
"chars": 15684,
"preview": "/* snmp.c\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This file "
},
{
"path": "src/square_wave_gen.c",
"chars": 2617,
"preview": "/* square_wave_gen.c\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-late"
},
{
"path": "src/square_wave_gen.h",
"chars": 1189,
"preview": "/* square_wave_gen.h\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-late"
},
{
"path": "src/square_wave_gen.pio",
"chars": 1650,
"preview": "; square_wave_gen.pio\n; Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n;\n; SPDX-License-Identifier: GPL-3.0-or-late"
},
{
"path": "src/ssh_util.c",
"chars": 5857,
"preview": "/* ssh_util.c\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This f"
},
{
"path": "src/sshd.c",
"chars": 4765,
"preview": "/* sshd.c\n Copyright (C) 2025-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This "
},
{
"path": "src/syslog.c",
"chars": 3490,
"preview": "/* syslog.c\n Copyright (C) 2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This fil"
},
{
"path": "src/syslog.h",
"chars": 1141,
"preview": "/* syslog.h\n Copyright (C) 2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This fil"
},
{
"path": "src/tacho.c",
"chars": 10945,
"preview": "/* tacho.c\n Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This"
},
{
"path": "src/telnetd.c",
"chars": 3248,
"preview": "/* telnetd.c\n Copyright (C) 2024 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This fi"
},
{
"path": "src/themes/custom.s",
"chars": 480,
"preview": "# custom.s\n# Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n#\n# This "
},
{
"path": "src/themes/default-320x240.h",
"chars": 4658,
"preview": "/* default-320x240.h\n Copyright (C) 2022-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-late"
},
{
"path": "src/themes/default-480x320.h",
"chars": 4867,
"preview": "/* default-480x320.h\n Copyright (C) 2022-2023 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-late"
},
{
"path": "src/themes/lcd-background.s",
"chars": 494,
"preview": "# lcd-background.s\n# Copyright (C) 2021-2023 Timo Kokkonen <tjko@iki.fi>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n#"
},
{
"path": "src/tls.c",
"chars": 2611,
"preview": "/* tls.c\n Copyright (C) 2021-2022 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This f"
},
{
"path": "src/util.c",
"chars": 9326,
"preview": "/* util.c\n Copyright (C) 2021-2024 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This "
},
{
"path": "src/util_net.c",
"chars": 1826,
"preview": "/* util_net.c\n Copyright (C) 2021-2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n T"
},
{
"path": "src/util_net.h",
"chars": 1075,
"preview": "/* util_net.h\n Copyright (C) 2025 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n This f"
},
{
"path": "src/util_rp2.c",
"chars": 10358,
"preview": "/* util_rp2.c\n Copyright (C) 2021-2026 Timo Kokkonen <tjko@iki.fi>\n\n SPDX-License-Identifier: GPL-3.0-or-later\n\n T"
},
{
"path": "src/wolfssl/user_settings.h",
"chars": 14201,
"preview": "/* user_settings.h\n *\n * Copyright (C) 2006-2023 wolfSSL Inc.\n *\n * This file is part of wolfSSL.\n *\n * wolfSSL is free "
}
]
About this extraction
This page contains the full source code of the tjko/fanpico GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 168 files (11.7 MB), approximately 3.1M tokens, and a symbol index with 679 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.