View b.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Plots | |
function calcDisp(Vi, deg, t, b) | |
m = 5.19 | |
n = 2 | |
G = 9.8 | |
θ = deg * pi / 180 | |
Vt = (m * G / b)^(1 / n) | |
Vxi = Vi * cos(θ) |
View bom2grouped_csv_jlcpcb.xsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--XSL style sheet to convert EESCHEMA XML Partlist Format to grouped CSV BOM Format | |
Copyright (C) 2014, Wolf Walter. | |
Copyright (C) 2013, Stefan Helmert. | |
Copyright (C) 2018, Kicad developers. | |
Copyright (C) 2019, arturo182. | |
Copyright (C) 2022, ZiTe. | |
GPL v2. | |
Functionality: | |
Generation of JLCPCB PCBA compatible BOM |
View jlcpcb_1oz_1-2layer.kicad_dru
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
# MIT License | |
# | |
# Copyright (c) 2022 ZiTe | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
View luna_pinyin.custom.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# luna_pinyin.custom.yaml | |
# | |
# 【朙月拼音】模糊音定製模板-ZiTe自訂版 | |
# 佛振配製 :-) | |
# ZiTe修改(Forked from https://gist.github.com/lotem/2320943) | |
# | |
# 位置: | |
# ~/.config/ibus/rime (Linux) | |
# ~/Library/Rime (Mac OS) | |
# %APPDATA%\Rime (Windows) |
View GPIO_Functions.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
****************************************************************************** | |
* @file GPIO_Functions.c | |
* @author ZiTe | |
* @version V1.0.1 | |
* @date 08-October-2019 | |
* @brief GPIO functions program | |
****************************************************************************** | |
* @attention |
View (edited)rules.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MCU name | |
MCU = atmega32u4 | |
# Processor frequency. | |
# This will define a symbol, F_CPU, in all source code files equal to the | |
# processor frequency in Hz. You can then use this symbol in your source code to | |
# calculate timings. Do NOT tack on a 'UL' at the end, this will be done | |
# automatically to create a 32-bit value in your source code. | |
# | |
# This will be an integer division of F_USB below, as it is sourced by |