Skip to content

Commit

Permalink
✨ Detect Flashforge Voxelab Aquila
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Aug 11, 2021
1 parent 88e8e03 commit 383c011
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions octoprint_firmware_check/checks/firmware_unsafe.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def as_dict(cls):
AnycubicCheck(),
CrealityCR10sCheck(),
CrealityEnder3Check(),
FlashforgeVoxelabAquilaCheck(),
MalyanM200Check(),
Micro3DIMECheck(),
Micro3DStockCheck(),
Expand Down Expand Up @@ -136,6 +137,21 @@ class CrealityEnder3Check(AuthorCheck):
authors = (" | Author: (Ender3)".lower(),)


class FlashforgeVoxelabAquilaCheck(Check):
"""
Flashforge Voxelab Aquila stock firmware
Identified through "MACHINE_TYPE:Voxlab-1 V1" (sic!) in M115 response.
"""

name = "flashforge_voxelab_aquila"
MACHINE_TYPE = "Voxlab-1 V1" # sic!

def m115(self, name, data):
self._triggered = data.get("MACHINE_TYPE") == self.MACHINE_TYPE
self._active = False


class MalyanM200Check(Check):
"""
Malyan M200 stock firmware prior to version 4.0
Expand Down

0 comments on commit 383c011

Please sign in to comment.