Can you use nRF9160 as a server listening to some port?
Can you use nRF9160 as a server listening to some port?
Hi,
Yes, you can do that. bind(), then call listen(). Search for "socket server example", and you should find many examples on how to do this.
Note that this isn't a very low power approach, as you're going to spend alot of time in RX mode.
Kind regards,
Håkon
Hi,
Yes, you can do that. bind(), then call listen(). Search for "socket server example", and you should find many examples on how to do this.
Note that this isn't a very low power approach, as you're going to spend alot of time in RX mode.
Kind regards,
Håkon
Thanks. I'm looking for a way to receive data with low power. So this is not a good approach