manuals.online logo
Brands
  1. Home
  2. •
  3. Brands
  4. •
  5. Phytec
  6. •
  7. Computer Hardware
  8. •
  9. Phytec PhyBOARD-Mira i.MX6 User manual

Phytec PhyBOARD-Mira i.MX6 User manual

Quick
Start
Guide
Germany
PHYTEC Messtechnik GmbH
D-55129 Mainz
Tel.: +49 6131 9221-0
Fax: +49 6131 9221-33
www.phytec.de
www.phytec.eu
USA
PHYTEC America LLC
Bainbridge Island, WA 98110
Phone: +1 206 780-9047
Fax: +1 206 780-9135
www.phytec.com
France
PHYTEC France SARL
F-72140 Sillé le Guillaume
Phone:+33 2 43 29 22 33
Fax: +33 2 43 29 22 34
www.phytec.fr
India
PHYTEC Embedded Pvt. Ltd.
Kormangala, Bangalore
560095 Karnataka
Phone: +91 8041307589
www.phytec.in
China
PHYTEC Information Technology Co. Ltd.
Anlian Plaza, 4018 Jin Tian Road
Futian District, Shenzhen
518026 P.R. China
www.phytec.cn
L-837e_1
Carrier Board (PB-01501-1201I
phyBOARD®-Mira i.MX 6
phyBOARD®-Mira i.MX 6 HTML-Kit
Get your phyBOARD®-Mira powered up and connected in just a few simple steps.
1) Preparing the Hardware
1. Check the kit content (see overview on the right hand side).
2. Have your connection cables at hand: You need a power supply and optionally a standard
Ethernet cable. Phytec offers an accessory kit which includes these cables.
3. Power up the phyBOARD-Mira. For the 24 V-kit version (A): Connect the 2-pin PHOENIX
connector (included) to a 12 V-24 V (±10%) DC power supply.
Please note the polarity of the connectors, see picture
(A)
!
If you have bought the optional power supply with your kit, it comes already with the 2-pin connector wired.
4. Turn your power supply on and plug the 2-pin PHOENIX connector into the green jack of your kit.
The Power LED D2 will light up.
Kit Contents —phyBOARD-Mira i.MX 6 (PB-01501-005) includes:
2-pin PHOENIX
CAN and RS232 Adapter
Evaluation
Module Power Module 12 V-24 V
(PEB-EVAL-01) (PEB-POW-01)
Carrier Board
(PB-01501-1201I) 7“ Display with
capacitive Touch
Additional Equipment required
Power Adapter 5 V or 24 V Ethernet Cable
12V-24V-kit version
A
+ GND





2) Inspect the HTML5 Demo
3) Deploy your own web
project onto the board
When the board is done booting, you see an HTML5 demo on screen. You can swipe
the screen
(A)
to access different demo apps. Pushing the frame will open the demo
(B)
. You see a web app created with the Ionic 2 framework. On the LEDs demo screen,
you will see the client gui app communicating with the Node.js server app, which
provides the hardware access. In the example
(C)
the LEDs are controlled using the
libmraa GPIO interface, which accesses the Linux kernel sysfs GPIOs.
It is very easy to get started with your own project. If the content will be hosted on the
board, you can just copy the client web content to the board. It will then be displayed by
the browser engine.
Ethernet connection peer-to-peer
The Ethernet interface of the board is configured to have a fixed IP which is
192.168.3.11/255.255.255.0.This is suitable for a peer-to-peer connection to your
development machine. You can directly connect the Ethernet cable to the board.
Ethernet connection managed network
Additionally a DHCP client is running. When you connect the board to a network served
by a DHCP server, an address will automatically be requested. In that case, you need to
substitute 192.168.3.11 with the acquired address, throughout the following paragraph.
Copy your files
There are three network services running on the board: ssh, sftp and Node.js. To upload
your files, you can use sftp. There should be a sftp tool for any host OS.
Jump to the description with your OS and afterwards continue with reading section 4).
OS: Windows
You can use WinSCP, which is an open-source tool, to copy your files. Open WinSCP and
create a new sftp connection to 192.168.3.11
port 22 using the “root” user with no pass-
word
(D)
. When connecting for the first time, the ssh server on the board will create a new
random ssh key, which you need to trust
(E)
. Once the connection is established, navigate
to the directory /srv/nodejs/apps/phytec-html5-demo/www/
(F)
. The index.html file will be
provisioned by the web server. Just copy your web content to this directory, replacing the
index.html. If you don‘t have any web content at hand, you can also use this test page:
<!DOCTYPE html>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<h1>Yes!</h1>
   <p>YoucreatedyourrstWebapp.</p>
</body>
</html>
The easiest way to test the new content is to just reboot the board. Open a new terminal
with WinSCP using
Ctrl+T
, select
OK
for a separate shell session and execute
reboot (G)
.
OS: MacOS
MacOS has all the tools on board to control the embedded target. Open two Terminals
found under /Applications/Utilities, as shown in
(H)
. The first Terminal will be used to upload
a custom index.html. Navigate to the folder where the new index.html is situated using cd.
Enter sftp [email protected]1:/srv/nodejs/apps/phytec-html5-demo/www/ . Accept the
ssh certificate as trusted by typing yes. Type put index.html to upload the new file and
overwrite the pre-deployed file. In the second Terminal, open a ssh session by entering
ssh [email protected]1 and reboot the board with reboot.
OS: Linux
Linux can work exactly as the MacOS workflow, or you can just use Nautilus in Gnome (I).
Open connect to server using the URL:
sftp://[email protected]1/srv/nodejs/apps/phytec-html5-demo/www/ . After copying
your web content to the board, reboot the board using a teminal as described for MacOS.
After rebooting, you should see the new “index.html” on screen (J)
.
A
D
C
F
H
I
J
G
E
4) Redirecting the URL
Instead of providing the web content on the board, you might want to connect the board
to a network and point the web browser to an external URL. To achieve that, you can use
the previously mentioned method to connect to the board with sftp. But this time navi-
gate to /lib/systemd/system/qtwebbrowser.service. Download the file and edit it on the
host. The start URL is specified within the ExecStart setting. Its default is http://localhost.
Set the desired URL, upload the modified file back to the target and reboot the board.
Continue exploring the Development Kit
In our Demo we use the Ionic 2 framework and implement an exemplary workflow to help
you getting started with modern web app development. Please continue reading the full
documentation at: www.phytec.de/HTML5-Kit
Enjoy!




B








Other manuals for PhyBOARD-Mira i.MX6

2

Other Phytec Computer Hardware manuals

Phytec eGrabber-4plus User manual

Phytec

Phytec eGrabber-4plus User manual

Phytec PCAN-Dongle PK-001 Programming manual

Phytec

Phytec PCAN-Dongle PK-001 Programming manual

Phytec L-843e.A1 User manual

Phytec

Phytec L-843e.A1 User manual

Phytec phyCORE-i.MX 8M Mini User manual

Phytec

Phytec phyCORE-i.MX 8M Mini User manual

Phytec Cosmic-AM335 Series User manual

Phytec

Phytec Cosmic-AM335 Series User manual

Phytec phyCORE-LPC3180 Programming manual

Phytec

Phytec phyCORE-LPC3180 Programming manual

Phytec phyCORE-PXAG49 Programming manual

Phytec

Phytec phyCORE-PXAG49 Programming manual

Phytec phyFLEX-i.MX 6 User manual

Phytec

Phytec phyFLEX-i.MX 6 User manual

Phytec phyGATE Tauri-L User manual

Phytec

Phytec phyGATE Tauri-L User manual

Phytec IoT-Enablement-Kit 4 User manual

Phytec

Phytec IoT-Enablement-Kit 4 User manual

Phytec L-863e.A2 phyCORE-i.MX 8M User manual

Phytec

Phytec L-863e.A2 phyCORE-i.MX 8M User manual

Phytec phyCORE-MPC5676/57 Series User manual

Phytec

Phytec phyCORE-MPC5676/57 Series User manual

Phytec phyCORE-MPC5554 User manual

Phytec

Phytec phyCORE-MPC5554 User manual

Phytec microMODUL-8051 User manual

Phytec

Phytec microMODUL-8051 User manual

Phytec phyCORE MPC5676 Series User manual

Phytec

Phytec phyCORE MPC5676 Series User manual

Phytec phyCORE-AM62Ax User manual

Phytec

Phytec phyCORE-AM62Ax User manual

Phytec L-820e.A2 User manual

Phytec

Phytec L-820e.A2 User manual

Phytec L-1009e.A2 phyCORE-i.MX 8M Plus User manual

Phytec

Phytec L-1009e.A2 phyCORE-i.MX 8M Plus User manual

Phytec phyCORE-LPC3180 User manual

Phytec

Phytec phyCORE-LPC3180 User manual

Phytec L-1029e.A1 User manual

Phytec

Phytec L-1029e.A1 User manual

Phytec phyCORE-i.MX 8M Mini User manual

Phytec

Phytec phyCORE-i.MX 8M Mini User manual

Phytec i.MX7 PEB-D-RPI User manual

Phytec

Phytec i.MX7 PEB-D-RPI User manual

Phytec phyCORE-i.MX 8M Mini User manual

Phytec

Phytec phyCORE-i.MX 8M Mini User manual

Phytec phyCORE-LPC3250 User manual

Phytec

Phytec phyCORE-LPC3250 User manual

Popular Computer Hardware manuals by other brands

RF-Star RF-BM-ND06 instruction manual

RF-Star

RF-Star RF-BM-ND06 instruction manual

ADTRAN TRACER 6000 SERIES user manual

ADTRAN

ADTRAN TRACER 6000 SERIES user manual

ASRock Industrial CAB-601 Settings guide

ASRock Industrial

ASRock Industrial CAB-601 Settings guide

Cooler Master HYPER 212 RGB BLACK EDITION user manual

Cooler Master

Cooler Master HYPER 212 RGB BLACK EDITION user manual

Epson S1C33 Series Operation manual

Epson

Epson S1C33 Series Operation manual

RadiSys EPC-2102 P5000HX2 Series Quick reference card

RadiSys

RadiSys EPC-2102 P5000HX2 Series Quick reference card

Panasonic A210 Brochure & specs

Panasonic

Panasonic A210 Brochure & specs

Telit Wireless Solutions GL865 QUAD Hardware user's guide

Telit Wireless Solutions

Telit Wireless Solutions GL865 QUAD Hardware user's guide

VIA Technologies VAB-3000 quick start guide

VIA Technologies

VIA Technologies VAB-3000 quick start guide

Shuttle AK38 user manual

Shuttle

Shuttle AK38 user manual

Commell MP-6802 user manual

Commell

Commell MP-6802 user manual

CMS Velocity Series Hardware installation guide

CMS

CMS Velocity Series Hardware installation guide

IBASE Technology ET880 Series user manual

IBASE Technology

IBASE Technology ET880 Series user manual

Lutron Electronics Homeworks 4 Series installation instructions

Lutron Electronics

Lutron Electronics Homeworks 4 Series installation instructions

EK-Quantum Momentum ROG Rampage VI Encore user guide

EK-Quantum

EK-Quantum Momentum ROG Rampage VI Encore user guide

Renesas BP-272 user manual

Renesas

Renesas BP-272 user manual

Geeek A50 MAX installation guide

Geeek

Geeek A50 MAX installation guide

Acconeer A111 user guide

Acconeer

Acconeer A111 user guide

manuals.online logo
manuals.online logoBrands
  • About & Mission
  • Contact us
  • Privacy Policy
  • Terms and Conditions

Copyright 2025 Manuals.Online. All Rights Reserved.