We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6fbdfe6 + efff408 commit ed84d5dCopy full SHA for ed84d5d
bin/detect.py
@@ -29,6 +29,10 @@
29
print("Board id: ", detector.board.id)
30
print()
31
32
+print(
33
+ "Is this a Siemens Simatic IOT2000 Gateway?",
34
+ detector.board.any_siemens_simatic_iot2000,
35
+)
36
print("Is this a DragonBoard 410c?", detector.board.DRAGONBOARD_410C)
37
print("Is this a Pi 3B+?", detector.board.RASPBERRY_PI_3B_PLUS)
38
print("Is this a Pi 4B?", detector.board.RASPBERRY_PI_4B)
@@ -107,3 +111,6 @@
107
111
108
112
if detector.board.any_lubancat:
109
113
print("LubanCat detected.")
114
+
115
+if detector.board.any_siemens_simatic_iot2000:
116
+ print("Siemens Simatic IOT2000 Gateway detected.")
0 commit comments