Skip to content

Instantly share code, notes, and snippets.

@KeitetsuWorks
KeitetsuWorks / TeamsMuteButton.ino
Last active April 6, 2022 12:54 — forked from HaxNobody/ZoomMuteButton.ino
Physical mute button for Microsoft Teams using an ATTiny85/Digispark and the Micronucleus bootloader to allow programming with the Arduino IDE
/*
Thanks to Elliotmade for the inspiration on this project
https://elliotmade.com/2020/04/23/physical-mute-button-for-zoom-meetings/
Refactored by HaxNobody to extend functionalty and add comments for my own
understanding
This program will send USB HID keyboard presses to bring the Zoom window into
the foreground and activate microphone and video functions.
* A momentary press on button 1 will toggle mute on or off.
@KeitetsuWorks
KeitetsuWorks / opencv_csi-camera.py
Last active April 19, 2022 04:30
Sample Codes for NVIDIA L4T ML
#!/usr/bin/env python
# -*- coding: utf-8 -*-
##
## @file opencv_csi-camera.py
## @brief Display the image captured by the CSI camera
## @author Keitetsu
## @date 2022/01/15
## @copyright Copyright (c) 2022 Keitetsu
## @par License
@KeitetsuWorks
KeitetsuWorks / docker-compose.yml
Created February 12, 2022 13:19
PostgreSQL + pgAdmin on Docker
version: "3.9"
services:
postgres:
image: postgres:14.2-bullseye
hostname: postgres
container_name: postgres
restart: always
environment:
POSTGRES_USER: test
@KeitetsuWorks
KeitetsuWorks / README.md
Last active February 11, 2022 02:59
deepstream-test5-app + Apache Kafka + Node-RED

deepstream-test5-app + Apache Kafka + Node-RED

deepstream-test5-app

My environment

  • Ubuntu 20.04.3 LTS (amd64)
@KeitetsuWorks
KeitetsuWorks / button_led.ino
Last active January 31, 2022 14:50
Arduino: スイッチ押下4回目でLEDが点灯し,押下5回目でLEDが消灯して初期状態に戻る
/**
* @file button_led.ino
* @brief Button and LED
* @author Keitetsu
* @date 2022/01/31
* @copyright Copyright (c) 2022 Keitetsu
* @par License
* This software is released under the MIT License.
*/
@KeitetsuWorks
KeitetsuWorks / button_4leds_blink_int.ino
Last active January 31, 2022 15:08
Arduino: タクトスイッチ押下を外部割込みで検出し,LEDの点滅方向を切り替える
@KeitetsuWorks
KeitetsuWorks / leds_blink_millis.ino
Last active December 1, 2021 16:25
Arduino Sample Sketch: Blink LED
@KeitetsuWorks
KeitetsuWorks / button_led_blink.ino
Last active December 1, 2021 14:01
Arduino Sample Sketch: Button and LED
@KeitetsuWorks
KeitetsuWorks / arduino.ino
Last active October 13, 2021 14:34
Simple LED Switch
/**
* @file arduino.ino
* @brief LED Controller
* @author Keitetsu
* @date 2021/10/13
* @copyright Copyright (c) 2021 Keitetsu
* @par License
* This software is released under the MIT License.
*/
@KeitetsuWorks
KeitetsuWorks / servo_button.ino
Last active November 24, 2021 14:30
Arduino: ボタンスイッチでサーボモータの角度を切り替える
/**
* @file servo_button.ino
* @brief Servo Motor Controller
* @author Keitetsu
* @date 2021/09/29
* @copyright Copyright (c) 2021 Keitetsu
* @par License
* This software is released under the MIT License.
*/