Does Intel NUC Wifi chip works with resin-wifi-connect?

Hmm, maybe my original diagnosis was correct :slight_smile:

Please can you run the commands below (via the dashboard terminal) on the device and post the results here?

$ export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket
$ dbus-send --system            \
  --dest=org.freedesktop.DBus \
  --type=method_call          \
  --print-reply               \
  /org/freedesktop/DBus       \
  org.freedesktop.DBus.ListNames

Network manager should be listed - for reference I have included the expected output below from a Raspberry Pi

root@dee0260:/usr/src/app# export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket
root@dee0260:/usr/src/app# dbus-send --system            \
>   --dest=org.freedesktop.DBus \
>   --type=method_call          \
>   --print-reply               \
>   /org/freedesktop/DBus       \
>   org.freedesktop.DBus.ListNames
method return sender=org.freedesktop.DBus -> dest=:1.16 reply_serial=2
   array [
      string "org.freedesktop.DBus"
      string "org.freedesktop.login1"
      string ":1.8"
      string ":1.9"
      string "org.freedesktop.systemd1"
      string "org.freedesktop.Avahi"
      string "org.freedesktop.PolicyKit1"
      string "org.freedesktop.ModemManager1"
      string ":1.11"
      string "org.freedesktop.NetworkManager"
      string ":1.12"
      string ":1.13"
      string ":1.0"
      string ":1.1"
      string ":1.2"
      string ":1.16"
      string ":1.3"
      string "fi.epitest.hostap.WPASupplicant"
      string ":1.4"
      string "fi.w1.wpa_supplicant1"
      string ":1.5"
   ]

Thanks

For some unknown reason, it appears to be working now,

05.06.17 16:45:50 (+0200) Clear is disabled
05.06.17 16:45:50 (+0200) Device type is intel-nuc
05.06.17 16:45:50 (+0200) Using NetworkManager.service
05.06.17 16:45:53 (+0200) Credentials not found
05.06.17 16:45:59 (+0200) Starting hotspot
05.06.17 16:45:59 (+0200) Stopping NetworkManager.service
05.06.17 16:46:01 (+0200) Starting hostapd..
05.06.17 16:46:01 (+0200) Starting dnsmasq..
05.06.17 16:46:01 (+0200) Started hotspot

though network manager does not seem to be listed when I run the command :thinking:

root@06d0cd8:/usr/src/app# export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket
root@06d0cd8:/usr/src/app# dbus-send --system --dest=org.freedesktop.DBus --type=method_call --print-reply /org/freedesktop/DBus org.freedesktop.DBus.ListNames
method return sender=org.freedesktop.DBus -> dest=:1.24 reply_serial=2
   array [
      string "org.freedesktop.DBus"
      string "org.freedesktop.login1"
      string ":1.8"
      string ":1.9"
      string "org.freedesktop.systemd1"
      string "org.freedesktop.Avahi"
      string "org.freedesktop.PolicyKit1"
      string "org.bluez"
      string "org.freedesktop.ModemManager1"
      string ":1.11"
      string ":1.12"
      string ":1.24"
      string ":1.13"
      string ":1.0"
      string ":1.14"
      string ":1.1"
      string ":1.2"
      string ":1.3"
      string ":1.17"
      string "fi.epitest.hostap.WPASupplicant"
      string ":1.4"
      string "fi.w1.wpa_supplicant1"
   ]

Cool, good news!

If you do manage to figure out how to reproduce I would love to know!

Thanks