Skip to content

Commit ed84d5d

Browse files
authored
Merge pull request #255 from SIMATICmeetsLinux/main
Added Siemens Simatic IOT2000 Gateway to detect.py
2 parents 6fbdfe6 + efff408 commit ed84d5d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

bin/detect.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
print("Board id: ", detector.board.id)
3030
print()
3131

32+
print(
33+
"Is this a Siemens Simatic IOT2000 Gateway?",
34+
detector.board.any_siemens_simatic_iot2000,
35+
)
3236
print("Is this a DragonBoard 410c?", detector.board.DRAGONBOARD_410C)
3337
print("Is this a Pi 3B+?", detector.board.RASPBERRY_PI_3B_PLUS)
3438
print("Is this a Pi 4B?", detector.board.RASPBERRY_PI_4B)
@@ -107,3 +111,6 @@
107111

108112
if detector.board.any_lubancat:
109113
print("LubanCat detected.")
114+
115+
if detector.board.any_siemens_simatic_iot2000:
116+
print("Siemens Simatic IOT2000 Gateway detected.")

0 commit comments

Comments
 (0)