Skip to content

Commit

Permalink
Fixing old RPI board ID
Browse files Browse the repository at this point in the history
  • Loading branch information
enesbcs committed Aug 6, 2021
1 parent 8b0f2e7 commit 6546f72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linux_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def getRPIVer():
if len(detarr)>1:
hwid = detarr[1].strip().lower()
if hwid[:4] == "1000":
hwid = hwid[:-4]
hwid = hwid[-4:]
if (hwid == "0002") or (hwid == "0003"):
hwarr = {
"name": "Pi 1 Model B",
Expand Down
2 changes: 1 addition & 1 deletion rpieGlobals.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Copyright (C) 2018-2020 by Alexander Nagy - https://bitekmindenhol.blog.hu/
#
PROGNAME = "RPIEasy"
BUILD = 21166
BUILD = 21218
PROGVER = str(BUILD)[:1]+"."+str(BUILD)[1:2]+"."+str(BUILD)[2:]

gpMenu = []
Expand Down

0 comments on commit 6546f72

Please sign in to comment.