Master SIAME | Université Toulouse 3

Internet of things and System on Chip

Master SIAME | Université Toulouse 3

Internet of things and System on Chip

User Tools


Ambient systems

Welcome to the Ambient Systems of the M2Siame.

  • Electronics back2basics … a usefull when when it's time to choose components/solutions :).
  • Introduction to docker (Sébastien Binet),
  • … another introduction to docker (Alain Tchana),
  • Docker cheat sheets here and here.

Additionnaly, you can have a look to the download area.

a bit further ...


Here are some interesting links related to various topics like:


[RPi] NetworkManager and m2siame AP ...

We'll now explain how to setup 'NetworkManager' on your Raspberry Pi … to add a WiFi connexion to the SSID:m2siame

nm_setup.sh
apt-get -y install network-manager
apt-get -y install network-manager-gnome
apt-get -y remove modemmanager
 
cat > /etc/network/interfaces << EOF
# NetworkManager: minimum interfaces
# François July,16
#
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
 
auto lo
iface lo inet loopback
EOF
 
systemctl stop dhcpcd
systemctl disable dhcpcd
systemctl disable wpa_supplicant
pkill -9 wpa_supplicant
 
sed -ie '/^managed=/s/=.*/=true/g' /etc/NetworkManager/NetworkManager.conf
sed -i '/^\[main\]/a monitor-connection-files=true' /etc/NetworkManager/NetworkManager.conf
 
systemctl enable NetworkManager
reboot


In case you need CLI to NetworkManager to add a WiFi connexion:

nmcli con add con-name m2siame ifname "*" type wifi ssid m2siame
nmcli con modify m2siame wifi-sec.key-mgmt wpa-psk
nmcli con modify m2siame wifi-sec.psk <passphrase>

nmcli device wifi rescan
nmcli --wait 30 con up m2siame


To gain access to our network, you first ask for:

  • RPi's WiFi MAC addr registration in the DHCP server,
  • WiFi passphrase (teacher only).