I would love to be able to move the emergency stop button to the middle of the screen.
Latest posts made by the_K
-
RE: Emergency stop button on mobile devices
-
RE: Temperature controlled LED display
This is what I've got to change my the colour of my 60 neopixels strip, the first and last ones show blue or red when when when the bed and heater is above 50C and change the brightness of the chamber.
; daemeon.g ; Adafruit #1426 8 led neopixel M150 X3 if heat.heaters[1].current > 50 ; temp M150 R255 Y5 S1 F1 ; Red 255 Y =Bightness 0-31 S = Number M150 W255 Y5 S19 F1 M150 W255 Y20 S20 F1 elif heat.heaters[1].current <= 50 M150 B255 Y5 S1 F1 M150 W255 Y5 S19 F1 M150 W255 Y5 S20 F1 if heat.heaters[0].current > 50 ; temp M150 W255 Y2 S19 F1 M150 R255 Y5 S1 F0 elif heat.heaters[0].current <= 50 M150 W255 Y2 S19 F1 M150 B255 Y5 S1 F0
-
RE: Config.json vs Config.g
Thanks, That's kind of what i wanted to hear. Just just hoped there was a way to keep things better organised i suppose.
-
Config.json vs Config.g
Been searching Google, the documents and forum but can't find an answer.
I've got my corexy with 3 z motors running by editing the config.g file, from the original configurator file.
I'm a bit confused with what to do with the config.json file now as it's doesn't match the config.g?