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
import time | |
import board | |
import digitalio | |
from adafruit_debouncer import Debouncer | |
import usb_hid | |
from adafruit_hid.keyboard import Keyboard | |
from adafruit_hid.keyboard_layout_us import KeyboardLayoutUS | |
from adafruit_hid.keycode import Keycode | |
TOGGLE_PINS = [ |
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
# Voxel Heat Diffuse Skinning helper | |
# | |
# (c) 2023, hsgw(twitter:@hsgw) | |
# This software is released under the MIT license. | |
# see https://opensource.org/license/mit/ | |
# Voxel Heat Diffuse Skinningを繰り返し使うときにarmatureとmeshを選択しなくても覚えていてくれるblender用アドオンです | |
# ObjectとArmatureを指定してください | |
# Remove vertex group~は、Armatureのboneでdeformのついていない物を探して、Meshのvertex groupから同名のものを削除します。 | |
# Voxel Heat Diffuse Skinningを実行しないboneがある場合は、boneからdeformを解除してください。 |
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
# MIT License (c) 2023, @hsgw | |
import requests | |
import datetime | |
import re | |
class BlueskyAtpException(Exception): | |
""" | |
Custom exception class for Bluesky ATP. |
OlderNewer