doolhofx
doolhofx
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
I will look into that! Seeing what they explain on their site and git seems hopefull
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
We have P1-meters, you can plug them into your smart meter and they are connected to an app (Homewizard) for example
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
But for example I have a small cheap IP camera that I can view on my phone using the app from anywhere in the world. Or a power meter app, solar panel app etc How do these companies do that? Is that also reverse proxy or would that be working different? You have to setup those devices once and then they keep working.
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
For now it could work with port forwarding because I am testing in my own netwerk. But for the future I want it to work in other networks without a lot of work.
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
This device will be in someone else's LAN network and I don't want to get into their router
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
I guess something like that isn't possible without a reverse proxy server? Because I can't install that on my client device, so I would need an extra device for that.
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
That was a really stuipid question
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
Oooh
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
Maybe dumb question but what is CF?
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
Thank you both! I will look into both. I have to setup a reverse proxy server on my client side then, right?
34 replies
CC#
Created by doolhofx on 3/22/2024 in #help
Access my home device from outside the LAN network with me maui app
Is there any other alternatives? Or do you think reverse proxy would be the way to go?
34 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
Oke, thanks I will try it
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
No description
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
Yea I guess so. Maybe I look into ending it with pressing the button again
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
what is FNF?
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
I know, haha. Probably not super clean
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
Got it working now, don't know how clean it is but well.
private async void brnReadHolding_Clicked(object sender, EventArgs e)
{
using PeriodicTimer timer =
new(TimeSpan.FromMilliseconds(1000));
while (await timer.WaitForNextTickAsync())
{
//Code to execute
}
private async void brnReadHolding_Clicked(object sender, EventArgs e)
{
using PeriodicTimer timer =
new(TimeSpan.FromMilliseconds(1000));
while (await timer.WaitForNextTickAsync())
{
//Code to execute
}
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
Uuh yea I got a PLC that also is a Modbus TCP slave (Server). I want to read data from that slave, so I have programmed a Modbus Master (client) in C# maui that works fine, but depends on the button click to read and write data from the PLC (slave). Now making it read/write every, for example, 1 second makes it easier to have a live view of what is happening
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
Oke, no problem I understand it
67 replies
CC#
Created by doolhofx on 3/16/2024 in #help
Run code cyclical
That is way more simpel haha
67 replies