PiXtend with CODESYS Digital-Analog-Converter

Size: px
Start display at page:

Download "PiXtend with CODESYS Digital-Analog-Converter"

Transcription

1 PiXtend with CODESYS Digital-Analog-Converter Creating a new CODESYS Project Adding PiXtend DAC as a CODESYS Device Creating a simple DAC Test Program Creating a simple Web Visualization Date 18/08/2016, V1.01 Qube Solutions UG (haftungsbeschränkt) Arbachtalstr. 6, Eningen, GERMANY Copyright by Qube Solutions UG (haftungsbeschränkt) 1 / 21

2 Table of Contents 1. Introduction General Notes Copyright of Text and Pictures: Warning Applications for PiXtend Disclaimer Prerequisites Step by Step to the first PiXtend DAC Program Create a CODESYS standard project for PiXtend Add SPI Device Add PiXtend_DAC device Create Global Variable List Mapping of Variables Task Configuration Creating the Main Program Connecting to the PiXtend and performing a program download Creating the CODESYS Webvisu Copyright by Qube Solutions UG (haftungsbeschränkt) 2 / 21

3 1. Introduction This manual describes all necessary steps to create a new PiXtend DAC project ( in CODESYS ( You will learn how to use the PiXtend Digital-Analog-Converter as a CODESYS device. With the PiXtend_DAC device you can control both analog outputs on the PiXtend board. The Application Note PiXtend with CODESYS Create Project describes how the rest of the PiXtend's inputs and outputs can be used. The following three main software components will be used: CODESYS is the leading hardware-independent IEC automation software for developing and engineering controller applications. It is developed and maintained by the company 3S-Smart Software Solutions in Kempten, GERMANY To program a Raspberry Pi using CODESYS, a special Raspberry Runtime Extension for CODESYS is required. The Raspberry Pi Runtime Extension is also developed by the company 3S- Smart Software Solutions in Kempten, GERMANY In order to gain direct access to the IO Hardware and interfaces on the PiXtend Board from CODESYS, the PiXtend for CODESYS device drivers are required. The device drivers are provided by the company Qube-Solutions UG (haftungsbeschränkt), Eningen, GERMANY This manual assumes that the three Software components have already been installed correctly. If you have not installed them yet, please refer to the Application Note PiXtend with CODESYS Installation on how to do so. Copyright by Qube Solutions UG (haftungsbeschränkt) 3 / 21

4 1.1 General Notes Copyright of Text and Pictures: Text and pictures marked with "(3S)" belong to 3S-Smart Systems GmbH in Kempten, Germany Text and pictures marked with "(RPI)" belong to the Raspberry Pi Foundation Text and pictures which are not marked, or marked with "(QS)" belong to Qube Solutions UG in Eningen, Germany Warning PiXtend must not be used in safety critical systems. Check prior to use the suitability of Raspberry Pi and PiXtend for your application and environment Applications for PiXtend The PiXtend can be used for private and commercial projects, such as: 1.2 Disclaimer Home Automation, Smart Home Evaluation of sub-systems, Proof of Concept, pre-series, series Learning and Teaching platform for control systems and automation Learning and Teaching platform for microcontroller hard- and software techniques HAM-Radio, DIY and Maker Applications Qube Solutions UG and 3S-Smart Software Solutions can not be held responsible for any potential harm or damage to software, hardware, equipment or connected components, caused by the usage of provided software, drivers or hardware products. Copyright by Qube Solutions UG (haftungsbeschränkt) 4 / 21

5 2. Prerequisites This manual assumes that you have read the Application Note PiXtend with CODESYS Installation and that the three components CODESYS, CODESYS Control for Raspberry Pi, and PiXtend for CODESYS have been successfully installed. For hard- and software requirements please refer to the Application Note PiXtend with CODESYS Installation Copyright by Qube Solutions UG (haftungsbeschränkt) 5 / 21

6 3 Step by Step to the first PiXtend DAC Program 3.1 Create a CODESYS standard project for PiXtend Start the CODESYS Environment. Create a new Project by clicking on Main Menu File New Project (Shortcut Ctrl-N). Select "Standard project" from the category "Projects", choose a project name and location (here "D:\Projects\PiXtendTestDAC") and press OK. Select "CODESYS Control for Raspberry Pi" as the device, and select "Continuous Function Chart (CFC)" as the program language for the main program PLC_PRG. Copyright by Qube Solutions UG (haftungsbeschränkt) 6 / 21

7 You will now see blank CODESYS standard project with the following structure: Copyright by Qube Solutions UG (haftungsbeschränkt) 7 / 21

8 3.2 Add SPI Device In the project tree, right click on the SPI item and select Add Device Copyright by Qube Solutions UG (haftungsbeschränkt) 8 / 21

9 Select "SPI master" and click the Button "Add Device". In the project tree a new SPI sub entry was created, named "SPI_master (SPI Master)". Copyright by Qube Solutions UG (haftungsbeschränkt) 9 / 21

10 As the PiXtend_DAC is connected to the Raspberry Pi via SPI-Port 0.1, we will have to adapt the SPI master's parameters. Double-click on the item SPI_master and change the SPIport Parameter to /dev/spidev0.1 : NOTE: If you want to use the PiXtend device as well as the PiXtend DAC device in the same project, make sure that each device is added to a separate SPI Master (see also Demo Project). PiXtend always uses /dev/spidev0.0 and PiXtend DAC always uses /dev/spidev0.1 Copyright by Qube Solutions UG (haftungsbeschränkt) 10 / 21

11 3.3 Add PiXtend_DAC device Select the SPI_master item in the project tree and add another device. (right-click Add Device). In the vendor drop-down please select the entry Qube Solutions UG", and select the Device "PiXtend DAC" (not PiXtend). Click on the Add Device button and finally the Close button. Now you can see that the PiXtend DAC appears as a device under "SPI_master (SPI Master)". Copyright by Qube Solutions UG (haftungsbeschränkt) 11 / 21

12 A double-click onto PiXtend_DAC in the device tree will open the configuration section for the device. In the tab SPI devices I/O Mapping you can see the two analog outputs of the PiXtend DAC that are accessible from CODESYS. In order for the process image being exchanged periodically, you will have to make two changes here: Please select "Enabled 1 (use bus cycle task if not used in any task) and for the bus cycle task select Main Task. At a later point when you are online to the controller, you could come back to this tab to directly force output values for testing purposes. As we want to access the two analog outputs from our main program and/or the visualization, in the next step we are going to create a Global Variable List (GVL) to be able to assign global variables to the outputs. 3.4 Create Global Variable List In the project tree perform a right-click on "Application", click Add Object and add a new Global Variable List with the name "GVL". Copyright by Qube Solutions UG (haftungsbeschränkt) 12 / 21

13 Now open the GVL and add the following code: //Analog Outputs raout0: REAL; raout1: REAL; Copyright by Qube Solutions UG (haftungsbeschränkt) 13 / 21

14 3.5 Mapping of Variables Now that we have created the required variables in the GVL, we will have to map them, which in this case means assigning them to their respective PiXtend DAC outputs. Therefore please open the already familiar tab "SPI devices I/O mapping" by double clicking the PiXtend DAC device. Expand the "Analog Out" section and assign the two variables. Double-click into an empty row and three dots ( ) will appear. Clicking on the three dots will open the input assistant, where we can now select the desired variables: Please select variable Application.GVL.rAOut0 for AnOut0 Please select variable Application.GVL.rAOut1 for AnOut1 Copyright by Qube Solutions UG (haftungsbeschränkt) 14 / 21

15 Finally the GPIO24 Bit of the Raspberry Pi has to be configured as an output. Open the Raspberry Pi GPIO configuration tab by double-clicking onto GPIOs_A_B in the project tree. On the GPIO Parameters tab change to Output for GPIO24. After that please switch to the tab GPIOs I/O Mapping and assign rpi_gpio24 for Output Bit24. Copyright by Qube Solutions UG (haftungsbeschränkt) 15 / 21

16 3.6 Task Configuration If desired you can change the cycle time of the Main Task. To do so please click on Task Configuration MainTask. With the PiXtend_DAC (Version >= ) it is possible to reduce the cycle time down to t#1ms. For this project the default cycle time of 20 ms is fast enough. 3.7 Creating the Main Program Double Click PLC_PRG in the project tree to bring up the editor. For the main program "PLC_PRG" we already chose to use "Continuous Function Chart" when we created the CODESYS Project at the beginning of this manual. CFC (Continuous Function Chart) is a graphical programming language. Please drag a Input Block from the toolbox (right) and drop it in the workspace. Do the same with an Output block and connect both. Click in the center of a block to assign a variable or constant, as shown below. A click on the three dots ( ) will bring up the Input Assistant. You can either type in the variable name, use auto completion (Ctrl-Spacebar), or select from Input Assistant. This is it. To build the project please click Build Build in the main menu bar. Copyright by Qube Solutions UG (haftungsbeschränkt) 16 / 21

17 3.8 Connecting to the PiXtend and performing a program download Once the program compiles without errors, double-click on "Device (CODESYS Control for Raspberry)" in the project tree and then click the Scan Network button. CODESYS now searches the local network for a Raspberry Pi with the CODESYS Raspberry Pi Runtime on it. If your device does not appear here, please check the following things: Are you using the correct SD Card Image which has the CODESYS Runtime Extension installed on it? You can download a preconfigured PiXtend CODESYS Image from our download section ( To create your own CODESYS Image please refer to the manual included in the CODESYS Control for Raspberry Pi package provided by 3S. Is the Raspberry Pi powered on? Did it obtain a valid IP, which you can ping from your local machine? (via ping from the windows command line) If you don't know the IP, you can use the command ifconfig from the Raspberry Pi command line. If you can see a valid IP here, but you are not able to ping it, check your network connections to the Raspberry Pi. Notice: if the Raspberry Pi has been powered up for more than 2 hours, the CODESYS Runtime Extension stops working, unless you have licensed it. After a reboot (sudo shutdown -r now) it will work for another 2 hours. If the Raspberry Pi appears in the list, please select it and click Online Login in the main menu bar to go online and perform a download of the program. Copyright by Qube Solutions UG (haftungsbeschränkt) 17 / 21

18 4 Creating the CODESYS Webvisu Now we want to add a simple visualization for our project, so that we can control the analog outputs with two sliders from any PC or smartphone / tablet on the network. To add a visualization, right-click on Application Add Object Visualization in the project tree. CODESYS now automatically adds the "Visualization-Manager" and a new "Visualization" Object. The manager can be used to change visualization properties, like the default visualization, update rate, URL, etc.. Change the Scaling options to Isotropic : Copyright by Qube Solutions UG (haftungsbeschränkt) 18 / 21

19 To open the visualization editor, please double-click the "Visualization" object in the project tree. CODESYS comes with a bunch of predefined controls which we can be used out of the box. Open the toolbox, select Common controls and drag 2 sliders into the workspace. Add 2 labels and assign the respective variable name to the sliders Variable property (GVL.rAOut0, GVLrAOut1). Change the property Scale end for both sliders to 10 : Copyright by Qube Solutions UG (haftungsbeschränkt) 19 / 21

20 Add two text fields from the toolbox and enter %2.1f for the "Text" property. This will create a placeholder for a REAL Variable with two digits before and one after the decimal point. Assign the value GVL.rAOut0 to the Text variable property of the first slider and GVL.rAOut1 to the second. Finally we add a caption and an animated CODESYS Logo ( Waiting cube symbol from the Special controls tab) and arrange the elements nicely. Copyright by Qube Solutions UG (haftungsbeschränkt) 20 / 21

21 Compile the project (Build->build) and perform a full download. Press F5 to enter RUN Mode. Open a browser of your choice on your PC, smartphone or tablet, and enter the IP of your Raspberry Pi, followed by :8080/webvisu.htm i.e. Now you can move the sliders to control the Output Voltage of both channels from 0-10 Volts. We hope you have fun using the PiXtend with CODESYS and are successful with your projects. We are always interested in your feedback. If you use PiXtend in one of your projects please mention PiXtend and our URL somewhere. Copyright by Qube Solutions UG (haftungsbeschränkt) 21 / 21

PiXtend with CODESYS Create Project

PiXtend with CODESYS Create Project Creating a new CODESYS Project Adding PiXtend as a CODESYS Device Creating a simple Test Program Creating a simple Web Visualization Date 13/02/2018, V1.03 Qube Solutions UG (haftungsbeschränkt) Arbachtalstr.

More information

PiXtend V2. fast. reliable. versatile. powered by Raspberry Pi

PiXtend V2. fast. reliable. versatile. powered by Raspberry Pi PiXtend V2 -S- fast. reliable. versatile. powered by Raspberry Pi PiXtend fast, About us In Dezember 2014 PiXtend V1 was released - the first Raspberry Pi based programmable logic controller (PLC). The

More information

Application-Note PiXtend Python Library

Application-Note PiXtend Python Library Application-Note PiXtend Python Library Installation, Orientation and Programming APP-PX-401 Status: 05.03.2018, V1.01 Qube Solutions UG (haftungsbeschränkt) Arbachtalstr. 6, 72800 Eningen, Germany http://www.qube-solutions.de/

More information

CODESYS V3 Quick Start

CODESYS V3 Quick Start Programming a Garage Door Drive with CODESYS V3 On the following pages we would like to show you how easy it is to program a simple automation project with CODESYS V3. To start with, we would like to make

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

Quick instructions: Programming of SmartPLC AC14/AC4S with CODESYS V3

Quick instructions: Programming of SmartPLC AC14/AC4S with CODESYS V3 This document is valid for the software bundle: CODESYS V3.5.4.2 AC4S-Package: >= V1.3.2.2 AC4S-Firmware: >= V4.0.2 VNC-rk Page 1 of 28 V1.1 Important note: These instructions are structured so that all

More information

Raspberry Pi NTP Clock Setup Guide

Raspberry Pi NTP Clock Setup Guide Raspberry Pi NTP Clock Setup Guide Several steps are involved in getting your Raspberry Pi to operate as a NTP Clock. To begin with, you must obtain a LCD Plate (www.adafruit.com) and build it. You must

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

Quick instructions: Programming of SmartPLC AC14/AC4S with CODESYS V3

Quick instructions: Programming of SmartPLC AC14/AC4S with CODESYS V3 This document is valid for the software bundle: CODESYS V3.5.4.2 AC4S-Package: >= V1.3.2.2 AC4S-Firmware: >= V4.0.2 VNC-rk Page 1 of 32 V1.3 Important note: These instructions are structured so that all

More information

PiXtend V2 -SHardware Manual

PiXtend V2 -SHardware Manual PiXtend V2 -S - Safety Instructions - Scope of Delivery & Factory settings - Installation & Commissioning - Technical Data & Connection Notes - Stand 29/10/18, V1.04 Qube Solutions GmbH Arbachtalstr. 6,

More information

ServoOne iplc. Quick Start Guide. Single-Axis System Multi-Axis System Junior

ServoOne iplc. Quick Start Guide. Single-Axis System Multi-Axis System Junior ServoOne iplc Quick Start Guide Single-Axis System Multi-Axis System Junior Quick Start Guide iplc ServoOne ServoOne Single-axis system ServoOne Multi-axis system ServoOne junior valid from ServoOne Firmware

More information

POWERLINK. For CODESYS. POWERLINK For CODESYS. Integration package of the standard Industrial Ethernet protocol POWERLINK into CODESYS.

POWERLINK. For CODESYS. POWERLINK For CODESYS. Integration package of the standard Industrial Ethernet protocol POWERLINK into CODESYS. For CODESYS For CODESYS Integration package of the standard Industrial Ethernet protocol into CODESYS. For CODESYS Two standard technologies brought together 2 About is one of the most used real-time Ethernet

More information

User Guide. Cloud Connect App Board

User Guide. Cloud Connect App Board User Guide Cloud Connect App Board 2017-03-03 Contents 1. Orientation... 3 1.1 Introduction... 3 1.1.1 Thing overview... 3 1.2 Access and logging in... 3 1.2.1 Access... 3 1.2.2 Sign up and Log in... 3

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

IGSS 13 Configuration Workshop - Exercises

IGSS 13 Configuration Workshop - Exercises IGSS 13 Configuration Workshop - Exercises Contents IGSS 13 Configuration Workshop - Exercises... 1 Exercise 1: Working as an Operator in IGSS... 2 Exercise 2: Creating a new IGSS Project... 28 Exercise

More information

Lab Zero: A First Experiment Using GENI and Jacks Tool

Lab Zero: A First Experiment Using GENI and Jacks Tool GENIExperimenter/Tutorials/jacks/GettingStarted_PartI/Procedure GENI: geni 2/27/16, 14:35 Lab Zero: A First Experiment Using GENI and Jacks Tool These instructions are at: http://tinyurl.com/geni-labzero

More information

Lab Zero: A First Experiment Using GENI and Jacks Tool

Lab Zero: A First Experiment Using GENI and Jacks Tool Lab Zero: A First Experiment Using GENI and Jacks Tool These instructions are at: http://tinyurl.com/geni labzero Overview This is a first, simple experiment on GENI useful for familiarizing new experimenters

More information

ix TxB SoftControl FnIO-S NA-9186 EtherCAT KI

ix TxB SoftControl FnIO-S NA-9186 EtherCAT KI 1 Function and area of use With the HMI soft controllers in the ix TxB SoftControl series, any HMI application can have an intuitive graphic ix interface with total CoDeSys control. The terminal TxB SoftControl

More information

PowerPoint : :. PowerPoint

PowerPoint : :. PowerPoint PowerPoint : :. PowerPoint. PowerPoint. PowerPoint. PowerPoint. PowerPoint PowerPoint.... Microsoft Office.. ( ) PowerPoint PowerPoint Excel Word. Office.. PowerPoint PowerPoint. :. Start. All programs.

More information

1 Setting Up Your Auto Login Link in Windows

1 Setting Up Your Auto Login Link in Windows This User Guide is relevant for Admins, Teachers and s Admin Teacher Student Auto Login - An Overview Auto Login allows you to create a shortcut that logs you directly into your EducationCity school account.

More information

BCS Raspberry Pi Launch Events Getting started with Raspberry Pi

BCS Raspberry Pi Launch Events Getting started with Raspberry Pi BCS Raspberry Pi Launch Events Getting started with Raspberry Pi Department of Computer Science 16 th & 17 th April 2013 Who are you? How many of you.. are teachers in STEM subjects in non STEM subjects

More information

Manual of ET-LCD SW HAT

Manual of ET-LCD SW HAT ET- LCD SW HAT ET-LCD SW HAT is Board I/O that is specifically designed for connection with Board Raspberry Pi through Connector 40-PIN; this board includes LCD 16x2, SW, Buzzer, RTC DS3231 with Connector

More information

EZware Quick Start Guide

EZware Quick Start Guide EZware Quick Start Guide Your Industrial Control Solutions Source www.maplesystems.com For use as the following: Evaluation Tool for Prospective Users Introductory Guide for New Customers Maple Systems,

More information

Changing Button Images in Microsoft Office

Changing Button Images in Microsoft Office Changing Button Images in Microsoft Office Introduction This document deals with creating and modifying the button images used on Microsoft Office toolbars. Rarely is there a need to modify a toolbar button

More information

Construction manual. (Almost Ready To Control) Stand , V1.05

Construction manual. (Almost Ready To Control) Stand , V1.05 V.3 ARTC Construction manual V.3 ARTC (Almost Ready To Control) Stand 5.08.206, V.05 Qube Solutions UG (limited liability) Arbachtalstr. 6, 72800 Eningen, GERMANY http://www.qube-solutions.de/ http://

More information

Microsoft PowerPoint The Microsoft PowerPoint 2000 Screen. Leander ISD Technology Services CMB Title.

Microsoft PowerPoint The Microsoft PowerPoint 2000 Screen. Leander ISD Technology Services CMB Title. Microsoft PowerPoint 2007 The Microsoft PowerPoint 2007 Screen The Microsoft PowerPoint 2000 Screen Title Menu Bar Standard Formatting Toolbar Outline Pane Placeholders Slide Pane View Buttons Leander

More information

Introduction. Watch the video below to learn more about getting started with PowerPoint. Getting to know PowerPoint

Introduction. Watch the video below to learn more about getting started with PowerPoint. Getting to know PowerPoint PowerPoint 2016 Getting Started With PowerPoint Introduction PowerPoint is a presentation program that allows you to create dynamic slide presentations. These presentations can include animation, narration,

More information

CODESYS Beginners Tutorial

CODESYS Beginners Tutorial Getting started with Last updated: 15/05/2017 Author: Noor Mufti index Introduction... 1 Objectives... 1 Prerequisites... 1 How to write your first program in XSoft 3... 1 Step 1: Preparing the environment...

More information

Raspberry Pi Setup Tutorial

Raspberry Pi Setup Tutorial Raspberry Pi Setup Tutorial The Raspberry Pi is basically a miniature linux- based computer. It has an ARM processor on it, specifically the ARM1176JZF- S 700 MHz processor. This is the main reason why

More information

Pearson Inform 5.1. User Guide. Basic Navigation. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Basic Navigation. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Basic Navigation Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced or transmitted

More information

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language help.kidkare.com 03 Enroll a Child 03 Withdraw a Child 03 View Pending and Withdrawn Children 04 View Kids by Enrollment

More information

Raspberry PI 'How-To' Series

Raspberry PI 'How-To' Series Raspberry PI 'How-To' Series Zabbix Agent Installation Guide Written by: Sopwith Revision 1.0 March 4, 2019 sopwith@ismellsmoke.net 1 Introduction Zabbix is a popular open-source platform used by IT professionals

More information

LTC Data Converter Board For The Arrow SoCKit Linux Application User s Guide

LTC Data Converter Board For The Arrow SoCKit Linux Application User s Guide LTC Data Converter Board For The Arrow SoCKit Linux Application User s Guide Revision 7.0 21 Aug 2013 1 of 32 Table of Contents Introduction... 4 Board Connections... 4 Board Setup... 4 Installing Linux...

More information

Original Programming Manual Fail-safe SmartPLC AC4S with fieldbus interfaces AC402S AC422S

Original Programming Manual Fail-safe SmartPLC AC4S with fieldbus interfaces AC402S AC422S Original Programming Manual Fail-safe SmartPLC AC4S with fieldbus interfaces AC402S AC422S for ISO 13849 up to PL e for IEC 61508 SIL 3 and 62061 up to SIL CL 3 Firmware: 4.0.2 CODESYS Development System:

More information

IEC PROGRAMMING

IEC PROGRAMMING IEC 61131-3 PROGRAMMING 5 Trio Motion Technology 5-2 Software Reference Manual Introduction to IEC 61131-3 This help file covers program using IEC 61131 languages using Trio Motion Technology s Motion

More information

Created by: Leslie Arakaki

Created by: Leslie Arakaki Created by: Leslie Arakaki Fall, 2000 Page 1 Starting PowerPoint: 1. Double click on the icon. PowerPoint-ing your work! For PC computers with PowerPoint 97/2000 Using the Design Template feature to create

More information

Goldfish 4. Quick Start Tutorial

Goldfish 4. Quick Start Tutorial Goldfish 4 Quick Start Tutorial A Big Thank You to Tobias Schilpp 2018 Fishbeam Software Text, Graphics: Yves Pellot Proofread, Photos: Tobias Schilpp Publish Code: #180926 www.fishbeam.com Get to know

More information

Step by Step Directions on how to use Kizoa

Step by Step Directions on how to use Kizoa Step by Step Directions on how to use Kizoa What is Kizoa? Kizoa is a free slideshow maker and photo editing site. You are able to upload, organize, edit, create, show and share projects you have created

More information

The following task will help you with Creating a Web Page

The following task will help you with Creating a Web Page The following task will help you with Creating a Web Page 1. Go to https://cms.bham.ac.uk and use your usual username and password to log on 2. Make sure you are working on the correct project by looking

More information

Master Pages. Basics 1

Master Pages. Basics 1 Basics 1 Some elements of your design will appear on every page of your publication. For a professional look, these elements should be placed consistently from page to page. By using master pages, you

More information

Define the Slide Animation Direction on the deck control.

Define the Slide Animation Direction on the deck control. IBM Cognos Report Studio: Author Active Reports allows students to build on their Report Studio experience by using active report controls to build highly interactive reports that can be consumed by users.

More information

The Basics of PowerPoint

The Basics of PowerPoint MaryBeth Rajczewski The Basics of PowerPoint Microsoft PowerPoint is the premiere presentation software. It enables you to create professional presentations in a short amount of time. Presentations using

More information

NETWORK LAB 2 Configuring Switch Desktop

NETWORK LAB 2 Configuring Switch Desktop Configuring Switch 1. Select the switch tab and then add a switch from the list of switches we have to the workspace, we will choose (2950-24) switch. 2. Add a number of PCs next to the switch in order

More information

WideQuick Remote WideQuick Designer

WideQuick Remote WideQuick Designer FLIR ThermoVision CM training This manual is starting off with a quick instruction on how to start the system and after that there are instructions on how to make your own software and modify the FLIR

More information

How to make a power point presentation. Dr. Mohamed F. Foda

How to make a power point presentation. Dr. Mohamed F. Foda How to make a power point presentation Dr. Mohamed F. Foda Step 1: Launch the PowerPoint Program When you launch the PowerPoint program, you may be prompted to pick what kind of document you want to create.

More information

PlainDAC. PolyVection. embedded audio solutions RASPBERRY PI SETUP GUIDE. PlainDAC chip on module page 1

PlainDAC. PolyVection. embedded audio solutions RASPBERRY PI SETUP GUIDE. PlainDAC chip on module   page 1 PlainDAC RASPBERRY PI SETUP GUIDE Audiophile digital-to-analog converter module with I2S input Document revision 1.0 August 2016 PlainDAC chip on module www.polyvection.com page 1 Table of Contents 1 Revision

More information

A Slice of Raspberry Pi

A Slice of Raspberry Pi A Slice of Raspberry Pi Roadmap Introduction to the Raspberry Pi device What can you use a Raspberry Pi for? Talking to the Hardware A Raspberry Pi Arcade table Q & A Raspberry Pi Introduction What is

More information

IGSS Configuration Workshop - Exercises

IGSS Configuration Workshop - Exercises IGSS Configuration Workshop - Contents Exercise 1: Working as an Operator in IGSS... 2 Exercise 2: Creating a New IGSS Project... 18 Exercise 3: Create Areas and Diagrams in Definition... 23 Exercise 4:

More information

INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2

INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2 Word 2010 Level 2 Table of Contents INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2 PAGE LAYOUT BREAKS... 2 Section break examples... 2 Inserting Section Breaks... 3 Deleting

More information

Maple Quick Start. Maplesoft, a division of Waterloo Maple Inc.

Maple Quick Start. Maplesoft, a division of Waterloo Maple Inc. Maple Quick Start Maplesoft, a division of Waterloo Maple Inc. This tutorial is designed to help you become familiar with the Maple environment and teach you the few fundamental concepts and tools you

More information

Configure Z-Wave for Razberry

Configure Z-Wave for Razberry Written By: Feitan 2017 www.botsbits.org Page 1 of 24 PARTS: Raspberry Pi (1) Razberry (1) OpenRemote software (1) 2017 www.botsbits.org Page 2 of 24 Step 1 Razberry is a Z-Wave controller board that connects

More information

OFFICIAL USER MANUAL 1

OFFICIAL USER MANUAL 1 OFFICIAL USER MANUAL 1 Contents: Getting Started with Musician Video Maker 3 Launching And Activating Musician Video Maker 3 Beta Tester Users 5 Start Mode And Demo Mode 6 Importing Your Video Footage

More information

How to Create Excel Dashboard used in Solutions Conference By Matt Mason

How to Create Excel Dashboard used in Solutions Conference By Matt Mason How to Create Excel Dashboard used in Solutions Conference 2017 By Matt Mason The following is a step by step procedure to create the Dashboard presented by Matt Mason in the Excel Tips and Tricks session

More information

0 Graphical Analysis Use of Excel

0 Graphical Analysis Use of Excel Lab 0 Graphical Analysis Use of Excel What You Need To Know: This lab is to familiarize you with the graphing ability of excels. You will be plotting data set, curve fitting and using error bars on the

More information

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett RaspiDigiHamClock Raspberry Pi Amateur Radio Digital Clock v2018-07-08 WA4EFH R.Grokett Overview Amateur Radio Operators (aka HAM Radio) use 24 hour UTC (Universal Coordinated Time) for much of their operation.

More information

Creating Dashboard Widgets. Version: 16.0

Creating Dashboard Widgets. Version: 16.0 Creating Dashboard Widgets Version: 16.0 Copyright 2017 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

LK-RB-Shield Ausgabe Copyright by Joy-IT

LK-RB-Shield Ausgabe Copyright by Joy-IT LK-RB-Shield LK-RB-Shield Index 1. Introduction 2. PIN Assignment 3. Setting up the Raspberry Pi 4. Activating the modules 5. Code example: Digital Channels 6. Code example: Analog Channels Dear customer,

More information

PACE Suite. Release Notes. Version 3.3.1

PACE Suite. Release Notes. Version 3.3.1 PACE Suite Release Notes Version 3.3.1 Table of Contents VERSION 3.3.1 (07.11.2014)... 2 New features of MSI Editor... 2 Improvements of MSI Editor... 3 Bug fixes of MSI Editor... 3 VERSION 3.3.0 (03.10.2014)...

More information

MS Power Point Awareness Questions

MS Power Point Awareness Questions MS Power Point Awareness Questions 1. How can we view slide show repeated continuously? A. repeat continuously B. loop continuously until Esc C. loop more D. none 2. Which type of fonts are best suite

More information

PowerPoint Instructions

PowerPoint Instructions PowerPoint Instructions Exercise 1: Type and Format Text and Fix a List 1. Open the PowerPoint Practice file. To add a company name to slide 1, click the slide 1 thumbnail if it's not selected. On the

More information

PowerPoint 2010 Level 1 Computer Training Solutions Student Guide Version Revision Date Course Length

PowerPoint 2010 Level 1 Computer Training Solutions Student Guide Version Revision Date Course Length Level 1 Computer Training Solutions Version 1.2 Revision Date Course Length 2012-Feb-16 6 hours Table of Contents Quick Reference... 3 Frequently Used Commands... 3 Manitoba ehealth Learning Management

More information

KingSCADA Quick Start Manual How to create a new project

KingSCADA Quick Start Manual How to create a new project KingSCADA Quick Start Manual How to create a new project KingSCADA Hardware Requirements (recommended): Processor Pentium IV and above CPU speed 2GHz and above 32 bit CPU 2GB RAM and above 20G HDD and

More information

Kinetika. Help Guide

Kinetika. Help Guide Kinetika Help Guide 1 Hope you enjoy Kinetika theme! 3 Table of Contents Important Links 6 Theme Options - Setting Up Logo 26 Cover Photos 44 Applying Revolution Slider Slides 71 Important Notes 7 Logo

More information

The world of BAOS. Easy connectivity for KNX with Bus Access and Object Server. Overview and applications

The world of BAOS. Easy connectivity for KNX with Bus Access and Object Server. Overview and applications The world of BAOS Easy connectivity for KNX with Bus Access and Object Server Overview and applications WEINZIERL ENGINEERING GmbH Achatz 3 DE-84508 Burgkirchen / Alz Germany Phone : +49 (0)8677 / 91 636

More information

Basant Group of Institution Power Point Question

Basant Group of Institution Power Point Question 1. Which tab is not available on left panel when you open a presentation? A) Outline B) Slides C) Notes are available 2. Which of the following statements is not true? A) You can type text directly into

More information

Lab - Working with Android

Lab - Working with Android Introduction In this lab, you will place apps and widgets on the home screen and move them between different screens. You will also create folders. Finally, you will install and uninstall apps from the

More information

Power over Ethernet (PoE) Adaptor

Power over Ethernet (PoE) Adaptor Power over Ethernet (PoE) Adaptor For the Raspberry Pi model B+, Pi2 and Pi3 User Manual www.circuitsurgery.com Page 1 of 6 Description N.B.: In this manual the term "Raspberry Pi" will refer to the Raspberry

More information

GO! with Microsoft PowerPoint 2016 Comprehensive

GO! with Microsoft PowerPoint 2016 Comprehensive GO! with Microsoft PowerPoint 2016 Comprehensive First Edition Chapter 3 Enhancing a Presentation with Animation, Video, Tables, and Charts Learning Objectives Customize Slide Backgrounds and Themes Animate

More information

POWERPOINT 2003 OVERVIEW DISCLAIMER:

POWERPOINT 2003 OVERVIEW DISCLAIMER: DISCLAIMER: POWERPOINT 2003 This reference guide is meant for experienced Microsoft Office users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training

More information

RPi General Purpose IO (GPIO) Pins

RPi General Purpose IO (GPIO) Pins GPIO RPi Setup for Today Because the cobbler connector has a notch, you can only put the cable in the right way But, it is possible to put the cable in upside down on the Raspberry Pi The colored wire

More information

Getting Started with Apache NiFi Registry

Getting Started with Apache NiFi Registry 3 Getting Started with Date of Publish: 2018-11-15 http://docs.hortonworks.com Contents Terminology Used in This Guide... 3 Downloading and Installing NiFi Registry...3 Starting NiFi Registry... 3 For

More information

Adobe Photoshop CC By Washan Najat Nawi

Adobe Photoshop CC By Washan Najat Nawi Adobe Photoshop CC 2018 By Washan Najat Nawi In this course you will learn : how to get started how to use the interface basic editing skills Introduction Adobe Premiere: is power full video editing software.

More information

User Manual for ios. m-identity Protection Demo App v 2.5. Trusted Login, Trusted Message Sign and Trusted Web View

User Manual for ios. m-identity Protection Demo App v 2.5. Trusted Login, Trusted Message Sign and Trusted Web View m-identity Protection Demo App v 2.5 Trusted Login, Trusted Message Sign and Trusted Web View User Manual for ios (Powered by App Security Technology) Table of Contents Requirements... 3 1 Getting Started...

More information

Getting Started with XMF Remote

Getting Started with XMF Remote Getting Started with XMF Remote Remote R9.5 Contents Introduction......................................................... 5 How to Login........................................................ 6 The

More information

Developing a Power Point Presentation

Developing a Power Point Presentation Load Power Point 1 Select Blank Presentation (figure 1) 2 Select New Slide (figure 2) First slide is the title page. Select First Box as shown in figure 2. Figure 1 Figure 2 3 Add Title and Subtitle (figure

More information

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage Microsoft FrontPage Unit 8 Microsoft FrontPage Introduction Lesson 8.1 Microsoft FrontPage-1 A number of Software Packages are available in market for creating a website. Among popular software s are Dreamweaver,

More information

INTRODUCTION... 6 CONCEPTS... 8 THE MAPPING VIEWER CONFIGURATION OVERVIEW ADMINISTRATOR CONFIGURATION DASHBOARD CONFIGURATION...

INTRODUCTION... 6 CONCEPTS... 8 THE MAPPING VIEWER CONFIGURATION OVERVIEW ADMINISTRATOR CONFIGURATION DASHBOARD CONFIGURATION... TABLE OF CONTENTS INTRODUCTION... 6 How this Manual is Organized... 6 Types of User... 7 CONCEPTS... 8 What is Map Intelligence?... 8 What is a Layer?... 8 Layer Types... 8 THE MAPPING VIEWER... 12 What

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

2. INTENDED USERS The intended users of this SOP are the DeWorm3 site data managers and/or trial coordinators.

2. INTENDED USERS The intended users of this SOP are the DeWorm3 site data managers and/or trial coordinators. SETTING UP MOBILE DATA COLLECTION DEVICES 1. PURPOSE This document describes the process by which DeWorm3 staff should initialize data collection devices and provides specific settings for the mobile devices

More information

Introduction to Microsoft Office PowerPoint 2010

Introduction to Microsoft Office PowerPoint 2010 Introduction to Microsoft Office PowerPoint 2010 TABLE OF CONTENTS Open PowerPoint 2010... 1 About the Editing Screen... 1 Create a Title Slide... 6 Save Your Presentation... 6 Create a New Slide... 7

More information

Please note that this process must be repeated if a new PC is used.

Please note that this process must be repeated if a new PC is used. Appendix 2 - Using Smart Client This section of the user guide is relevant to first-time users of Agresso. There are some areas of the Agresso package that initially need to be configured by the individual

More information

CODESYS Control for BeagleBone SL

CODESYS Control for BeagleBone SL CODESYS Control for BeagleBone SL Getting Started Version: 2.0 Template: templ_tecdoc_de_v1.0.docx File name: CODESYS_Control_BBB_SL_First_Steps_DE.doc CONTENTS Page 1 Product description 3 2 Installation,

More information

2 User Interface. Add New Assets. Restore Assets Check-In assets. Add New Personnel Edit Personnel Delete Personnel Restore Personnel.

2 User Interface. Add New Assets. Restore Assets Check-In assets. Add New Personnel Edit Personnel Delete Personnel Restore Personnel. Contents I Table of Contents Part I Introduction 2 1 Registration... and Login 3 2 User Interface... 4 3 Populate... the data 8 Part II How To (Steps) 9 1 Manage... Asset Records 9 Add New Assets... 10

More information

PaperClip32. Revision 2.0

PaperClip32. Revision 2.0 PaperClip32 Quick Start Guide Revision 2.0 Copyright Information Copyright 2003, PaperClip Software, Inc. The PaperClip32 product name and PaperClip Logo are registered trademarks of PaperClip Software,

More information

SIMATIC. Process Control System PCS 7 SMART PCS 7 SMART First Steps (V8.1 with APL) Preface 1. Creating the PCS 7 SMART project 2

SIMATIC. Process Control System PCS 7 SMART PCS 7 SMART First Steps (V8.1 with APL) Preface 1. Creating the PCS 7 SMART project 2 Preface 1 Creating the PCS 7 SMART project 2 SIMATIC Process Control System PCS 7 SMART PCS 7 SMART First Steps (V8.1 with APL) Getting Started Configuring the hardware and the networks 3 Configuring the

More information

New Perspectives on PowerPoint Module 2: Adding Media and Special Effects

New Perspectives on PowerPoint Module 2: Adding Media and Special Effects New Perspectives on PowerPoint 2016 Module 2: Adding Media and Special Effects Objectives, Part 1 Apply a theme used in another presentation Insert shapes Format shapes and pictures Rotate and flip objects

More information

Learn about PowerPoint: Create your first presentation

Learn about PowerPoint: Create your first presentation Learn about PowerPoint: Create your first presentation In this tutorial, you will create a simple presentation to learn the skills basic to working with all presentations. Step 1: Get started Open PowerPoint

More information

FLIR Tools+ and Report Studio

FLIR Tools+ and Report Studio Creating and Processing Word Templates http://www.infraredtraining.com 09-20-2017 2017, Infrared Training Center. 1 FLIR Report Studio Overview Report Studio is a Microsoft Word Reporting module that is

More information

Dreamweaver Handout. University of Connecticut Prof. Kent Golden

Dreamweaver Handout. University of Connecticut Prof. Kent Golden Dreamweaver Handout University of Connecticut Prof. Kent Golden Kent@GoldenMultimedia.com www.goldenmultimedia.com Main goal of this handout: To give you the steps needed to create a basic personal website

More information

Adobe Encore DVD Tutorial:

Adobe Encore DVD Tutorial: Adobe Encore DVD Tutorial: Here is a simple tutorial for creating DVDs which will play Dolby Digital audio: 1. Plan the DVD project. Think through your DVD project. Decide how many audio tracks you want

More information

Copyright. Getting Started with Arduino Wiring for Windows 10 IoT Core Agus Kurniawan 1st Edition, Copyright 2016 Agus Kurniawan

Copyright. Getting Started with Arduino Wiring for Windows 10 IoT Core Agus Kurniawan 1st Edition, Copyright 2016 Agus Kurniawan Copyright Getting Started with Arduino Wiring for Windows 10 IoT Core Agus Kurniawan 1st Edition, 2016 Copyright 2016 Agus Kurniawan ** Windows 10 IoT Core, Visual Studio and Logo are trademark and copyright

More information

Our Goals Teaching with Power Point

Our Goals Teaching with Power Point Our Goals Teaching with Power Point October 14, 2003 Create a new presentation. Add text, graphics,charts, and tables. Apply transitions. Insert hyperlinks such as: http://www.hamline.edu Goals Continued

More information

Datasheet Romod I/O Modules SL

Datasheet Romod I/O Modules SL Datasheet Romod I/O Modules SL This library allows you to use Romod I/O devices from the manufacturer Romutec (www.romutec.de) via RS485 COM-Port on supported CODESYS PLC runtimes. The devices can be easily

More information

Broadcast Radio SmartSign Lite device: Advanced Configuration with the Windows IoT Device Portal

Broadcast Radio SmartSign Lite device: Advanced Configuration with the Windows IoT Device Portal Broadcast Radio SmartSign Lite device: Advanced Configuration with the Windows IoT Device Portal SmartSign Lite runs on a version of Windows developed specifically for devices such as the Raspberry Pi

More information

Station Automation COM Logic Processor User's Manual

Station Automation COM Logic Processor User's Manual Station Automation COM600 3.4 1MRS756738 Issued: 13.2.2009 Version: B/06.11.2009 Station Automation COM600 3.4 Contents: 1. About this manual... 5 1.1. Copyrights... 5 1.2. Trademarks... 5 1.3. General...

More information

COOKING WITH TEAM 279

COOKING WITH TEAM 279 COOKING WITH TEAM 279 ANALOG SIGNALS WITH MCP3002/MCP3008 ADC The RPi does not have analog input pins. To read analog signals, and Analog to Digital Converter (ADC) should be used. The MCP3002 and MCP3008

More information

NetDoc AD is a tool for the semi-automatic documentation of Active Directory Directory services based on Microsoft Visio.

NetDoc AD is a tool for the semi-automatic documentation of Active Directory Directory services based on Microsoft Visio. NetDoc AD 2013 NetDoc AD is a tool for the semi-automatic documentation of Active Directory Directory services based on Microsoft Visio. Table of Contents Overview... 3 Getting Started... 5 User Interface...

More information

Digital Display Wall Application Management Software

Digital Display Wall Application Management Software VWAS6.0 日常使用手册 Digital Display Wall Application Management Software VWAS6.0/VCMS/VEMS User Manual Copyright Statement This manual is the copyright property of VTRON. Without prior written approval from

More information

SIMATIC. Process Control System PCS 7 Operator Station. Preface, Contents. The PCS 7 OS 1 Introduction to PCS 7 OS Configuration

SIMATIC. Process Control System PCS 7 Operator Station. Preface, Contents. The PCS 7 OS 1 Introduction to PCS 7 OS Configuration s SIMATIC Process Control System PCS 7 Operator Station Configuration Manual Preface, Contents The PCS 7 OS 1 Introduction to PCS 7 OS Configuration 2 Configuring the PCS 7 OS Data in the SIMATIC Manager

More information