This commit is contained in:
2023-11-02 08:43:36 +00:00
parent bd1c6fdcef
commit 047d3d05e0
15 changed files with 2 additions and 2 deletions

0
.gitmodules vendored Normal file → Executable file
View File

0
.vscode/settings.json vendored Normal file → Executable file
View File

0
Manifest.toml Normal file → Executable file
View File

0
Project.toml Normal file → Executable file
View File

0
previousVersion/0.0.1/Manifest.toml Normal file → Executable file
View File

0
previousVersion/0.0.1/Project.toml Normal file → Executable file
View File

0
previousVersion/0.0.1/src/CommUtils.jl Normal file → Executable file
View File

0
previousVersion/0.0.1/src/interface.jl Normal file → Executable file
View File

0
previousVersion/0.0.2/.gitmodules vendored Normal file → Executable file
View File

0
previousVersion/0.0.2/Manifest.toml Normal file → Executable file
View File

0
previousVersion/0.0.2/Project.toml Normal file → Executable file
View File

0
previousVersion/0.0.2/src/CommUtils.jl Normal file → Executable file
View File

0
previousVersion/0.0.2/src/interface.jl Normal file → Executable file
View File

0
src/CommUtils.jl Normal file → Executable file
View File

4
src/interface.jl Normal file → Executable file
View File

@@ -133,12 +133,12 @@ Base.@kwdef mutable struct mqttClient
retainedMsgCleared= false
keepalive::Int= 60
end
function mqttClient(kwargs::NamedTuple)
function mqttClient(mqttClientSpec::NamedTuple)
# instantiate client data struct
s = mqttClient()
for (k, v) in pairs(kwargs)
for (k, v) in pairs(mqttClientSpec)
s.:($k) = v
end