Skip to content

Instantly share code, notes, and snippets.

@onetransistor
onetransistor / alarm.ino
Last active March 21, 2021 14:40
Slightly modified for one time pin toggling alarm - https://www.onetransistor.eu/2018/12/alarm-clock-with-ds1302-rtc.html
/*******************************************************************************
Arduino Clock with alarm function and DS1302 RTC module
Version 1.0
Copyright (C) 2018 One Transistor <https://www.onetransistor.eu>
More information at:
https://www.onetransistor.eu/2018/12/alarm-clock-with-ds1302-rtc.html
Developed on Arduino Uno compatible board (ATmega328p) with LCD, DS1302
module, active buzzer and 4 push buttons.
@onetransistor
onetransistor / bluepill.ioc
Created September 18, 2018 19:40
STM32CubeMX Project for STM32 blue pill development board
#MicroXplorer Configuration settings - do not modify
File.Version=6
KeepUserPlacement=false
Mcu.Family=STM32F1
Mcu.IP0=NVIC
Mcu.IP1=RCC
Mcu.IP2=RTC
Mcu.IP3=SYS
Mcu.IP4=USB
Mcu.IPNb=5
@onetransistor
onetransistor / pulseview.sh
Last active March 20, 2024 14:39
Script to compile and install PulseView on Ubuntu Linux
#!/bin/bash
# Script that will download, compile and install PulseView and its dependencies
# For more information visit:
# https://www.onetransistor.eu/2017/11/script-to-compile-and-install-pulseview.html
set -e
echo "PulseView: Download, build and install"
echo "Installing dependencies"
#!/bin/bash
################################################################################
#
# Generate nice looking PCB overlays from KiCad PDF plots
# Requirements: Ghostscript and ImageMagick
#
# Usage:
#
# chmod a+x ./nice.sh
@onetransistor
onetransistor / dream_install.sh
Last active July 27, 2023 19:48
Script to compile and install Dream DRM receiver software on Ubuntu
#!/bin/bash
# *** Script to compile and install Dream DRM receiver software on Ubuntu
# *** and other APT based distros.
# *** More at: http://onetransistor.blogspot.com/2015/12/compile-install-dream-drm-linux.html
# *** based on instructions at: http://drm.sourceforge.net/wiki/index.php/Building_on_apt_based_distros
set -e
QMAKE_EXEC=qmake-qt4