Concept of ELFi Educational program. Android + LEGO

Size: px
Start display at page:

Download "Concept of ELFi Educational program. Android + LEGO"

Transcription

1 Concept of ELFi Educational program. Android + LEGO ELFi Robotics 2015

2 Authors: Oleksiy Drobnych, PhD, Java Coach, Assistant Professor at Uzhhorod National University, CTO at ELFi Robotics Mark Drobnych, Google Science Fair 2014 Global Finalist, Mindstorms Robot Expert, High School Student. Myroslava Drobnych, consultant in psychology of kids, Senior Lecturer in Uzhhorod National University

3 Aim to explain in easy way how autonomous intelligent robots work. Auditory students and enthusiasts of 14+ years old. Equipment Prerequisites access to Lego EV3 Home or Core set and PC with Windows installed, Linux or Mac, Android 4+ phone or tablet. Expected Knowledge NXT G or EV3 G graphic programming understanding, basic knowledge of mechanical patterns for LEGO Technic parts. Program Description This program is provided for STEM education groups, FLL teams and individuals who learn robotics using popular Lego EV3 sets. This program opens doors for professional software development, architecture and fundamental concepts of building intelligent autonomous robots for beginners, especially for those who gained some experience in simple mechanics and graphic programming of LEGO EV3 controllers.

4 Introduction Problem There is a complex gap between school robotics and professional one. A lot of FAT books about Autonomous Robots, Natural Language Understanding and Artificial Intelligence look like a huge barrier for kids and students interested in robotics. A lot of kids are good at mechanics and controlling code, FLL and WRO contests but isolated from thriving world of real talking and thinking robots. Solution The solution is to provide simplified application programming interface and simple examples of Voice Recognition, Natural Language Understanding, Face and visual Object detection based on famous LEGO MINDSTORMS sets. This simplicity is possible now because of new innovative libraries and clouds developed by numerous Startups including ELFi Robotics. In short, we propose to add a robotic brain to EV3 based LEGO models so that kids can start talking to their robots. After this first step we ll show how to teach a personal robot and how to program its brain. Result After testing this program together with a small group of high school students we discovered an increasing interest in direction of programming,

5 machine learning, generating ideas for new applications of thinking, talking and observing robots. The concept of layered architecture Layered architecture of ELFi Brain allows to clearly separate concerns over the source code. We have 3 layers: Brain Algorithms Controllers Controllers have a well known code for all EV3 LEGO enthusiasts. It has the code which controls motors, sensors, Bluetooth Mail Box and the other parts of MINDSTORMS platform. So if you need to do some actions like raise a left hand of robot you have to add a code inside EV3 G program first. Algorithms a glue between controller programs and a robotic brain. For example dance command will reuse and repeat many simple and small controller codes. Otherwise we had to create tons of repeatable code for EV3 G. This approach allows students to understand one of fundamental principles of professional software coding: DON T REPEAT YOURSELF. Brain part of ELFi architecture is the most interesting and intriguing one. It makes our robot behave like a human. Brain allows to create complex reactions of robot to external world, events, voice commands, moving faces or others object in visible area or message from another robot via special channel of communication. Robot can analyse many contexts and prehistory before acting in response to particular event. This is why we call ELFi Intelligent robot.

6 We ll use a simple chart of Brain Algorithms Controllers architecture in many steps of our educational program to give a quick idea how software changes are involved into each task.

7 Learning Path STEP 1 : What is intelligent autonomous robot This intro lesson explains what is robotic brain and how dramatically it can change a behavior of any EV3 model. We created a new robotic platform for learning how to build robots with brain using popular construction sets. We call those robots ELFi which is a shortening of EV3 LEGO Friend. Exercise: propose your own use of such a robot. Let s discuss! Target of this step is the understanding of: general concept of intelligent autonomous robot what robotic brain can do why your old EV3 models are not intelligent robots? what is machine learning how the intelligent robot can move without a remote control or color line on the floor

8 STEP 2 : Building a simple talking robot with LEGO and Android You will become familiar with programming tools needed during the whole course of our educational program. First of all you will install Brain App on your android phone or tablet. You can talk using this app and ask it to show building instruction for Small ELFi robot. We ll consider the other parts of software for ELFi Educational Program and learn how to connect Brain App to the body of a small ELFi robot. Exercise: install ELFi robotics Brain App on Android device, connect to ELFi Small body. Play. Target of this step is the experience of: installing ELFi brain on Android phone or tablet building Small ELFi body from LEGO MINDSTORMS set connecting ELFi brain and EV3 brick together talking to ELFi

9 Here is Small ELFi a minimalistic type of ELFi robots:

10 STEP 3 : Architecture of robotic software. Brain Algorithms Controllers. Full stack example. At this level we ll try to see the whole ELFi Robotics platform in practice. We ll quickly overview the Software Architecture of ELFi robot, study its components and their purpose. Finally, we ll try to do a quick coding for all 3 layers of its architecture to get practical understanding of the robotic platform. Exercise: add left, right, forward movement commands. Target of this step is understanding of: what is AI cloud how does voice command work where to place EV3 G code in ELFi architecture how to create a simple algorithm

11 See the affected parts of ELFi Software Architecture:

12 STEP 4 : Algorithms We ll learn existing controller commands which can be reused in your own algorithms. In fact you can go far without even writing a single controller program. In this lesson we ll combine commands like go forward, turn left to draw a picture of small house. Exercise: Draw the house on a paper or whiteboard using a pen attached to Small ELFi. Target of this step is the understanding of: where to find existing controller programs how to combine controller programs with algorithms how to execute algorithm without adding a new voice command

13 See the affected parts of ELFi Software Architecture:

14 STEP 5 : Controllers This lesson is focused on Controller layer of ELFi Software Architecture. We re going to learn how to add a new EV3 G program to the controller layer and how to connect it with Party time spoken command. Exercise: Write your own dance for Small ELFi. Have fun. Target of this step is understanding of: where to put a new controller program how to bind a new controller program to algorithm

15 See the affected parts of ELFi Software Architecture:

16 STEP 6 : Brain The ultimate task of robotic brain is support of conversation with a human. Face detection, voice recognition, text to speech, XMPP chat, Emotions all those tools are working together as a Brain of ELFi robot under control of Android Operating System. You can give a voice command, talk or even create a new command via voice conversation with ELFi. Exercise: Describe new command verbally. This command should be a synonymic intent to any existing voice command. Play. Share. Target of this step is understanding of: which operations does ELFi brain perform what is Face Detection what is Voice Recognition what is Natural Language Understanding what is XMPP channel how to setup a new voice command verbally

17 See the affected parts of ELFi Software Architecture:

18 STEP 7 : Java for Robots. Crash course This is the right time to start writing some code for ELFi brain. We ll write this code using Java programming language. We don t need an extensive Java course. We need just a starting point. More knowledge you will obtain in further lessons. In this lesson you will learn what is variable, reference, object, class and method. Exercise: set a new emotion to your voice command from the previous lesson. Target of this step is understanding of: how to work with Java code where to look for answers to questions about Java language what are the main building blocks of Java code how to change emotions of ELFi using Java code.

19 See the affected parts of ELFi Software Architecture:

20 STEP 8 : Android for Robots. Crash course At this level we ll continue learning Java language but we ll do it in the context of Android programming. We ll have a good look of the most important parts of Android SDK: Activity, Service, Broadcast Receiver, Content Provider and their use in ELFi robotic Brain. This is the right time to start writing some code for ELFi brain. Our robot can use Android front camera for face detection. There are existing android libraries for this purpose. We ll apply one of the simplest solutions FaceDetector. Exercise: Write an ability to center a robot direction to your face. This ability is useful for creation of strong personal touch during your talk with robot. Target of this step is understanding of: what is Android which parts of Android are in use of ELFi Brain what is direct Bluetooth command what is Face Detector and how it can be used

21 See the affected parts of ELFi Software Architecture:

22 STEP 9 : Event machine ELFi s Brain has a lot of slots to inject your own code. One of them is Brain Event Listener. This is a Java class which allows you to add custom event processing code Before, After or Instead of the original event processor. Exercise: Substitute Ninja Emotion for your own picture. Add brand new emotion and link it with spoken command. Play. Share. Target of this step is understanding of: what is event, listener and processor how to intercept an event

23 See the affected parts of ELFi Software Architecture:

24 STEP 10 : NLU processing It s time to dive more deeply in Natural Language Understanding and it s integration with Android code. We ll create another Robotic Game resembling popular millionaire game show. Our task is to inject our code for generating random questions and supporting the whole logical workflow of this game. As usual, by gestures, music and emotions of ELFi. Exercise: Create The Millionaire Robotic Game Target of this step is understanding of: what is Intent, Entity, Context and Parameter how to work with NLU within ELFi Brain

25 See the affected parts of ELFi Software Architecture:

26 STEP 11 : Indoor navigation Intelligent autonomous robot has to share living area with humans. In other words, to recognize rooms and know how to change direction from one room to another. This is what we call Indoor navigation. There are several strategies for implementation of indoor navigation. We ll use algorithms for moving between rooms with orientation based on walls and IR beams detection. Exercise: Develop a Home Patrol mode.in this mode, ELFi will loop over defined rooms and send an with picture taken with a front camera if the human face will be detected. We ll use WiFi signal strength for definition of current position. We ll use NLU command to start the patrol mode. Target of this step is understanding of: which strategies does exist for indoor navigation which controller programs are involved into indoor navigation how we model a compass for ELFi

27 See the affected parts of ELFi Software Architecture:

28 STEP 12 : Scheduler Orientation in time is also very important for intelligent robots. We ll consider patterns of Android SDK for dealing with time and periodic tasks: Alarm Manager and Handler. Exercise: Teach ELFi to play with your cat (imaginary or the real one) in defined time of the day. We ll also discover another important feature defining if some object marked with a Bluetooth beam. We need this additional functionality to define if cat are in the same room so that cat can see a mouse. Target of this step is understanding of: what is Android Alarm how to assign periodic tasks for ELFi how get the Bluetooth signal strength of an another device

29 See the affected parts of ELFi Software Architecture:

30 STEP 13 : Color recognition This lesson is dedicated to robotic vision. Robot can detect objects and colors using front camera of Android device. Exercise: Create a Toreador game. You can start the game by showing some colored thing to ELFi. Then ELFi will follow this. Imagine you are a Toreador and ELFi is a Bull. Have fun. Target of this step is understanding of: what is robotic vision what target is good for follow me operations where to put code working with images taken by front camera

31 See the affected parts of ELFi Software Architecture:

32 STEP 14 : Robotic game We ll create a new Android Activity in ELFi style and develop a real Robotic Game application. Exercise: Develop Tic Tac Toe powered by object recognition. The idea of this Robotic Game is following: we ll be shown a Tic Tac Toe board instead of ELFI s face. We ll use Android Face Detection to show our next move in the game. Target of this step is understanding of: why Face Detection is so important for Android devices alternative ways for interacting with a robot how many faces can ELFi detect at the same time

33 See the affected parts of ELFi Software Architecture:

34 STEP 15 : Robot to robot communication Collaborating robots is a very important concept. One ELFi can delegate some task to the other ELFi, indeed. Finally we can have several robots specialized in some tasks and exchanging messages. We ll discover XMPP protocol for messages exchange between ELFi s. Exercise: In this lesson we ll create a specialized robot with water pump located near some plant. A small ELFi will delegate the task called water the plant according to the schedule. Target of this step is understanding of: what is XMPP why HTTP is not good for peer to peer communication channels what is session, chat and message how to use XMPP for robot to robot communications

35 See the affected parts of ELFi Software Architecture:

36 STEP 16 : AI methods. Text classification and Sentiment Analysis. This lesson is very important for understanding the principles of Machine Learning. In fact we have already used those principles indirectly via AI Cloud for interpretation of a spoken text in the previous lessons. Now we ll try to understand how it works. We ll do it in practical way, as usual. Our task is getting a context of unknown command. ELFi will be able to react and keep conversation with human outside command execution paradigm. We ll start with the Text Classification. ELFi will try to find the general context of unknown command. Imagine we ll say ELFi do you know that gravitation is a fundamental force in our Universe?. This is not a command. But using text classification, ELFi can define that we re talking about Physics and Astronomy. He can react to some interesting news about mentioned chapters of science or propose to watch some educational video. We ll use existing AI Clouds for this task. But before we ll learn how does this function work. We ll consider a simple clustering algorithm called K Means for classification of unknown speech. Finally we ll use another AI method which allows to define emotions from some spoken text. This method also can find out a subject of the emotion. For example, the phrase I like to play with my cat will be recognized as Positive, directed to a Cat entity. This allows ELFi to coordinate his emotional state with human and keep conversation.

37 Exercise: Connect ELFi to AI Cloud for speech classification and Sentiment Analysis. Develop some strategies to react to unknown speech text. Target of this step is understanding of: what is machine learning how does K Means method work what is text classification what is sentiment analysis

38 See the affected parts of ELFi Software Architecture:

39 STEP 17 : Your own robot. This is the right time to build your own robot. You can start with some drafts on a piece of paper, calculation of needed motors, EV3 bricks, beams and other parts. After creating the physical body of your robot you have to adjust controller codes responsible for left/right/forward movement. Those movements are integral parts of many algorithms like indoor navigation, follow me mode, dancing etc. Then you can switch to creation of unique features of your robot and its spoken abilities. Exercise: Build your own intelligent robot. Take your time. This is a long term task. Let s be in touch. Share your progress.

40 Big ELFi by Mark Drobnych

(Skip to step 11 if you are already familiar with connecting to the Tribot)

(Skip to step 11 if you are already familiar with connecting to the Tribot) LEGO MINDSTORMS NXT Lab 5 Remember back in Lab 2 when the Tribot was commanded to drive in a specific pattern that had the shape of a bow tie? Specific commands were passed to the motors to command how

More information

Follow the Light Pre-Quiz

Follow the Light Pre-Quiz Follow the Light Follow the Light Pre-Quiz 1. Provide a stimulus-sensor-coordinatoreffector-response framework using human eyes as the color sensor. 2. Provide the logic for a program for a LEGO robot

More information

LEGO MINDSTORMS PROGRAMMING CAMP. Robotics Programming 101 Camp Curriculum

LEGO MINDSTORMS PROGRAMMING CAMP. Robotics Programming 101 Camp Curriculum LEGO MINDSTORMS PROGRAMMING CAMP Robotics Programming 101 Camp Curriculum 2 Instructor Notes Every day of camp, we started with a short video showing FLL robots, real robots or something relevant to the

More information

Your EdVenture into Robotics You re a Programmer

Your EdVenture into Robotics You re a Programmer Your EdVenture into Robotics You re a Programmer meetedison.com Contents Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!...

More information

6.111 Final Project Proposal Kelly Snyder and Rebecca Greene. Abstract

6.111 Final Project Proposal Kelly Snyder and Rebecca Greene. Abstract 6.111 Final Project Proposal Kelly Snyder and Rebecca Greene Abstract The Cambot project proposes to build a robot using two distinct FPGAs that will interact with users wirelessly, using the labkit, a

More information

3READY. Android STB + Multiscreen Solution

3READY. Android STB + Multiscreen Solution 3READY Android STB + Multiscreen Solution Company Overview - Founded in 2009 - Core competence in SI & Development of STB + Multiscreen Solutions - 200+ experts in TV & VOD - 170+ software engineers -

More information

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM.

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM. VideoJet 8000 8-Channel, MPEG-2 Encoder ARCHITECTURAL AND ENGINEERING SPECIFICATION Section 282313 Closed Circuit Video Surveillance Systems PART 2 PRODUCTS 2.01 MANUFACTURER A. Bosch Security Systems

More information

Bringing an all-in-one solution to IoT prototype developers

Bringing an all-in-one solution to IoT prototype developers Bringing an all-in-one solution to IoT prototype developers W H I T E P A P E R V E R S I O N 1.0 January, 2019. MIKROE V E R. 1.0 Click Cloud Solution W H I T E P A P E R Page 1 Click Cloud IoT solution

More information

i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS

i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS The i3touch LCD touch solution provides crystal clear, high-definition

More information

MATLAB & Image Processing (Summer Training Program) 4 Weeks/ 30 Days

MATLAB & Image Processing (Summer Training Program) 4 Weeks/ 30 Days (Summer Training Program) 4 Weeks/ 30 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com Website: www.robospecies.com

More information

Image Processing Using MATLAB (Summer Training Program) 6 Weeks/ 45 Days PRESENTED BY

Image Processing Using MATLAB (Summer Training Program) 6 Weeks/ 45 Days PRESENTED BY Image Processing Using MATLAB (Summer Training Program) 6 Weeks/ 45 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com

More information

Instructions For Using Kindle Fire Hd 8.9 Camera

Instructions For Using Kindle Fire Hd 8.9 Camera Instructions For Using Kindle Fire Hd 8.9 Camera Settings To take photos with the camera on your Kindle Fire HD: To turn Automatic Uploads on or off, tap the Menu icon while in the Photos library, and

More information

16CH 1080p HD-SDI Security MAGIC Lite Series DVR System - Auto detects Analog/960H/HD-SDI

16CH 1080p HD-SDI Security MAGIC Lite Series DVR System - Auto detects Analog/960H/HD-SDI HD-SDI Magic Lite 1080p 16 CH Magic DVR detects Analog / 960H / HD-SDI camera automatically. H.264 High Compression CODEC Programmable Spot Out iphone Android remote view App Available. Crystal clear 1080p

More information

i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS

i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS i3touch COLLABORATE MORE EFFECTIVELY WITH INTERACTIVE TOUCH DISPLAYS The i3touch LCD touch solution provides crystal clear, high-definition

More information

IoT Software Platforms

IoT Software Platforms Politecnico di Milano Advanced Network Technologies Laboratory IoT Software Platforms in the cloud 1 Why the cloud? o IoT is about DATA sensed and transmitted from OBJECTS o How much data? n IPV6 covers

More information

1 Feb Grading WB PM Low power Wireless RF Transmitter for Photodiode Temperature Measurements

1 Feb Grading WB PM Low power Wireless RF Transmitter for Photodiode Temperature Measurements 1 Jan 21 2015341 Practice WB119 6 9PM Low power Wireless RF Transmitter for Photodiode Temperature Measurements 1 Jan 21 2015377 Practice WB119 6 9PM Gloovy 1 Jan 21 2015405 Practice WB119 6 9PM Machine

More information

Materials: Programming Objectives:

Materials: Programming Objectives: Lessons Lesson 1: Basic Chassis Overview TETRIX Getting Started Guide In this lesson, users will learn how to use the elements of the TETRIX system that will be involved in building the basic chassis of

More information

DEVELOPING IN THE IOT SPACE

DEVELOPING IN THE IOT SPACE DEVELOPING IN THE IOT SPACE Bruce Hulse Technology Fellow Office of the CTO ReDev B0st0n 2017 Over 35 years with PTC (via Prime Computer / Computervision) Pre-sales; R&D; Product Management; Office of

More information

Your EdVenture into Robotics You re a Controller

Your EdVenture into Robotics You re a Controller Your EdVenture into Robotics You re a Controller Barcode - Clap controlled driving meetedison.com Contents Introduction... 3 Getting started... 4 EdVenture 1 Clap controlled driving... 6 EdVenture 2 Avoid

More information

interactive displays

interactive displays interactive displays Intuitive collaboration The Avocor E series includes 20 x individual, ultra-fast touch points using Avocor Intelligent Touch, making the display ideal for collaborative environments.

More information

CREATE. CONTROL. CONNECT.

CREATE. CONTROL. CONNECT. CREATE. CONTROL. CONNECT. CREATE. CONTROL. CONNECT. DYVI offers unprecedented creativity, simple and secure operations along with technical reliability all in a costeffective, tailored and highly reliable

More information

MotionPro. Team 2. Delphine Mweze, Elizabeth Cole, Jinbang Fu, May Oo. Advisor: Professor Bardin. Midway Design Review

MotionPro. Team 2. Delphine Mweze, Elizabeth Cole, Jinbang Fu, May Oo. Advisor: Professor Bardin. Midway Design Review MotionPro Team 2 Delphine Mweze, Elizabeth Cole, Jinbang Fu, May Oo Advisor: Professor Bardin Midway Design Review 1 Project Review A projected game that can be played on any flat surface A step towards

More information

The software concept. Try yourself and experience how your processes are significantly simplified. You need. weqube.

The software concept. Try yourself and experience how your processes are significantly simplified. You need. weqube. You need. weqube. weqube is the smart camera which combines numerous features on a powerful platform. Thanks to the intelligent, modular software concept weqube adjusts to your situation time and time

More information

INSTALATION AND OPERATION MANUAL ABYSSAL OS Overlay Module Version 1.3

INSTALATION AND OPERATION MANUAL ABYSSAL OS Overlay Module Version 1.3 INSTALATION AND OPERATION MANUAL ABYSSAL OS Overlay Module Version 1.3 Thank you for purchasing the Abyssal OS Overlay Module for your ROV. This instruction manual contains all the information you ll need

More information

USER S MANUAL. Introduction

USER S MANUAL. Introduction ITEM NO. 8091 AGES: 8+ USER S MANUAL www.robosapienv2online.com Introduction Congratulations on choosing Robosapien V2, the next generation of Robosapien technology and personality. Now with even more

More information

The software concept. Try yourself and experience how your processes are significantly simplified. You need. weqube.

The software concept. Try yourself and experience how your processes are significantly simplified. You need. weqube. You need. weqube. weqube is the smart camera which combines numerous features on a powerful platform. Thanks to the intelligent, modular software concept weqube adjusts to your situation time and time

More information

Development of extemporaneous performance by synthetic actors in the rehearsal process

Development of extemporaneous performance by synthetic actors in the rehearsal process Development of extemporaneous performance by synthetic actors in the rehearsal process Tony Meyer and Chris Messom IIMS, Massey University, Auckland, New Zealand T.A.Meyer@massey.ac.nz Abstract. Autonomous

More information

SpringerBriefs in Electrical and Computer Engineering

SpringerBriefs in Electrical and Computer Engineering SpringerBriefs in Electrical and Computer Engineering More information about this series at http://www.springer.com/series/10059 Fatima Hussain Internet of Things Building Blocks and Business Models 123

More information

USING LIVE PRODUCTION SERVERS TO ENHANCE TV ENTERTAINMENT

USING LIVE PRODUCTION SERVERS TO ENHANCE TV ENTERTAINMENT USING LIVE PRODUCTION SERVERS TO ENHANCE TV ENTERTAINMENT Corporate North & Latin America Asia & Pacific Other regional offices Headquarters Headquarters Headquarters Available at +32 4 361 7000 +1 947

More information

Speech Recognition and Signal Processing for Broadcast News Transcription

Speech Recognition and Signal Processing for Broadcast News Transcription 2.2.1 Speech Recognition and Signal Processing for Broadcast News Transcription Continued research and development of a broadcast news speech transcription system has been promoted. Universities and researchers

More information

Bridging Legacy Systems & the Internet of Things. Matt Newton Director of Technical Marketing OPTO 22

Bridging Legacy Systems & the Internet of Things. Matt Newton Director of Technical Marketing OPTO 22 Bridging Legacy Systems & the Internet of Things Matt Newton Director of Technical Marketing OPTO 22 Overview A Tale of Two Turbines Why IoT? IoT Roadblocks How do we get there? Connecting the physical

More information

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A)

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE T I A Training Document Page 1 of 66 Module This document has been written by Siemens AG for training

More information

Architecture of Industrial IoT

Architecture of Industrial IoT Architecture of Industrial IoT December 2, 2016 Marc Nader @mourcous Branches of IoT IoT Consumer IoT (Wearables, Cars, Smart homes, etc.) Industrial IoT (IIoT) Smart Gateways Wireless Sensor Networks

More information

Software Quick Manual

Software Quick Manual XX177-24-00 Virtual Matrix Display Controller Quick Manual Vicon Industries Inc. does not warrant that the functions contained in this equipment will meet your requirements or that the operation will be

More information

The RedRat-X. Integration Guide

The RedRat-X. Integration Guide The RedRat-X Integration Guide Contents 1 Introduction... 3 2 Overview of the RedRat-X... 3 2.1 Front... 3 2.2 Rear... 3 3 RedRat Applications... 4 3.1 RedRat Device Manager... 4 3.2 Signal Database Utility...

More information

Intelligent Monitoring Software IMZ-RS300. Series IMZ-RS301 IMZ-RS304 IMZ-RS309 IMZ-RS316 IMZ-RS332 IMZ-RS300C

Intelligent Monitoring Software IMZ-RS300. Series IMZ-RS301 IMZ-RS304 IMZ-RS309 IMZ-RS316 IMZ-RS332 IMZ-RS300C Intelligent Monitoring Software IMZ-RS300 Series IMZ-RS301 IMZ-RS304 IMZ-RS309 IMZ-RS316 IMZ-RS332 IMZ-RS300C Flexible IP Video Monitoring With the Added Functionality of Intelligent Motion Detection With

More information

Implementation of A Low Cost Motion Detection System Based On Embedded Linux

Implementation of A Low Cost Motion Detection System Based On Embedded Linux Implementation of A Low Cost Motion Detection System Based On Embedded Linux Hareen Muchala S. Pothalaiah Dr. B. Brahmareddy Ph.d. M.Tech (ECE) Assistant Professor Head of the Dept.Ece. Embedded systems

More information

Design Principles and Practices. Cassini Nazir, Clinical Assistant Professor Office hours Wednesdays, 3-5:30 p.m. in ATEC 1.

Design Principles and Practices. Cassini Nazir, Clinical Assistant Professor Office hours Wednesdays, 3-5:30 p.m. in ATEC 1. ATEC 6332 Section 501 Mondays, 7-9:45 pm ATEC 1.606 Spring 2013 Design Principles and Practices Cassini Nazir, Clinical Assistant Professor cassini@utdallas.edu Office hours Wednesdays, 3-5:30 p.m. in

More information

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual ORM0022 EHPC210 Universal Controller Operation Manual Revision 1 EHPC210 Universal Controller Operation Manual Associated Documentation... 4 Electrical Interface... 4 Power Supply... 4 Solenoid Outputs...

More information

Classroom Projectors

Classroom Projectors Classroom Projectors Deliver engaging instruction and have multiple students work together on large projected lessons without breaking your budget. Backed by 24/7 support, classroom software, and our online

More information

Press Publications CMC-99 CMC-141

Press Publications CMC-99 CMC-141 Press Publications CMC-99 CMC-141 MultiCon = Meter + Controller + Recorder + HMI in one package, part I Introduction The MultiCon series devices are advanced meters, controllers and recorders closed in

More information

THE NEXT GENERATION OF CITY MANAGEMENT INNOVATE TODAY TO MEET THE NEEDS OF TOMORROW

THE NEXT GENERATION OF CITY MANAGEMENT INNOVATE TODAY TO MEET THE NEEDS OF TOMORROW THE NEXT GENERATION OF CITY MANAGEMENT INNOVATE TODAY TO MEET THE NEEDS OF TOMORROW SENSOR Owlet is the range of smart control solutions offered by the Schréder Group. Owlet helps cities worldwide to reduce

More information

A Demonstration Platform for Small Satellite Constellation Remote Operating and Imaging

A Demonstration Platform for Small Satellite Constellation Remote Operating and Imaging A Demonstration Platform for Small Satellite Constellation Remote Operating and Imaging *Yun-Hua Wu 1), Zhi-Ming Chen 2), Chun Jiang 3), Zheng-Quan Liu 4), Bing Hua 5), Feng Yu 6), and Feng-Ying Zheng

More information

SCode V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System

SCode V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System Core Technologies Image Compression MPEG4. It supports high compression rate with good image quality and reduces the requirement of

More information

Real-time body tracking of a teacher for automatic dimming of overlapping screen areas for a large display device being used for teaching

Real-time body tracking of a teacher for automatic dimming of overlapping screen areas for a large display device being used for teaching CSIT 6910 Independent Project Real-time body tracking of a teacher for automatic dimming of overlapping screen areas for a large display device being used for teaching Student: Supervisor: Prof. David

More information

Pivoting Object Tracking System

Pivoting Object Tracking System Pivoting Object Tracking System [CSEE 4840 Project Design - March 2009] Damian Ancukiewicz Applied Physics and Applied Mathematics Department da2260@columbia.edu Jinglin Shen Electrical Engineering Department

More information

IoT Challenges in H2020. Mirko Presser, MSci, MSc, BSS/BTECH/MBIT Lab

IoT Challenges in H2020. Mirko Presser, MSci, MSc, BSS/BTECH/MBIT Lab IoT Challenges in H2020 Mirko Presser, MSci, MSc, PhD @mirkopresser mirko.presser@btech.au.dk BSS/BTECH/MBIT Lab iotcomicbook.org 2 IoT will turn the world into data. - Kevin Ashton 3 4 2009 5 Applied

More information

Transparent Computer Shared Cooperative Workspace (T-CSCW) Architectural Specification

Transparent Computer Shared Cooperative Workspace (T-CSCW) Architectural Specification Transparent Computer Shared Cooperative Workspace (T-CSCW) Architectural Specification John C. Checco Abstract: The purpose of this paper is to define the architecural specifications for creating the Transparent

More information

CS101 Final term solved paper Question No: 1 ( Marks: 1 ) - Please choose one ---------- was known as mill in Analytical engine. Memory Processor Monitor Mouse Ref: An arithmetical unit (the "mill") would

More information

Lesson Sequence: S4A (Scratch for Arduino)

Lesson Sequence: S4A (Scratch for Arduino) Lesson Sequence: S4A (Scratch for Arduino) Rationale: STE(A)M education (STEM with the added Arts element) brings together strands of curriculum with a logical integration. The inclusion of CODING in STE(A)M

More information

Integrating Device Connectivity in IoT & Embedded devices

Integrating Device Connectivity in IoT & Embedded devices Leveraging Microsoft Cloud for IoT and Embedded Applications Integrating Device Connectivity in IoT & Embedded devices Tom Zamir IoT Solutions Specialist tom@iot-experts.net About me Tom Zamir IoT Solutions

More information

Smart Home. The beginning of a smarter home. Ambi Kodak LaMetric Netatmo Tend

Smart Home. The beginning of a smarter home. Ambi Kodak LaMetric Netatmo Tend Smart Home The beginning of a smarter home Ambi Kodak LaMetric Netatmo Tend Personalized Comfort - Made Easy With AI The world s First AI Enabled Smart Air Conditioner Controller - But what is AI? Nowadays,

More information

Is there a Future for AI without Representation?

Is there a Future for AI without Representation? Is there a Future for AI without Representation? Vincent C. Müller American College of Thessaloniki vmueller@act.edu June 12 th, 2007 - MDH 1 Brooks - a way out of our troubles? Brooks new AI to the rescue:

More information

Internet of Things - IoT Training

Internet of Things - IoT Training Internet of Things - IoT Training About Cognixia Cognixia, formerly known as Collabera TACT, is a Collabera Learning Solutions Company. Being a consistently awarded Digital Technology Training Company,

More information

INSTALATION AND OPERATION MANUAL ABYSSAL OS Overlay Module Version 1.0.1

INSTALATION AND OPERATION MANUAL ABYSSAL OS Overlay Module Version 1.0.1 INSTALATION AND OPERATION MANUAL ABYSSAL OS Overlay Module Version 1.0.1 Thank you for purchasing the Abyssal OS Overlay Module for your ROV. This instruction manual contains all the information you ll

More information

PRELIMINARY. QuickLogic s Visual Enhancement Engine (VEE) and Display Power Optimizer (DPO) Android Hardware and Software Integration Guide

PRELIMINARY. QuickLogic s Visual Enhancement Engine (VEE) and Display Power Optimizer (DPO) Android Hardware and Software Integration Guide QuickLogic s Visual Enhancement Engine (VEE) and Display Power Optimizer (DPO) Android Hardware and Software Integration Guide QuickLogic White Paper Introduction A display looks best when viewed in a

More information

C8491 C8000 1/17. digital audio modular processing system. 3G/HD/SD-SDI DSP 4/8/16 audio channels. features. block diagram

C8491 C8000 1/17. digital audio modular processing system. 3G/HD/SD-SDI DSP 4/8/16 audio channels. features. block diagram features 4 / 8 / 16 channel LevelMagic2 SDI-DSP with level or loudness (ITU-BS.1770-1/ ITU-BS.1770-2, EBU R128) control 16 channel 3G/HD/SD-SDI de-embedder 16 in 16 de-embedder matrix 16 channel 3G/HD/SD-SDI

More information

Casambi App User Guide

Casambi App User Guide Casambi App User Guide Version 1.5.4 2.1.2017 Casambi Technologies Oy Table of contents 1 of 28 Table of contents 1 Smart & Connected 2 Using the Casambi App 3 First time use 3 Taking luminaires into use:

More information

ITU-T Y.4552/Y.2078 (02/2016) Application support models of the Internet of things

ITU-T Y.4552/Y.2078 (02/2016) Application support models of the Internet of things I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU Y.4552/Y.2078 (02/2016) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET

More information

THE FUTURE OF VOICE ASSISTANTS IN THE NETHERLANDS. To what extent should voice technology improve in order to conquer the Western European market?

THE FUTURE OF VOICE ASSISTANTS IN THE NETHERLANDS. To what extent should voice technology improve in order to conquer the Western European market? THE FUTURE OF VOICE ASSISTANTS IN THE NETHERLANDS To what extent should voice technology improve in order to conquer the Western European market? THE FUTURE OF VOICE ASSISTANTS IN THE NETHERLANDS Go to

More information

TUPEX MOWI Wireless light control

TUPEX MOWI Wireless light control TUPEX MOWI Wireless light control 1 MOWI Systems and components CASAMBI TRIDONIC - basicdim Wireless ELT drivery DLCM-E-C2-BT eblue TCI drivery PROFESSIONALE CASAMBI OSRAM BT CONTROL LUXeye Sense DALI

More information

MAGICQLSeries-4CH1080pDVRSystem-SupportsEX- SDI/HD-SDI/960H/Analog/IP

MAGICQLSeries-4CH1080pDVRSystem-SupportsEX- SDI/HD-SDI/960H/Analog/IP MAGICQLSeries-4CH1080pDVRSystem-SupportsEX- SDI/HD-SDI/960H/Analog/IP EX-SDI 1080p 4 CH MagicDVRdetectsAnalog/960H/EX-SDI/HD-SDIcamerasautomatically Records up to 1 IP cameras REAL-TIME Live / 1080p@ Pentaplex

More information

Promotion Package Pricing

Promotion Package Pricing Promotion Package Pricing (For HDB flat, Condo, Small Office & Retail Shop less than 1200sqft) $1400 before GST for 4 camera package $1300 before GST for 3 camera package $1200 before GST for 2 camera

More information

The BBC micro:bit: What is it designed to do?

The BBC micro:bit: What is it designed to do? The BBC micro:bit: What is it designed to do? The BBC micro:bit is a very simple computer. A computer is a machine that accepts input, processes this according to stored instructions and then produces

More information

Exhibits. Open House. NHK STRL Open House Entrance. Smart Production. Open House 2018 Exhibits

Exhibits. Open House. NHK STRL Open House Entrance. Smart Production. Open House 2018 Exhibits 2018 Exhibits NHK STRL 2018 Exhibits Entrance E1 NHK STRL3-Year R&D Plan (FY 2018-2020) The NHK STRL 3-Year R&D Plan for creating new broadcasting technologies and services with goals for 2020, and beyond

More information

EasyAir Philips Field Apps User Manual. May 2018

EasyAir Philips Field Apps User Manual. May 2018 EasyAir Philips Field Apps User Manual May 2018 Content Introduction to this manual 3 Download App 4 Phone requirements 4 User Registration 5 Sign in 6 Philips Field Apps 7 EasyAir NFC 8 Features overview

More information

MAGICLiteSeries-16CH1080pDVRSystem-SupportsEX- SDI/HD-SDI/960H/Analog/IP

MAGICLiteSeries-16CH1080pDVRSystem-SupportsEX- SDI/HD-SDI/960H/Analog/IP MAGICLiteSeries-16CH1080pDVRSystem-SupportsEX- SDI/HD-SDI/960H/Analog/IP EX-SDI Magic Lite 1080p 16 CH MagicDVRdetectsAnalog/960H/EX-SDI/HD-SDIcamerasautomatically Records up to 4 IP cameras REAL-TIME

More information

ITU-T Y Functional framework and capabilities of the Internet of things

ITU-T Y Functional framework and capabilities of the Internet of things I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T Y.2068 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (03/2015) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET PROTOCOL

More information

Bridging the Interoperability Gap of the Internet of Things. BIG IoT Project. Rosa Ma Martin (inlab FIB, UPC) JORNADAS TÉCNICAS RedIRIS 2017

Bridging the Interoperability Gap of the Internet of Things. BIG IoT Project. Rosa Ma Martin (inlab FIB, UPC) JORNADAS TÉCNICAS RedIRIS 2017 Bridging the Interoperability Gap of the Internet of Things BIG IoT Project Rosa Ma Martin (inlab FIB, UPC) JORNADAS TÉCNICAS RedIRIS 2017 Content Project Overview Architecture Barcelona Pilot Questions

More information

a Collaborative Composing Learning Environment Thesis Advisor: Barry Vercoe Professor of Media Arts and Sciences MIT Media Laboratory

a Collaborative Composing Learning Environment Thesis Advisor: Barry Vercoe Professor of Media Arts and Sciences MIT Media Laboratory Musictetris: a Collaborative Composing Learning Environment Wu-Hsi Li Thesis proposal draft for the degree of Master of Science in Media Arts and Sciences at the Massachusetts Institute of Technology Fall

More information

Performance Projectors

Performance Projectors Performance Projectors Deliver engaging instruction and have multiple students work together on large, brilliantly projected lessons. We even offer laser models, so you will never have to change another

More information

15th International Conference on New Interfaces for Musical Expression (NIME)

15th International Conference on New Interfaces for Musical Expression (NIME) 15th International Conference on New Interfaces for Musical Expression (NIME) May 31 June 3, 2015 Louisiana State University Baton Rouge, Louisiana, USA http://nime2015.lsu.edu Introduction NIME (New Interfaces

More information

WAVES Cobalt Saphira. User Guide

WAVES Cobalt Saphira. User Guide WAVES Cobalt Saphira TABLE OF CONTENTS Chapter 1 Introduction... 3 1.1 Welcome... 3 1.2 Product Overview... 3 1.3 Components... 5 Chapter 2 Quick Start Guide... 6 Chapter 3 Interface and Controls... 7

More information

DigiPoints Volume 2. Student Workbook. Module 1 Components of a Digital System

DigiPoints Volume 2. Student Workbook. Module 1 Components of a Digital System Components of a Digital System Page 1.1 DigiPoints Volume 2 Module 1 Components of a Digital System Summary The content in this module includes an overview of the functional architecture of a digital cable

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education. Paper 1 May/June hours

Cambridge International Examinations Cambridge International General Certificate of Secondary Education. Paper 1 May/June hours Cambridge International Examinations Cambridge International General Certificate of Secondary Education *3483070646* INFORMATION AND COMMUNICATION TECHNOLOGY 047/2 Paper May/June 204 2 hours Candidates

More information

SCode V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System

SCode V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System Core Technologies Image Compression MPEG4. It supports high compression rate with good image quality and reduces the requirement of

More information

Building Intelligent Edge Solutions with Microsoft IoT

Building Intelligent Edge Solutions with Microsoft IoT Building Intelligent Edge Solutions with Microsoft IoT Vincent Hong IoT Solution Architect, Microsoft Global Black Belt Mia Kesselring Director IoT Products, TELUS Kevin Zhang IoT Applications Engineer,

More information

Outline. Why do we classify? Audio Classification

Outline. Why do we classify? Audio Classification Outline Introduction Music Information Retrieval Classification Process Steps Pitch Histograms Multiple Pitch Detection Algorithm Musical Genre Classification Implementation Future Work Why do we classify

More information

The Fernsehfee Blocks Out. Commercials. Fernsehfee

The Fernsehfee Blocks Out. Commercials. Fernsehfee TEST REPORT Satellite Receiver with Ad Blocker The Blocks Out Currently only suitable for the German-language TV market Recognizes commercial breaks during a TV program Can record TV programs without commercials

More information

FS1-X. Quick Start Guide. Overview. Frame Rate Conversion Option. Two Video Processors. Two Operating Modes

FS1-X. Quick Start Guide. Overview. Frame Rate Conversion Option. Two Video Processors. Two Operating Modes FS1-X Quick Start Guide Overview Matching up and synchronizing disparate video and audio formats is a critical part of any broadcast, mobile or post-production environment. Within its compact 1RU chassis,

More information

Internet of Things: Cross-cutting Integration Platforms Across Sectors

Internet of Things: Cross-cutting Integration Platforms Across Sectors Internet of Things: Cross-cutting Integration Platforms Across Sectors Dr. Ovidiu Vermesan, Chief Scientist, SINTEF DIGITAL EU-Stakeholder Forum, 31 January-01 February, 2017, Essen, Germany IoT - Hyper-connected

More information

In this paper, the issues and opportunities involved in using a PDA for a universal remote

In this paper, the issues and opportunities involved in using a PDA for a universal remote Abstract In this paper, the issues and opportunities involved in using a PDA for a universal remote control are discussed. As the number of home entertainment devices increases, the need for a better remote

More information

Internet of Things (IoT) and Big Data DOAG 2016 Big Data Days

Internet of Things (IoT) and Big Data DOAG 2016 Big Data Days 30.9.2016 DOAG 2016 Big Data Days Guido Schmutz BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH Guido Schmutz Working for Trivadis

More information

Premium INSTALLATION AND USER GUIDE ENGLISH TAHOMA BOX. - INSTALLATION AND USER GUIDE. Rev A _01-16

Premium INSTALLATION AND USER GUIDE ENGLISH TAHOMA BOX.   - INSTALLATION AND USER GUIDE. Rev A _01-16 Premium INSTALLATION AND USER GUIDE ENGLISH - INSTALLATION AND USER GUIDE TAHOMA BOX Rev A _01-16 www.somfy.com TaHoma, connected homes the Somfy way! Remotely control and manage the devices in your home

More information

Do you have a mature IoT solution? Join us with the Open Call. Alicia Cano - Medtronic.

Do you have a mature IoT solution? Join us with the Open Call. Alicia Cano - Medtronic. Do you have a mature IoT solution? Join us with the Open Call Alicia Cano - Medtronic www.activageproject.eu ACTIVAGE MISSION Contribute to the older people well-being to prolong an active and healthy

More information

ENGINEERING COMMITTEE Energy Management Subcommittee SCTE STANDARD SCTE

ENGINEERING COMMITTEE Energy Management Subcommittee SCTE STANDARD SCTE ENGINEERING COMMITTEE Energy Management Subcommittee SCTE STANDARD SCTE 237 2017 Implementation Steps for Adaptive Power Systems Interface Specification (APSIS ) NOTICE The Society of Cable Telecommunications

More information

USER S MANUAL. ITEM NO AGES: 8+

USER S MANUAL.   ITEM NO AGES: 8+ USER S MANUAL www.robosapienv2online.com ITEM NO. 8091 AGES: 8+ Introduction Congratulations on choosing Robosapien V2, the next generation of Robosapien technology and personality. Now with even more

More information

Term OVERVIEW ARTS with Anna Keeping beat/rhythm Elements of music ( tempo, pitch, beat, rhythm) Exploring instruments and how they are played

Term OVERVIEW ARTS with Anna Keeping beat/rhythm Elements of music ( tempo, pitch, beat, rhythm) Exploring instruments and how they are played Year level R Term 3 2017 OVERVIEW ARTS with Anna Keeping beat/rhythm Elements of music ( tempo, pitch, beat, rhythm) Exploring instruments and how they are played Percussion compositions 1 Keeping beat/rhythm

More information

SELECTING A HIGH-VALENCE REPRESENTATIVE IMAGE BASED ON IMAGE QUALITY. Inventors: Nicholas P. Dufour, Mark Desnoyer, Sophie Lebrecht

SELECTING A HIGH-VALENCE REPRESENTATIVE IMAGE BASED ON IMAGE QUALITY. Inventors: Nicholas P. Dufour, Mark Desnoyer, Sophie Lebrecht Page 1 of 74 SELECTING A HIGH-VALENCE REPRESENTATIVE IMAGE BASED ON IMAGE QUALITY Inventors: Nicholas P. Dufour, Mark Desnoyer, Sophie Lebrecht TECHNICAL FIELD methods. [0001] This disclosure generally

More information

3 rd International Conference on Smart and Sustainable Technologies SpliTech2018 June 26-29, 2018

3 rd International Conference on Smart and Sustainable Technologies SpliTech2018 June 26-29, 2018 Symposium on Embedded Systems & Internet of Things in the frame of the 3 rd International Conference on Smart and Sustainable Technologies (), technically co-sponsored by the IEEE Communication Society

More information

USER INTERFACE. Real-time video has helped Diebold cut training time by 35 percent as well as improve call resolution times.

USER INTERFACE. Real-time video has helped Diebold cut training time by 35 percent as well as improve call resolution times. Acelity USER INTERFACE CLOUD SOFTWARE Chris Lynch of Acelity discusses what user interface really means and why it is a critical consideration for today s field service solutions. A property management

More information

Whole House Lighting Controller

Whole House Lighting Controller User Guide Whole House Lighting Controller LC7001 radiant RF Lighting Control adorne Wi-Fi Ready Lighting Control Compliance FCC Notice FCC ID These devices comply with part 15 of the FCC Rules. Operation

More information

IoT Strategy Roadmap

IoT Strategy Roadmap IoT Strategy Roadmap Ovidiu Vermesan, SINTEF ROAD2CPS Strategy Roadmap Workshop, 15 November, 2016 Brussels, Belgium IoT-EPI Program The IoT Platforms Initiative (IoT-EPI) program includes the research

More information

Sequential Logic. Introduction to Computer Yung-Yu Chuang

Sequential Logic. Introduction to Computer Yung-Yu Chuang Sequential Logic Introduction to Computer Yung-Yu Chuang with slides by Sedgewick & Wayne (introcs.cs.princeton.edu), Nisan & Schocken (www.nand2tetris.org) and Harris & Harris (DDCA) Review of Combinational

More information

Microbolometer based infrared cameras PYROVIEW with Fast Ethernet interface

Microbolometer based infrared cameras PYROVIEW with Fast Ethernet interface DIAS Infrared GmbH Publications No. 19 1 Microbolometer based infrared cameras PYROVIEW with Fast Ethernet interface Uwe Hoffmann 1, Stephan Böhmer 2, Helmut Budzier 1,2, Thomas Reichardt 1, Jens Vollheim

More information

PROTOTYPE OF IOT ENABLED SMART FACTORY. HaeKyung Lee and Taioun Kim. Received September 2015; accepted November 2015

PROTOTYPE OF IOT ENABLED SMART FACTORY. HaeKyung Lee and Taioun Kim. Received September 2015; accepted November 2015 ICIC Express Letters Part B: Applications ICIC International c 2016 ISSN 2185-2766 Volume 7, Number 4(tentative), April 2016 pp. 1 ICICIC2015-SS21-06 PROTOTYPE OF IOT ENABLED SMART FACTORY HaeKyung Lee

More information

MAGICUSeries-4CH1080pDVRSystem4Kouput- SupportsEX-SDI/HD-SDI/HD-TVI/A-HD/960H/Analog/ IP

MAGICUSeries-4CH1080pDVRSystem4Kouput- SupportsEX-SDI/HD-SDI/HD-TVI/A-HD/960H/Analog/ IP MAGICUSeries-4CH1080pDVRSystem4Kouput- SupportsEX-SDI/HD-SDI/HD-TVI/A-HD/960H/Analog/ IP Magic U 1080p 3MP 4 CH MagicUDVRdetectsAnalog/960H/HD-TVI/A-HD/EX-SDI/HD-SDIcameras automatically Records up to

More information

LedSet User s Manual V Official website: 1 /

LedSet User s Manual V Official website:   1 / LedSet User s Manual V2.6.1 1 / 42 20171123 Contents 1. Interface... 3 1.1. Option Menu... 4 1.1.1. Screen Configuration... 4 1.1.1.1. Instruction to Sender/ Receiver/ Display Connection... 4 1.1.1.2.

More information

FOSS PLATFORM FOR CLOUD BASED IOT SOLUTIONS

FOSS PLATFORM FOR CLOUD BASED IOT SOLUTIONS FOSS PLATFORM FOR CLOUD BASED IOT SOLUTIONS FOSDEM 2018 04.02.2018 Bosch Software Innovations GmbH Dr. Steffen Evers Head of Open Source Services Eclipse Kuksa Demo Open Source Connected Car Platform In-Vehicle

More information

UVM Testbench Structure and Coverage Improvement in a Mixed Signal Verification Environment by Mihajlo Katona, Head of Functional Verification, Frobas

UVM Testbench Structure and Coverage Improvement in a Mixed Signal Verification Environment by Mihajlo Katona, Head of Functional Verification, Frobas UVM Testbench Structure and Coverage Improvement in a Mixed Signal Verification Environment by Mihajlo Katona, Head of Functional Verification, Frobas In recent years a number of different verification

More information