This file contains 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
#!/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 |
This file contains 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
#!/bin/bash | |
################################################################################ | |
# | |
# Generate nice looking PCB overlays from KiCad PDF plots | |
# Requirements: Ghostscript and ImageMagick | |
# | |
# Usage: | |
# | |
# chmod a+x ./nice.sh |
This file contains 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
#!/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" |
This file contains 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
#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 |
This file contains 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
/******************************************************************************* | |
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. |