Pl2303 Os X Drivers

  1. Pl2303 Os X Drivers Update
  2. Pl2303 Os X Drivers Downloads
  3. Pl2303 Os X Drivers Windows 10

Prerequisities

  • Raspberry Pi
  • SD Card with Raspberry Pi Image Installed (see below for instructions)
  • USB To Serial Cable
  • Computer (PC/Mac/Linux OK, driver installation required)
Drivers

Installing Raspberry Pi OS to SD card

If you do not already have an SD card with a Raspberry Pi image on it, you will need to follow these instructions. The SD cards that come with the class materials are preloaded, so you can skip this section.

  1. Download an image, such as one from the Raspberry Pi downloads page.
  2. Copy image to card. Do NOT copy & paste, as it will not work! You must use a 'helper' application such as Win32DiskImager, PiFiller, or dd.

    1. For Windows:
      1. Insert your SD Card into your computer.
      2. Download Win32DiskImager from http://sourceforge.net/projects/win32diskimager/
      3. Once the download is complete, install Win32DiskImager using the downloaded file.
      4. Start Win32DiskImager from the start menu.
      5. Click the folder icon to select the Raspberry Pi image.
      6. Click the 'Device' dropdown box to select the Raspberry Pi SD card. You can check 'My Computer' to find the correct drive letter.
      7. Click the 'Write' button and wait for the process to complete
    2. For OS X:
      1. Download PiFiller from http://ivanx.com/raspberrypi/
      2. Make sure your SD card is not inserted in your computer. If needed, eject and remove the SD card until instructed to insert it by Pi Filler.
      3. Click 'Continue'
      4. Select your downloaded Raspberry Pi Image
      5. Insert your SD card and click 'Continue'
      6. Wait for your SD card to be found and then click 'OK' when prompted.
      7. Wait for the download to complete. This might take as long as 20-25 minutes to finish.
    3. For Linux
      1. See instructions from eLinux.org

Started in 2006 as an open source project to enable Atmel AVR programming for OS X, helping thousands of users. We now offer well maintained drivers for the CP2102, CH341 and PL2303 chips. The drivers are built on years of driver programming experience and customer feedback. Install driver before plug the μ-Interface in the PC usb socket. NOTE: No need to install drivers for following: Linux Kernel 2.4.31 and above already includes built-in drivers for PL-2303 (VID067B&PID2303). NOTE: Google Android OS is also based on Linux kernel so it also includes PL2303 drivers.

  1. Version: XP/Vista and 64-Bit OS PL-2303 USB to Serial Bridge (H, HX, X) Installshield Driver Setup Program v3.3.3.114 for Windows Vista and Server 2008 (32-bit and 64-bit) v2.0.5.111 for Windows 2K/XP/2003 (32-bit) for Prolific USB VID067B&PID2303 Only. DriverInstaller v Release Date: 2005/8/11 PL-2303 USB to Serial Bridge (H, HX, X.
  2. Prolific PL2303 OS X Driver Insert SD card into Raspberry Pi. The label of the card should be facing out, so you can read the words (away from the Raspberry Pi). Connect the Ethernet cable from the Raspberry Pi to the network switch.

Initial Setup

Pl2303 Os X Drivers Update

  1. Install driver:Please install the following driver (and software) as appropriate for your operating system:
  • Windows 8 : NOT SUPPORTED.
  • Windows XP/Windows 7:
  • OS X Lion (10.7+):
  • OS X (10.6 and below):

Pl2303 Os X Drivers Downloads

  1. Insert SD card into Raspberry Pi. The label of the card should be facing out, so you can read the words (away from the Raspberry Pi).
  2. Connect the Ethernet cable from the Raspberry Pi to the network switch.
  3. Connect the USB Serial Cable to the Raspberry Pi Port1 as follows.
    1. P01-1 is the pin closest to the Micro-USB Power connector.
    2. P01-2 is the pin adjacent to the outside of the board.
      1. GPIO P01-2 -> Red (+5V)
      2. GPIO P01-6 -> Black (0V)
      3. GPIO P01-8 -> White (RX)
      4. GPIO P01-10 -> Green (TX)
  4. Plug USB connector into your computer's USB port
  5. Connect to the Raspberry Pi over the serial port
    1. Linux: At the command line run sudo screen /dev/ttyUSB0 115200. Note: If /dev/ttyUSB0 does not work, run dmesg to check where the USB adapter was detected.
    2. OS X: As the command line, run: sudo screen /dev/cu.PL2303-000012FD 115200. The USB to Serial device will likely be detected at a different address, so try using tab completion (hit the key) after entering /dev/cu.PL2303
    3. Windows: First, determine the COM Port number. This may be displayed as a system notification when you connect the USB device.
      1. Otherwise, you will need to check Windows Device Manager. To access Device Manager, click on the Start Orb and enter “Device Manager” in the Search box. Then scroll down to Ports and note the COM port associated with the USB to Serial Adapter.
      2. Open PuTTy and enter the settings as below, using the correct COM Port you determined before.
      3. Click Open to Connect
  6. You should see a text scrolling by while the Rasperry Pi boots up. The login prompt may take several minutes to appear. If you miss the boot sequence, you may need to hit the Enter key several times for the login prompt to appear.Login with:You may change the password now if you wish to do so, by running passwd
  7. Set the hostname to something unique (some variation on your name or email works well).
    1. Run sudo nano /etc/hostnameChange “raspberrypi” to whatever you want your hostname to be.
    2. Run sudo nano /etc/hostsChange the line from: to:
  8. Determine the IP Address of your Raspberry Pi. You’ll use it later to connect over ssh or web browser. Run ip addr show eth0 and note the IP address shown to the right of the word “inet”:In this example the IP Address is 192.168.1.102

Connecting via SSH

Pl2303 Os X Drivers

1) At an OS X or Linux command line, run:ssh <ip address from step 9> -l pi

2) On Windows, start PuTTY and set the options as follows (replacing with raspberrypin.local or your IP address):

3) Click Open to connect

Pl2303 Os X Drivers Windows 10

Connecting via VNC (optional)

1) Install VNC server by running:sudo apt-get install tightvncserver

2) Start a VNC Server by running:vncserver :1 –geometry 1920x1080 –depth 24

DriversPl2303 Os X Drivers

3) Use VNC Viewer, TightVNC, Chicken of the VNC to connect to your Raspberry Pi using the IP address above and port 5900

Appendix A: Wi-Fi Setup

Requires USB Wifi dongle

1) Open a text editor by running:sudo nano /etc/network/interfaces2) Make the contents of the file as follows:3) Save and exit the file by hitting Control-X, then Yes4) Run:sudo ifdown wlan0 && sudo ifup wlan05) If all goes well, you can obtain the ip address by running:ip addr show wlan0