Skip to content

Instantly share code, notes, and snippets.

@EEParker
EEParker / 00_pi_zero_2_w_marlin_uart.md
Last active June 2, 2024 03:44
PI Zero 2 W UART configuration for Marlin

PI Zero 2 W UART configuration for Marlin

Install Prerequisites

sudo apt update
sudo apt install picocom -y

Enable Serial Hardware

Keybase proof

I hereby claim:

  • I am eeparker on github.
  • I am eeparker (https://keybase.io/eeparker) on keybase.
  • I have a public key ASDBCFpk6_oj3yBsnV4ieW0Hlt2S_D54ZtqWoL0eLodJzAo

To claim this, I am signing this object:

@EEParker
EEParker / main-simple.cpp
Last active April 11, 2019 19:24
ASMSA PlatformIO ESP8266 Tutorial
#include <Arduino.h>
const uint8_t PIN_PWR = 15;
float r1 = 10.0f;
float r2 = 10.0f;
float r3 = 10.0f;
float r2r3 = r2 + r3;
@EEParker
EEParker / jira-compact-style.html
Last active May 30, 2018 19:53
Jira 7.10 Compact Kanban Board CSS
<!-- Add this to the global system announcement banner -->
<style type="text/css">
.ghx-issue .ghx-highlighted-fields {
position: absolute;
margin: 0 !important;
top: 4px;
left: 140px;
}
#ghx-column-header-group {
@EEParker
EEParker / .gitconfig
Last active August 15, 2017 15:48 — forked from shawndumas/.gitconfig
Using WinMerge as the git Diff/Merge Tool on Windows 64bit
[mergetool]
prompt = false
keepBackup = false
keepTemporaries = false
[merge]
tool = winmerge
[mergetool "winmerge"]
name = WinMerge
trustExitCode = true
cmd = \"C:/Program Files (x86)/WinMerge/WinMergeU.exe\" -u -e -dl \"Local\" -dr \"Remote\" $LOCAL $REMOTE $MERGED