diff options
| -rw-r--r-- | spaghetti-monster/anduril/MODELS | 9 | ||||
| -rw-r--r-- | spaghetti-monster/anduril/cfg-wurkkos-fc13.h | 17 | ||||
| -rw-r--r-- | spaghetti-monster/anduril/cfg-wurkkos-ts11.h | 19 |
3 files changed, 43 insertions, 2 deletions
diff --git a/spaghetti-monster/anduril/MODELS b/spaghetti-monster/anduril/MODELS index dfe1190..3a321cd 100644 --- a/spaghetti-monster/anduril/MODELS +++ b/spaghetti-monster/anduril/MODELS @@ -14,15 +14,18 @@ Model Name MCU 0132 emisar-d4s-219c attiny85 0133 emisar-d4sv2 attiny1634 0134 emisar-d4sv2-219 attiny1634 -0135 emisar-d4sv2-tintramp attiny1634 +0135 emisar-2ch attiny1634 +0135 emisar-d4sv2-tintramp attiny1634 (old) 0136 emisar-d4sv2-tintramp-fet attiny1634 0141 emisar-d18 attiny85 0142 emisar-d18-219 attiny85 +0143 noctigon-m44 attiny1634 0211 noctigon-kr4 attiny1634 0212 noctigon-kr4-nofet attiny1634 0213 noctigon-kr4-219 attiny1634 0214 noctigon-kr4-219b attiny1634 -0215 noctigon-kr4-tintramp attiny1634 +0215 noctigon-kr4-2ch attiny1634 +0215 noctigon-kr4-tintramp attiny1634 (old) 0216 noctigon-kr4-12v attiny1634 0251 noctigon-k1 attiny1634 0252 noctigon-k1-sbt90 attiny1634 @@ -64,6 +67,8 @@ Model Name MCU 0632 sofirn-sc21-pro attiny1616 0714 wurkkos-ts10 attiny1616 0715 wurkkos-ts25 attiny1616 +0716 wurkkos-fc13 attiny1616 +0717 wurkkos-ts11 attiny1616 1618 gchart-fet1-t1616 attiny1616 Duplicates: diff --git a/spaghetti-monster/anduril/cfg-wurkkos-fc13.h b/spaghetti-monster/anduril/cfg-wurkkos-fc13.h new file mode 100644 index 0000000..56161b4 --- /dev/null +++ b/spaghetti-monster/anduril/cfg-wurkkos-fc13.h @@ -0,0 +1,17 @@ +// Wurkkos FC13, like a TS25 but with a RGB button and no front aux +// Copyright (C) 2023 Selene ToyKeeper +// SPDX-License-Identifier: GPL-3.0-or-later +#pragma once + +// ATTINY: 1616 +#include "cfg-wurkkos-ts25.h" +#undef MODEL_NUMBER +#define MODEL_NUMBER "0716" + +// this light has three aux LED channels: R, G, B +#define USE_AUX_RGB_LEDS + +// turn on the aux LEDs while main LEDs are on +#define USE_AUX_RGB_LEDS_WHILE_ON 20 +#define USE_INDICATOR_LED_WHILE_RAMPING + diff --git a/spaghetti-monster/anduril/cfg-wurkkos-ts11.h b/spaghetti-monster/anduril/cfg-wurkkos-ts11.h new file mode 100644 index 0000000..8955731 --- /dev/null +++ b/spaghetti-monster/anduril/cfg-wurkkos-ts11.h @@ -0,0 +1,19 @@ +// Wurkkos TS11, like a TS25 but with a RGB button and RGB front aux +// Copyright (C) 2023 Selene ToyKeeper +// SPDX-License-Identifier: GPL-3.0-or-later +#pragma once + +// ATTINY: 1616 +#include "cfg-wurkkos-ts25.h" +#undef MODEL_NUMBER +#define MODEL_NUMBER "0717" + +// this light has three aux LED channels: R, G, B +#define USE_AUX_RGB_LEDS + +// turn on the aux LEDs while main LEDs are on +// (but not until the main LEDs are bright enough to overpower the aux) +// (setting this lower makes an annoying effect on some levels) +#define USE_AUX_RGB_LEDS_WHILE_ON 50 +#define USE_INDICATOR_LED_WHILE_RAMPING + |
