วันอังคารที่ 29 ธันวาคม พ.ศ. 2558

Tutorial - How to give your Raspberry Pi a Static IP Address

To log in to your Raspberry Pi remotely, you'll need the IP of the Raspberry Pi – this is basically like your house address and tells the host computer where to look for it on the network. By default, the Raspberry Pi will be given an IP automatically by the router (called Dynamic IP and denoted by DHCP) when you connect to a network. However, this can change whenever you remove the Pi from the network e.g. turn it off.
Having a static IP isn't essential, however it will make repeated access to the Raspberry Pi via SSH much simpler, as you'll always know that the Raspberry Pi has the same address. Imagine how much trouble your postman would have if your house constantly changed location :)
This task assumes that you have the official Raspian OS release installed. This is available in the NOOBS distribution and can be downloaded from http://www.raspberrypi.org/downloads. This guide also assumes that you've connected your Pi to a network via Ethernet. If you're going to be logging into your Pi remotely for most tasks, then I recommend it's easiest and fastest to plonk it next to your router, and use ethernet to access the internet anway!
A. Checking Set Up
Boot into Raspian and log in (Username. pi, Password. raspberry), this will all be command line stuff, so no need to log in to the GUI.
First, we need to list the network interface we currently have available:
cat /etc/network/interfaces

The line . . . .
iface eth0 inet dhcp
Implies that we're currently getting out IP address via DHCP, meaning it's being dynamically registered by the router. This is what we want to change!
B. Gathering Information
Fist of all we need to grab some information from our router and Pi. There's a couple of command we need to run to get this info. Have a pen and paper handy! . . .
ifconfig

This reveals your router information, the bit you want is after eth0 (the ethernet connection). . . .
eth0      Link encap:Ethernet  HWaddr b8:27:eb:b3:fc:2c
               inet addr:192.168.1.81  Bcast:192.168.1.255  Mask:255.255.255.0
Write down the following information. . .
inet addr – 192.168.1.81 (Pi's Current IP Address)
Bcast –  192.168.1.255 (The Broadcast IP Range)
Mask –  255.255.255.0 (Subnet Mask Address)
We need a little more information before we proceed. Use the command. . .
netstat -nr
(route -n will give you the same info.)

We need:
'Gateway' Address – 192.168.1.254
'Destination' Address – 192.168.1.0
C. Editing Network Configuration
We now need to plug this information into the Pi's network configuration file using a text editor. I always use nano text editor. . .
sudo nano /etc/network/interfaces

Simply change the line that reads:
iface eth0 inet dhcp
to
iface eth0 inet static
Then directly below this line enter the following (Please Note. You will need your own addresses we gathered in Part B, more details below). . . .
address 192.168.1.81
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254
To clarify what each part means. . . .
address – The address you want to give your Pi, this can be any IP in the network range, but it's usually advisable to go higher rather than lower, or you could end up logging different devices to the same IP! I've selected 192.168.1.81, as we're already registered to that address (denoted by 'inet addr'), but this can be any IP address from the range192.168.1.1 to 192.168.1.255.
netmask – The 'Mask' address we wrote down earlier.
network – The router IP address, this is the 'Destination' Address was found earlier. You can also grab this off your router, it will say on the side somewhere.
broadcast – The 'Bcast' address we wrote down earlier.
gateway – This is the 'Gateway' address we found earlier.

So, it should look something like the above, but with your values! Remember to save before exit, CTRL+X (exit) then yes to save changes!
D. Re-check Static IP Configuration
UPDATE: Remove any existing leases
sudo rm /var/lib/dhcp/*
Then we'll need to reboot and check your changes. . .
sudo reboot
Log back in and run
ifconfig
Which should reveal your new settings. .

To double checks all is working as it should, ping your 'Gateway' Address. . .
ping 192.168.1.254 -c 10
(the -c 10 command simply denotes that you want to ping it 10 times, if you forget to add this, it will ping the address continuosly. To stop it press CTRL+C)

This should ping successfully and all packets should be recieved. If something's not right double check through all your IP addresses, and make sure you're pinging the right address too. Remember you can always revert back to DHCP by reversing the steps. The 'network' router IP address is sometimes a little fiddly, so check that if you're still having issues!
Hopefully however, your Raspberry Pi is now set up with a static IP address!

  Raspberry Pi การตั้งค่า IP Address แบบคงที่ Static

การตั้งค่า Config IP Address ให้ Raspberry Pi แบบคงที่ Static เพื่อให้ง่ายสำหรับการ Config เข้าไปใช้งาน Raspberry pi หรือเชื่อมการใช้งานเข้าในเครือข่ายของเรา

ต่อสาย HDMI จอภาพ, เมาส์ USB, คีย์บอร์ด USB, สาย LAN เชื่อมเครือข่ายและอินเตอร์เน็ต และเสียบสายไฟ 5V Micro USB

ค่า IP เริ่มต้น ของ Rspberry Pi จะเป็นแบบ dhcp (เปลี่ยนค่าอัตโนมัติตาม Router Domain) เราต้องเข้าไปใน Raspi เพื่อตั้งค่าให้เป็นแบบไอพีคงที่ static

@ ใช้คำสั่งเข้าไปตั้้งค่าเน็ตเวิร์กให้ Raspberry pi
sudo nano /etc/network/interfaces   

ตั้งค่า IP Address ให้คงที่ static

โดยใส่ค่า
================================

auto lo
iface lo inet loopback
iface eth0 inet staticaddress 192.168.1.81
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254=================================

เปลี่ยน
iface eth0 inet dhcp (ค่าตาม Router)

เป็น
iface eth0 inet static  (คงที่)

แล้วกดปุ่ม Ctrl+x แล้วกดปุ่ม y (save) แล้วกดปุ่ม Enter

 @ คำสั่งการตั้งค่า domain , nameserver
sudo nano /etc/resolv.conf

ใช้สำหรับตั้งค่า Domain เชื่อมต่ออินเตอร์เน็ตในเครือข่ายท่าน
ใช้ในกรณีเป็น eth0 inet static แบบไอพีคงที่ เท่านั้น
ถ้าตั้งค่าเป็น dhcp จะทำให้ค่า domain , nameserver ในฟล์ resolv.conf
เปลี่ยนไปตาม Router แบบ dhcp (Auto IP)
      
 ใส่ค่า domain , nameserver ในเครือข่ายเรา (ตัวอย่างนี้เป็นเครือข่ายในสำนักงาน)
เมื่อเราตั้งเป็นคงที่ static แล้ว ไฟล์ revolv.conf จะมีค่านี้ตลอดไป

ทดลอง PuTTY เข้าสู่ Raspberry Pi โดยป้อน IP Host เป็น 192.168.149.106

จะเชื่อมต่อ Raspberry Pi ได้ ดังภาพ แสดงว่าเชื่อมต่อเข้าไปได้แล้ว     

ทดสอบการ Ping เข้าสู่อินเตอร์เน็ต โดยทดลองเชื่อมเข้าเว็บ google.com

@ ใช้คำสั่ง
ping google.com

จากรูป แสดงว่าเชื่อมต่ออินเตอร์เน็ตได้สำเร็จ

เมื่อท่านรู้ IP Address ของ Raspi ก็สามารถต่อตรง Direct LAN ได้แล้ว

เปิดดูขั้นตอนได้ตามลิงค์นี้
http://dtv.mcot.net/data/up_show.php?id=1452754995&web=epost 

@ คำสั่ง ตรวจสอบดู ip network
ifconfig
   

@ คำสั่ง ตรวจสอบดู Active connection
netstat –nr    

@ คำสั่ง ตรวจสอบดู IP routing
route -n

@ คำสั่ง ตรวจสอบดู domain และ nameserver
cat /etc/resolv.conf

@ คำสั่ง ตรวจสอบดู IP และ Netmask
cat /etc/network/interfaces


ตอนบูต Raspi เราสามารถมองเห็นค่า IP ที่เชื่อมเครือข่าย ได้ที่หน้าจอ HDMI

วันจันทร์ที่ 28 ธันวาคม พ.ศ. 2558

การ Login เข้า Raspberry Pi ผ่านพอร์ต UART

การ Login เข้า Raspberry Pi ผ่านพอร์ต UART

ช่วงนี้มีเวลาทดลองและเล่นอุปกรณ์อิเล็กทรอนิกส์หลายตัว ซึ่งจริงๆตัวเองก็จบอิเล็กทรอนิกส์มาแต่ก็ไม่ได้เล่นมาหลายปี พอกลับมาเล่นอีกทีก็ต้องรื้อฟื้นกันเยอะหน่อย ทุกวันนี้อุปกรณ์อิเล็กทรอนิกส์ราคาถูกมากๆ เมื่อเทียบกับ 10 ปีที่แล้วนี้คนละเรื่องเลย วันนี้เริ่มที่การ login เข้าใช้งานตัว Raspberry-Pi กันก่อน ปกติถ้าเราจะทำการ login เข้าไปยัง Raspberry-Pi เราจะต้องต่อจอ หรือไม่ก็ต้องทราบ IP Address เพื่อจะได้ทำการ SSH เข้าไปได้ แต่วันนี้เราจะลองทำการ login ผ่านทางพอร์ต UART ของเจ้า Raspberry-Pi กันดู พอร์ตของ Raspberry-Pi ที่มีให้เราใช้งานจะมีอยู่ 2 ขาที่ทำหน้าที่เป็น Tx กับ Rx คือขาที่ 8 และ 10

จากรูปจะเห็นว่าขาที่ 8 จะทำหน้าที่เป็น Tx และขาที่ 10 จะทำหน้าที่เป็น Rx

สิ่งที่เราต้องมีในการทดลองนี้คือ Raspberry-Pi และสาย USB To UART ถ้าไม่มีก็ต้องไปหามาก่อนนะ ไม่งั้นเล่นไม่ได้และผมก็ไม่ให้ยืมด้วย ถ้าจะซื้อก็ที่นี้เลยครับ http://www.arduino.in.th/product/151/usb-to-uart-cable-pl-2303hx (ผมไม่เกียวอะไรกับเขานะ แต่ก็ซื้อมาจากที่นี้เหมือนกัน)

1. เริ่มจากทำการต่อสาย USB To UART ระหว่าง Raspberry-Pi กับ Computer โดยต่อสายแต่ละเส้นดังนี้
– สายสีแดง ต่อเข้ากับขา 2 ซึ่งจะเป็นขาจ่ายไฟ 5V จากเครื่องคอมฯ ให้ Raspberry-Pi แต่ถ้าเราต่อสายเพาเวอร์ให้ Raspberry-Pi อยู่แล้ว สายเส้นนี้ลอยไว้ไม่ต้องต่อก็ได้ครับ
– สายสีดำ ต่อเข้ากับขา 6 เป็น Ground ของระบบ
– สายสีขาว ต่อเข้ากับขา 8
– สายสีเขียว ต่อเข้ากับขา 10

2. ทำการเปิด Device Manager ขึ้นมาดูก่อนครับว่าสาย USB TO UART มันใช้พอร์ต COM หมายเลขเท่าไร ในตัวอย่างของผมเป็น COM8

3. เปิดโปรแกรม PuTTY ขึ้นมาโดยกำหนดค่าต่างๆ ดังนี้
– Connection type = Serial
– Serial line = COM8 (ถ้าของคุณเป็นพอร์ตอื่นก็ไม่ต้องใส่ตามผมนะ)
– Speed = 115200

4. เมื่อกรอกข้อมูลต่างๆเรียบร้อยและคลิก Open เราก็จะมาเจอกับหน้าล๊อกอินของ Raspberry-Pi
วิธีการติดตั้ง Qt5 บน Raspberry Pi (Jessie)
01 1
1. ติดตั้ง OS ให้กับบอร์ด Raspberry Pi
2. เชื่อมต่อบอร์ดให้สามารถเชื่อมต่อกับ Internet ได้
3. เปิดโปรแกรม Terminal บนบอร์ด Raspberry Pi ขึ้นมา
01
4. พิมพ์คำสั่ง sudo apt-get update เพื่ออัพเดทรายการสารบัญที่อยู่ของซอฟท์แวร์จาก Repository จากนั้นรอสักครู่ให้การอัพเดทเสร็จสิ้น
02
5. พิมพ์คำสั่ง sudo apt-get install qt5-default เพื่อติดตั้ง Qt 5 packet
03
6. พิมพ์คำสั่ง sudo apt-get install qtcreator เพื่อติดตั้ง Qt Creator
04
7. พิมพ์คำสั่ง sudo apt-get install build-essential g++ เพื่อติดตั้ง build-essential และ g++
05
8. พิมพ์คำสั่ง sudo apt-get install libqt5serialport5-dev เพื่อติดตั้ง Library QSerialPort สำหรับผู้ที่ต้องการใช้งาน Serial Port
06
9. เนื่องจาก Qt creator มีปัญหาบางอย่างเกี่ยวกับหน้า Welcome กับ Jessie ให้ Run โปรแกรมในครั้งแรกโดย โดยใช้คำสั่ง qtcreator -noload Welcome
07
(ขอบคุณคำแนะนำจากคุณ Sarawut Phetsilp กลุ่ม Raspberry Pi Thailand ในการแก้ปัญหาไม่สามารถ Run Qtcreator บน Jessie)
10. เข้าไปปิด ไม่ให้มีการโหลดหน้า Welcome ตอนเปิดโปรแกรม
>> เข้าไปที่ Menu Help >> About Plugins…
08
>> ค้นหาหัวข้อ Qt Creator แล้วเอาเครื่องหมายถูกออกจาก Welcome
09
>> กด Button Close แล้วปิดโปรแกรม
11. ทดลอง Run Qt Creator โดยพิมพ์ qtcreator
10
12. Add Compiler
>> หลังจากเข้าโปรแกรม Qt Creator มาแล้วให้ไปที่ Menu Tools >> Options
11
>> เลือกหัวข้อ Build & Run และเลือกที่ tab Compiler
12
>> คลิกที่ Button Add เลือก GCC
13
>> ตั้งค่า Compiler path โดยกด Button Browser และเลือก Browse ไปที่ File System >> /usr/bin/arm-linux-gnueabihf-gcc-4.9
14
>> กด Button Apply
15
>> ไปที่ Tab Kits แล้วเลือกที่ Desktop(default) ตั้งค่า Compiler เป็น GCC
16
>> คลิก Apply และ OK
13. ทดลอง สร้าง Application
>> ไปที่ Menu File >> New File or Project…
17
>> เลือก Qt Widgets Application และ คลิก Button Choose
18
>> ตั้งชื่อ Project และ เลือก path ที่เก็บ Project
19
>> เลือก Kit
20
>> ตั้งค่า class
21
>> ตั้งค่า Project Management
22
>> ทดลองสร้าง UI โดยไปที่ หน้า Design
23
>> ทดลอง นำเอา Dial และ LCD Number มาวาง
24
>> คลิกเลือก menu Edit Signals /Slots หรือ กด F4
25
>> drag mouse ลาก Signal ของ Dial ไปยัง Slot ของ LCD Number
26
>> ตั้งค่า ให้นำเอา Signal ValueChange(int) จาก Dial ส่งไปยัง Slot display(int ) ของ LCD Number แล้วกด Button OK
27
>> ทดลอง Run Program
28
>> ทดลองหมุน Dial จะทำให้ค่า value ไปปรากฏที่ LCD Number
29

Remote Desktop on Raspberry pi with xrdp



 จะดีแค่ไหนถ้าสามารถ Login เข้า Raspberry Pi ผ่านทางโปรแกรม Remote Desktop ของ Windows ได้  มาเริ่มติดตั้งแพคเกจต่างๆ กันครับ.
 

1. ติดตั้ง Remote Desktop ด้วย xrdp

    
          1.1 เริ่มต้นติดตั้ง xrdp
 
            
                      sudo apt-get install xrdp
 
เมื่อติดตั้งเสร็จแล้วสามารถ เข้าไปตั้งค่าได้ที่ ไฟล์ /etc/xrdp/xrdp.ini โดยใช้คำสั่ง


                    sudo nano /etc/xrdp/xrdp.ini

 หลังจากที่เราติดตั้งเสร็จแล้วเราควรที่จะ Fixed IP ด้วยเพื่อที่ไม่ให้ IP เราเปลี่ยนไปมาครับ
 และถ้าเราต้องการจะ Remote จากข้างนอกได้แต่ internet เราเป็น ADSL ที่มี IP จริง เปลี่ยนไปมา เราสามารถแก้ไขปัญหาได้โดยการทำ DDNS ครับ
 
          1.2 ทดสอบการ Remote
 
รันโปรแกรม Remote Desktop Connection ที่มีใน Windows
 
ทดสอบการ Remote Desktop
 
เมื่อเข้าหน้าจอ Remote แล้วให้ ใส่ User และ Password โดยค่า Default ของ บอร์ด Raspberry pi    User:pi  Password:raspberry
 
xrdp remote x windows
 
กดปุ่ม OK จะเข้าสู่หน้าจอ X window ของ Debian Linux บนบอร์ด Raspberry