A4988 Drivers
Vref set to ~90% of stepper rated current
Rs = 0.1ohm
X = 0,58v (0,725A)
Y = 0,58v (0,725A)
Z = 0,58v (0,725A)
This file contains hidden or 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
export default (file, api) => { | |
const j = api.jscodeshift | |
const root = j(file.source) | |
if (root.find(j.ExportDefaultDeclaration).get().value.declaration.decorators.map(n => n.expression.name).indexOf("autobind") >= 0) { return null } | |
root.get().value.program.body.splice(1, 0, j.importDeclaration([j.importSpecifier(j.identifier('autobind'))], j.literal('core-decorators'))) | |
root.find(j.ExportDefaultDeclaration).get().value.declaration.decorators.push(j.decorator(j.identifier('autobind'))) | |
return root.toSource() | |
} |
This file contains hidden or 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
const fs = require('fs') | |
const CDP = require('chrome-remote-interface') | |
async function waitForNode(client, selector, waitTimeout) { | |
const { Runtime } = client | |
const getNode = selector => document.querySelector(selector) | |
const result = await Runtime.evaluate({ | |
expression: `(${getNode})(\`${selector}\`)`, | |
}) |
This file contains hidden or 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
// Installation: | |
// yarn add -D @codemod/cli @babel/plugin-syntax-jsx @babel/generator | |
import jsx from "@babel/plugin-syntax-jsx" | |
import generate from "@babel/generator" | |
const COLOR_MAP = { | |
"white": "white", | |
"near-white": "gray-100", | |
"light-gray": "gray-200", |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>shairport.sync</string> | |
<key>Program</key> | |
<string>/usr/local/bin/shairport-sync</string> | |
<key>ProgramArguments</key> | |
<array> |
This file contains hidden or 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
/etc/X11/Xwrapper.config -> allowed_users=anybody | |
/usr/share/X11/xorg.conf.d/99-fbdev.conf | |
Section "Device" | |
Identifier "touchscreen" | |
Driver "fbdev" | |
Option "fbdev" "/dev/fb1" | |
EndSection |
This file contains hidden or 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
# https://tutorials-raspberrypi.de/lcd-touch-display-teil-2-anpassungen/ | |
# http://projectable.me/raspberry-pi-touchscreen-octoprint-controller/ | |
sudo apt-get install xserver-xorg-video-fbturbo | |
git clone https://github.com/goodtft/LCD-show.git | |
LCD-show/LCD35-show 180 | |
# fix framebuffer |
This file contains hidden or 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
# Copyright (c) 2017 Ultimaker B.V. | |
# Cura is released under the terms of the LGPLv3 or higher. | |
import UM.Settings.Models.SettingVisibilityHandler | |
class MaterialSettingsVisibilityHandler(UM.Settings.Models.SettingVisibilityHandler.SettingVisibilityHandler): | |
def __init__(self, parent=None, *args, **kwargs): | |
super().__init__(parent=parent, *args, **kwargs) |
This file contains hidden or 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
const IGNORE = [ | |
'constructor', | |
'componentDidMount', | |
'componentDidUpdate', | |
'componentWillReceiveProps', | |
'componentWillMount', | |
'componentWillUpdate', | |
'componentWillUnmount', | |
'getChildContext', | |
'getDefaultProps', |
This file contains hidden or 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
# generates random dates per row | |
update myjacoti_measurementsession set date_start = (select random_date() where myjacoti_measurementsession.uuid = myjacoti_measurementsession.uuid); |