Commit Graph

17 Commits

Author SHA1 Message Date
Phew
91cb3ef098 Fixed timer, maybe. I have no way to try this 2026-01-12 22:40:08 +01:00
Phew
b708b4c787 Cleanup and added joystick button pins 2026-01-12 22:40:07 +01:00
Phew
da047cd165 Added option to use button joystic instead of accelerometer based joystick. Set as default now 2026-01-12 22:40:05 +01:00
Phew
15ce889b92 Fix string comparison 2026-01-12 22:39:48 +01:00
bdring
a848394748 Merge pull request #14 from bdring/pr/5
updates
2021-12-02 14:46:40 -06:00
Bart Dring
f6e8a7f0d4 updates 2021-12-02 14:44:57 -06:00
bdring
7423b6ef64 Merge pull request #10 from solhuebner/patch-2
Attack should fire if threshold is reached
2019-11-14 10:52:50 -06:00
Sol Huebner
42212f5a7e Attack should fie if threshold is reached
Either we need to modify the getInput example (as it will not trigger the attack by default):

if(digitalRead(attackButtonPinNumber) == HIGH) joystickWobble = ATTACK_THRESHOLD;

Or we can just say, that the user attacks when the threshold is reached (makes it easier to understand if you use alternative input methods).
2019-11-14 11:37:08 -05:00
Sol Huebner
2e1dcbe5ac Fix inLava detection
If LP._right is the same as pos the user is still in lava :)
2019-11-14 11:32:17 -05:00
bdring
646e4b1911 Merge branch 'master' into add-prometheus-metrics 2019-11-03 18:34:33 -06:00
bdring
64b7b4b462 Updates, new terrifying lava options.
- Lava now has flow and growth options
- APA102 is now the default
- Changed the default wifi password
- Fix #include (capitalization error)
2019-11-03 09:18:25 -06:00
Georg Gadinger
6375c8e2c0 Add /metrics endpoint to be used with Prometheus 2019-10-10 20:18:17 +02:00
Georg Gadinger
e46fe9e4d3 Remove double /* to fix compiler error 2019-10-10 19:59:52 +02:00
bdring
0ef7358432 Added additional sourcee files 2019-06-06 11:20:32 -05:00
bdring
95a8645fad Fixing Neoplixel Version
The Neopixel version was not working. I updated to the latest FastLED
library that uses the RMT feature and a second core. I also updated the
code to make it easier to deal with the differences between the Neopixel
and Dotstar versions.
2018-06-29 16:41:19 -05:00
bdring
2a480255e0 Updates and New Features
- JOYSTICK_DEBUG was left on...turned it off
 - Web page fields now have
type='number' so they bring up a number keyboard
 - Refresh the
brightness when it changes.
 - More Screen Savers
 - Better looking
reset after gameover
 - Better looking restart after boss kill
 -
Updated readme with video and latest info
2018-05-01 12:49:05 -05:00
per1234
840eab60aa Move sketch to appropriately named subfolder
The Arduino IDE requires that a sketch be located in a folder of the same name. Although the name of the repository does match the sketch name, when GitHub's popular Clone or download > Download ZIP feature is used to download the contents of a repository the branch/release/commit name is appended to the folder name, causing a mismatch.

When opening a file that does not meet this sketch/folder name matching requirement the Arduino IDE presents a dialog:

The file "TWANG32.ino" needs to be inside a sketch folder named "TWANG32".
Create this folder, move the file, and continue?

After clicking "OK" the Arduino IDE currently moves only the file TWANG32.ino to the new folder, leaving behind the other source files. This causes compilation of the sketch to fail:

TWANG32-master\TWANG32\TWANG32.ino:30:23: fatal error: twang_mpu.h: No such file or directory
2018-04-28 22:40:54 -07:00