VOOZH about

URL: https://www.nuget.org/packages/MakoIoT.Device.Services.WiFi/

⇱ NuGet Gallery | MakoIoT.Device.Services.WiFi 1.0.90.40826




MakoIoT.Device.Services.WiFi 1.0.90.40826

dotnet add package MakoIoT.Device.Services.WiFi --version 1.0.90.40826
 
 
NuGet\Install-Package MakoIoT.Device.Services.WiFi -Version 1.0.90.40826
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MakoIoT.Device.Services.WiFi" Version="1.0.90.40826" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MakoIoT.Device.Services.WiFi" Version="1.0.90.40826" />
 
Directory.Packages.props
<PackageReference Include="MakoIoT.Device.Services.WiFi" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MakoIoT.Device.Services.WiFi --version 1.0.90.40826
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MakoIoT.Device.Services.WiFi, 1.0.90.40826"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MakoIoT.Device.Services.WiFi@1.0.90.40826
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MakoIoT.Device.Services.WiFi&version=1.0.90.40826
 
Install as a Cake Addin
#tool nuget:?package=MakoIoT.Device.Services.WiFi&version=1.0.90.40826
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Mako-IoT.Device.Services.WiFi

Manages WiFi connections and interfaces.

Usage

Connect to WiFi network (STAtion mode)

Add WiFi configuration in DeviceBuilder

public static void Main()
{
 DeviceBuilder.Create()
 .AddWiFi()
 .AddConfiguration(cfg =>
 {
 cfg.WriteDefault(WiFiConfig.SectionName, new WiFiConfig
 {
 Ssid = "MyWiFiNetwork",
 Password = "MyWiFiPassword"
 });
 })
 .AddFileStorage()
 .Build()
 .Start();

 Thread.Sleep(Timeout.Infinite);
}

Use INetworkProvider to connect to thew network

public class MyAppService : IMyAppService
{
 private readonly INetworkProvider _networkProvider;
 private readonly ILogger _logger;

 public MyAppService(INetworkProvider networkProvider, ILogger logger)
 {
 _networkProvider = networkProvider;
 _logger = logger;
 }

 public void DoSomeNetworking()
 {
 if (!_networkProvider.IsConnected)
 {
 _logger.LogDebug("Network not connected");
 _networkProvider.Connect();
 if (!_networkProvider.IsConnected)
 throw new Exception("Could not connect to network");
 }

 _logger.LogDebug("Connected to WIFI");
 
 //[...]
 }
}
Product Versions Compatible and additional computed target framework versions.
.NET Framework net net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MakoIoT.Device.Services.WiFi:

Package Downloads
MakoIoT.Device.Platform.LocalConfig

MAKO-IoT Platform local configuration library. On-device web server, WiFi AP

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.90.40826 283 9/28/2025
1.0.89.9435 168 9/27/2025
1.0.88.56973 266 9/3/2025
1.0.87.52823 805 4/25/2025
1.0.86.43045 277 4/24/2025
1.0.85.14079 464 4/17/2025
1.0.83.51874 440 4/2/2025
1.0.82.31546 533 3/20/2025
1.0.80.59303 352 3/12/2025
1.0.79.15391 539 3/3/2025
1.0.78.62238 338 2/27/2025
1.0.76.36463 391 2/20/2025
1.0.75.54666 321 2/18/2025
1.0.74.30059 407 11/28/2024
1.0.73.53555 220 11/27/2024
1.0.72.30577 229 11/26/2024
1.0.71.57505 235 11/25/2024
1.0.70.14151 230 11/19/2024
1.0.69.49339 377 10/18/2024
1.0.68.49698 219 10/16/2024
Loading failed