From 1423aff5ad343ced99420a4b0f479b792fc66c60 Mon Sep 17 00:00:00 2001 From: Martin S <99605907+schnurma@users.noreply.github.com> Date: Wed, 26 Oct 2022 20:14:56 +0200 Subject: [PATCH 1/2] Added Siemens Simatic IOT2000 Gateway to detect.py --- bin/detect.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/detect.py b/bin/detect.py index d73f530a..fb750aa2 100755 --- a/bin/detect.py +++ b/bin/detect.py @@ -29,6 +29,10 @@ print("Board id: ", detector.board.id) print() +print( + "Is this a Siemens Simatic IOT2000 Gateway?", + detector.board.any_siemens_simatic_iot2000, +) print("Is this a DragonBoard 410c?", detector.board.DRAGONBOARD_410C) print("Is this a Pi 3B+?", detector.board.RASPBERRY_PI_3B_PLUS) print("Is this a Pi 4B?", detector.board.RASPBERRY_PI_4B) @@ -107,3 +111,7 @@ if detector.board.any_lubancat: print("LubanCat detected.") + +if detector.board.any_siemens_simatic_iot2000: + print("Siemens Simatic IOT2000 Gateway detected.") + From efff4083eb88fd13ec3d524e7ba2ff3acf591983 Mon Sep 17 00:00:00 2001 From: Martin S <99605907+schnurma@users.noreply.github.com> Date: Wed, 26 Oct 2022 20:32:31 +0200 Subject: [PATCH 2/2] deleted surplus row in bin/detect.py --- bin/detect.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/detect.py b/bin/detect.py index fb750aa2..764e8ad1 100755 --- a/bin/detect.py +++ b/bin/detect.py @@ -114,4 +114,3 @@ if detector.board.any_siemens_simatic_iot2000: print("Siemens Simatic IOT2000 Gateway detected.") -