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 <Arduino.h> | |
#include <SPI.h> | |
#include <WiFiNINA.h> | |
#include <ArduinoHA.h> | |
namespace { | |
constexpr auto WIFI_SSID = "<SSID>"; | |
constexpr auto WIFI_PASS = "<PASSWORD>"; |
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
# Copyright (C) 2022 Steven Stallion <[email protected]> | |
# | |
# This work is licensed under a Creative Commons Attribution 4.0 | |
# International License. | |
# | |
# You should have received a copy of the license along with this | |
# work. If not, see <http://creativecommons.org/licenses/by/4.0/>. | |
LATEXMK = latexmk | |
LATEXMKFLAGS = -xelatex -use-make |
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
# Copyright (c) 2017 Steven Stallion | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions | |
# are met: | |
# 1. Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. | |
# 2. Redistributions in binary form must reproduce the above copyright | |
# notice, this list of conditions and the following disclaimer in the |
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
#!/bin/sh -e | |
# convert-bgrt.sh - convert UEFI BGRT image | |
BGRT_DIR=/sys/firmware/acpi/bgrt | |
if [ ! -d $BGRT_DIR ]; then | |
echo "BGRT not found" >&2 | |
exit 1 | |
fi |
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
" lvimrc - local vim configuration | |
" Default Indentation | |
autocmd FileType * setlocal noexpandtab shiftwidth=8 softtabstop=8 |