Skip to content

Instantly share code, notes, and snippets.

View abcd-ca's full-sized avatar

Andrew Blair abcd-ca

View GitHub Profile
@abcd-ca
abcd-ca / privacy-policy.md
Created June 15, 2026 20:39
White Noise Machine — Privacy Policy & Support

Privacy Policy — White Noise Machine

Last updated: April 30, 2026

White Noise Machine is a no-frills sound generator. This page exists because Apple, Google, and various app stores require every app to publish a privacy policy, even when the app collects nothing.

What we collect

Nothing.

@abcd-ca
abcd-ca / privacy-policy.md
Created May 1, 2026 17:34
White Noise Machine — Privacy Policy

Privacy Policy — White Noise Machine

Last updated: April 30, 2026

White Noise Machine is a no-frills sound generator. This page exists because Apple, Google, and various app stores require every app to publish a privacy policy, even when the app collects nothing.

What we collect

Nothing.

@abcd-ca
abcd-ca / example.ino
Created May 27, 2019 04:10
Example of getting unique mac address using Ethernet Featherwing
#import "macAddress.h"
void setup () {
byte mac[6];
getUniqueMacAddress(mac);
Serial.begin(115200);
Serial.print("mac: ");
for (uint8_t i = 0; i < sizeof(mac); i++) {