https://github.com/abelits/flashair-download now supports Transcend Wi-Fi card. In its default mode, Transcend card uses the same model as the default mode of FlashAir, card acts as an access point, transfer is performed using HTTP.
# # Network interface for wifi connection # WLANIF="wlan0"
No longer it points to default WiFi interface? And even more to it: no longer fixed interface name. The code I develop interfaces with Network Manager via DBus to find the right interface to work with.
The whole point is that it does not have to be the default interface. It has to disconnect from whatever it was connected to, so if the user does not want to lose his connection, he can plug a separate USB wi-fi adapter, and use it exclusively for the camera(s).
It should be possible to just add some code that would set it to default if it is not defined, if that's a useful feature.
> The code I develop interfaces with Network Manager via DBus to find the right interface to work with.
It does talk through DBus -- but since I am trying to limit myself to shell scripts, nmcli does all the talking,
Comments 2
# Network interface for wifi connection
#
WLANIF="wlan0"
No longer it points to default WiFi interface? And even more to it: no longer fixed interface name. The code I develop interfaces with Network Manager via DBus to find the right interface to work with.
Reply
It should be possible to just add some code that would set it to default if it is not defined, if that's a useful feature.
> The code I develop interfaces with Network Manager via DBus to find the right interface to work with.
It does talk through DBus -- but since I am trying to limit myself to shell scripts, nmcli does all the talking,
Reply
Leave a comment