Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
671d4eb
init fanspeed and first mock
Nov 17, 2023
25cc592
working for linux, still wip
Nov 17, 2023
54a5286
add readme and todos
Nov 17, 2023
e87daec
rename venv to be ignored
Nov 18, 2023
3984a55
cleanup
Nov 18, 2023
8836c39
remove debug prints
Nov 18, 2023
618e91e
add Rotation ValueFormat as rpm
Nov 18, 2023
73e8836
rename and create link to Deployments
Nov 18, 2023
5c66f06
change to hardlink, add units, move test to correct location, update …
Nov 18, 2023
0fa394b
addd .vsode
Dec 12, 2023
60c69b6
Merge remote-tracking branch 'origin/main' into dev
Dec 18, 2023
ddec4aa
move network to deploy
Dec 18, 2023
9840359
ignore .code-workspace
Dec 18, 2023
e8d5840
update class organization
Dec 23, 2023
74fd8e8
update methods
Dec 24, 2023
b8e9a50
Merge branch 'main' into network_io
Dec 24, 2023
07fc12d
first mock of config and wifi signal strength update
Dec 26, 2023
6c4fd87
remove vscoe dev dir
Dec 26, 2023
f657509
cleanup workspace
Dec 26, 2023
1ed02c2
restore gitignore to head
Dec 26, 2023
e0803f6
if wireless from iwconfig "interfacename" output
Dec 26, 2023
6ac34ac
first speed calculations
Dec 26, 2023
49544e3
separate Wifi from network entity
Dec 27, 2023
e2746ae
add pattern matching for iwconfig
Dec 27, 2023
2e4dd82
linux wifi implementation working
Jan 2, 2024
1065355
checkSystemSupport for linux
Jan 3, 2024
5baa62f
chcekSystemSupport windows
Jan 3, 2024
18c3e55
add valueformatter, uppdate extra keys, first half of updates
Jan 3, 2024
bfc955f
add todo
Jan 3, 2024
3f9bda7
RunCommand to OsD
infeeeee Jan 3, 2024
ea4e14a
rearrange fix percent and dbm
Jan 4, 2024
815121b
windows implementation feature complete, needs refactoring
Jan 4, 2024
55ad325
remove network fix linux implementation
Jan 4, 2024
5a92382
cleanup
Jan 4, 2024
ff23de5
move logic to checksystemspport
Jan 5, 2024
0caec82
Merge branch 'main' into network_io
Jan 5, 2024
c2372f4
check returncode instead of output
Jan 5, 2024
51abf89
windows fix
Jan 5, 2024
0cf65d4
show only available attributes
Jan 8, 2024
ca4f723
HAss entity properties
richibrics Jan 8, 2024
2805a82
Fix extra attribute and macos: regex, command, language
richibrics Jan 8, 2024
cfcfe7b
macos: use full airport path
richibrics Jan 8, 2024
5985a35
Remove Hass unit
richibrics Jan 8, 2024
a7f363f
change configuration for windows
Jan 9, 2024
67e2e28
change locale to defaultlocale for windows support. fix problems on w…
Jan 9, 2024
7ca3904
Merge branch 'richibrics:main' into network_io
lockenkop Jan 18, 2024
a9ac03e
reduce amount of extraAttributes, cleanup
Jan 22, 2024
4c87860
ctypes boilerplate
Jan 22, 2024
0a64a74
first mock ctypes
Jan 27, 2024
f5d2ecf
iw switch
Jan 27, 2024
3892a8f
macos systemsupport check fix
Jan 27, 2024
1f75c73
Merge branch 'richibrics:main' into network_io
lockenkop Jun 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ IoTuring/Configurator/configurations.json*
IoTuring/Configurator/dontmoveconf.itg*
.venv
build
*.egg-info
*.egg-info
6 changes: 3 additions & 3 deletions IoTuring/Configurator/Configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def OpenConfigInEditor(self):
editor_command = next(
(e for e in editors if OsD.CommandExists(e)), "")
if editor_command:
subprocess.run(f'{editor_command} "{config_path}"',
shell=True, close_fds=True)
return
OsD.RunCommand(f'{editor_command} "{config_path}"',
shell=True, close_fds=True, capture_output=False)
return

self.Log(self.LOG_WARNING, "No editor found")

Expand Down
Loading