Upgrade Raspberry Pi software
sudo apt-get updatesudo apt-get upgradesudo apt-get dist-upgradelsusbiw listSee if exits Mode:AP it is an access point compatible router
Install this packs
sudo apt-get install isc-dhcp-server hostapdConfig DHCP Server
sudo cp /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.origsudo nano /etc/dhcp/dhcpd.conf#option domain-name "example.org";#option domain-name-servers ns1.example.org, ns2.example.org;authoritative;Add
subnet 192.168.2.0 netmask 255.255.255.0 {range 192.168.2.2 192.168.2.30;option broadcast-address 192.168.2.255;option routers 192.168.2.1;default-lease-time 600;max-lease-time 7200;option domain-name "local";option domain-name-servers 8.8.8.8, 8.8.4.4;}sudo cp /etc/default/isc-dhcp-server /etc/default/isc-dhcp-server.origsudo nano /etc/default/isc-dhcp-serverINTERFACES="wlan0"sudo cp /etc/network/interfaces /etc/network/interfaces.origsudo nano /etc/network/interfacesauto loiface lo inet loopbackiface eth0 inet dhcpallow hotplug wlan0iface wlan0 inet staticaddress 192.168.2.1netmask 255.255.255.0sudo ifconfig wlan0 192.168.2.1Config Access Point
sudo cp /etc/hostapd/hostapd.conf /etc/hostapd/hostapd.conf.origsudo nano /etc/hostapd/hostapd.confinterface=wlan0ssid=RaspiAPhw_mode=gchannel=6macaddr_acl=0auth_algs=1ignore_broadcast_ssid=0wpa=2wpa_passphrase=passwordwpa_key_mgmt=WPA-PSKwpa_pairwise=TKIPrsn_pairwise=CCMPsudo cp /etc/default/hostapd /etc/default/hostapd.origsudo nano /etc/default/hostapdDAEMON_CONF="/etc/hostapd/hostapd.conf"Config to route traffic
sudo cp /etc/sysctl.conf /etc/sysctl.conf.origsudo nano /etc/sysctl.confnet.ipv4.ip_forward=1sudo sysctl -p /etc/sysctl.confEnable NAT
sudo iptables -t nat -A POSTROUTING -j MASQUERADEConfig startup
sudo update-rc.d hostapd enablesudo update-rc.d isc-dhcp-server enablesudo mv /usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service /home/pipi@raspberrypi:~/Sunfounder_Smart_Video_Car_Kit_for_RaspberryPi/html_server $ sudo python manage.py runserver 0.0.0.0:8000Request Method:GETRequest URL:http://192.168.2.1:8000/Using the URLconf defined in html_server.urls, Django tried these URL patterns, in this order:^admin/^motor/forward^motor/backward^motor/stop^camera/increase/y^camera/decrease/y^camera/increase/x^camera/decrease/x^camera/home^motor/set/speed/(\d{1,3})^turning/(\d{1,3})^calibrate/getconfig^runmode^calibrationmode^calibrate/turning/(.)/(\d{1,3})^calibrate/motor/run^calibrate/motor/stop^calibrate/motor/left/reverse^calibrate/motor/right/reverse^calibrate/confirm^calibrate/pan/(.)/(\d{1,3})^calibrate/tile/(.)/(\d{1,3})^test/(.)/(\d{0,3})^client/The current URL, , didn't match any of these.See a html client like the image :