Neale Pickett
·
2024-06-09
settings.h
1#pragma once
2
3/*
4 * The hours when the day begins and ends.
5 * At night, all you get is a dim clock.
6 */
7#define DAY_BEGIN 6
8#define DAY_END 20
9#define DAY_BRIGHTNESS 0x80
10#define NIGHT_BRIGHTNESS 0x10
11
12/*
13 * Define these to fetch from a wallart-server
14 *
15 * https://git.woozle.org/neale/wallart-server
16 */
17#define ART_HOSTNAME "www.woozle.org"
18#define ART_PORT 443
19#define ART_PATH "/wallart/wallart.bin"
20
21/*
22 * The password used when running as an access point.
23 */
24#define WFM_PASSWORD "artsy fartsy"
25
26/*
27 * The output pin your neopixel array is connected to.
28 */
29#define NEOPIXEL_PIN 32