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
#include <stdio.h> | |
#include "esp_err.h" | |
#include "esp_log.h" | |
#include "esp_vfs_fat.h" | |
#include "driver/sdspi_host.h" | |
#include "driver/spi_common.h" | |
#include "sdmmc_cmd.h" | |
#include "M5Unified.h" | |
static const char *TAG = "main"; |
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
[package] | |
name = "check-adapter-limit" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
wgpu = { git = "https://github.com/gfx-rs/wgpu", rev = "0ac9ce002656565ccd05b889f5856f4e2c38fa73" } | |
async-std = { version = "1.10.0", features = ["attributes"] } | |
[[bin]] |
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 neopixel | |
import touchio | |
import usb_hid | |
from adafruit_hid.keyboard import Keyboard | |
from adafruit_hid.keycode import Keycode | |
from rainbowio import colorwheel | |
pixels = neopixel.NeoPixel(board.NEOPIXEL, 4) |
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
{ | |
"description": "[Safari] Mouse button 4/5 to Back/Forward", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"pointing_button": "button4" | |
}, | |
"to": [ | |
{ |
OlderNewer