Overview of Architectures with Arduino Boards As Building Blocks for Data

Total Page:16

File Type:pdf, Size:1020Kb

Overview of Architectures with Arduino Boards As Building Blocks for Data PAPER OVERVIEW OF ARCHITECTURES WITH ARDUINO BOARDS AS BUILDING BLOCKS FOR DATA ACQUISITION AND CONTROL… Overview of Architectures with Arduino Boards as Building Blocks for Data Acquisition and Control Systems http://dx.doi.org/10.3991/ijoe.v12i07.5818 V.M. Cvjetkovic and M. Matijevic University of Kragujevac, Kragujevac, Serbia Abstract—Standard SBCs (Single Board Computer) with Some or all of these functionalities can be present in- number of standard shields and sensors can be used as cluding also some specific not mentioned here. Mentioned building blocks for rapid development of network of intelli- functionalities are quite general and do not pose limita- gent devices with sensing, control and Internet access. Ar- tions by themselves, as the real limits of IoT devices are duino family of boards having high popularity and large mainly determined by processing power, speed, available number of sold units featuring open access, reliability, ro- memory, power consumption and similar characteristics. bustness, standard connections and low prices, possesses If the task for some IoT device is too demanding, the large potential for implementation of autonomous remote possibility of logically redefining the task so that more measurement and control systems of various levels of com- than one IoT device could be used and combined to fulfill plexity. As Arduino boards can function independently, they the given task, should be considered. That further suggests are complete small computer platforms that can perform the use of a number of inexpensive IoT devices with small various tasks requiring some kind of interaction with the computing power in a network of devices possessing a outer world. Arduino boards can be used and programmed significant net effect not possible with a single IoT device. in various ways, and can be arranged in various combina- tions forming some typical implementation architectures Regardless of used architecture, including a single de- that this paper discusses. Starting from basic and simple vice or many devices, each device should operate reliably configurations, more advanced are gradually considered and in predictable way. from the aspects of chosen way of programming and com- Following chapters are organized in this way: bining with other boards. Special attention is devoted to Chapter 2 Overview of Arduino family, with currently NodeJS as programming platform for Arduino boards and available Arduino general purpose boards grouped accord- considerations of libraries used with Arduino boards like ing to processors on board. Johnny-Five, Galileo-io firmata equivalent, mraa library Chapter 3 Overview of programming modes and con- and other ways of program access to GPIO like Linux Sysfs. nections with Arduino boards, enabling various acquisi- As typical representatives of Arduino boards’ family, the tion and control configurations. Arduino Uno, Arduino Due and Arduino Galileo were se- lected, with justification that all other not mentioned boards Chapter 4 Overview of architectures with Arduino are somewhere between those selected, according to official boards hardware specifications. Chapter 5 Conclusion References and Authors Index Terms—Arduino, configurations, Johnny-Five, NodeJS II. OVERVIEW OF ARDUINO FAMILY Arduino family of boards was selected among others I. INTRODUCTION for its popularity resulting in a large number of users and a Appearance and development of various SBCs like Ar- number of boards to choose from. Besides boards that are duino [1, 2], BeagleBone [3], RaspberryPi [4], RIoT- more like general purpose computer devices, there are also board [5], PandaBoard [6], OLiMEX [7] and others to- boards called “shields” that extend functionalities of gether with mobile phones, created enormous potential for boards for purposes like Ethernet, WiFi and GSM com- building various devices capable of interaction with envi- munication, use of SD cards, motor and relays control, ronment, data processing and network communication. space orientation and other. Such devices are nowadays also seen and classified as Arduino boards are based on Atmel microcontroller being part of IoT (Internet of Things). Required function- units (MCU). On some more powerful devices there is an alities of IoT devices are usually: additional microprocessor based computer providing • M2M (Machine to Machine) communication greater processing power and network communication. Arduino boards [8] Uno, Nano, Mini 05, Mega 2560, • Some kind of data acquisition using adequate sensors Leonardo, Micro, Robot, Esplora are based on Atmel • Local processing of acquired data MCUs with AVR architecture. • Control of some local system • ATmega328 – Uno Nano and Mini 05 • Upload of acquired and processed data to some cloud • ATmega2560 – Mega 2560 network storage • ATmega32u4 – Leonardo, Micro, Robot, Esplora 10 http://www.i-joe.org PAPER OVERVIEW OF ARCHITECTURES WITH ARDUINO BOARDS AS BUILDING BLOCKS FOR DATA ACQUISITION AND CONTROL… Some of the boards have variants with added function- possess general purpose inputs and outputs (GPIO). Pres- alities: ence of GPIO is the main difference from usual computer • Arduino Ethernet (ATmega328) based on Uno, systems for everyday use – desktop, laptop, tablets and Ethernet enabled, Micro SD card smart phones. GPIO has two main types of input / output system, analog and digital. All Arduino boards have ana- • Mega ADK (Accessory Development Kit) (AT- log inputs (AI) for voltage measurement. Number of ana- mega2560) for use with Android phones log input pins and resolution varies for different boards. • Leonardo ETH (ATmega32u4) based on Leonardo, Analog output (AO) can be implemented with digital Ethernet enabled, Micro SD card outputs as PWM (Pulse Width Modulation) or with ADC All previously mentioned Arduino devices have AVR (Analog Digital Converter) circuit. Digital pins can be MCU operating at 16MHz frequency. used both as input and output (DIO). Arduino boards support USB communication with external computer Arduino Due is different, as it is based on Atmel running Arduino IDE (Integrated Development Environ- SAM3X8E MCU with 32-bit ARM Cortex-M3 CPU ment) for programming in language resembling C. Other (Central Processing Unit) core running on 84MHz. Also, supported communications types are UART (Universal Due has significantly larger memory – SRAM (Static Asynchronous Receiver Transmitter) TTL (Transistor RAM) for program and flash memory for uploaded code. Transistor Logic), I2C (Internal IC) / TWI (Two Wire Arduino M0 and M0 Pro are advanced versions of Uno Interface) and SPI (Serial Peripheral Interface). SPI is based on SAMD21 MCU, with 32-bit ARM Cortex M0 mainly used for connecting boards with various shields as core running at 48MHz. it provides very fast communication. UART is hardware Arduino boards Industrial 101, Tian, Yun, Yun Mini, implemented for USB on digital lines 0 and 1, but it can are MCU based, but also have additional MIPS processor be also quite easily software implemented with provided [9] based computer supporting Linino [10] Linux distribu- SoftwareSerial library using digital I/O. Serial communi- tion based on OpenWRT [11]. Additional Linux computer cation is convenient for data exchange between boards. provides extra processing power for support of MCU TWI can also be used for communication between boards acquisition and control tasks. or other devices with provided Wire library and using Boards Intel Galileo and Intel Galileo Gen 2 are based SDA (Serial DAta) and SCL (Serial CLock) lines. on Intel Quark SoC X10000, a 32-bit Intel Pentium pro- Besides GPIO, very important programming aspect is cessor-class system on a chip (SoC). That processor runs available memory which is limited as it is part of MCU, both the Linux and Arduino acquisition code. Intel Galileo and organized as flash memory for code, SRAM (Static boards are pin to pin and software compatible with other RAM) for program execution and EEPROM (Electrically Arduino boards. Erasable Programmable Read-Only Memory) as perma- Finally, the Intel Edison board is based on two proces- nent storage for data. Some boards like Yun, Galileo, sors, the Intel Atom 500MHz dual-core, dual-threaded Arduino Ethernet and shields like Ethernet, also provide CPU and an Intel Quark 100MHz MCU. program access to SD memory cards. Dynamic character- istics of boards like maximum rate of measurements de- From this brief overview of current Arduino boards, it pend on many factors, with MCU operating frequency as can be seen that there are two kinds of boards: one of the important but rough indicators. Rates for digital • With MCU as single processor capable of running IO operations are higher than for analog measurements Arduino code, called sketch which use analog digital converter (ADC) circuit that in • Boards with added processor for running Linux general requires many processor cycles for conversion. which provides additional processing power and sup- Features of selected boards are compared in Table 1. ports acquisition and control tasks of MCU • Intel Galileo and Intel Galileo Gen 2 boards as a spe- TABLE I. cial case of boards running Linux where Intel proces- FEATURES OF SELECTED BOARDS sor executes both Arduino sketch and Linux Board Arduino Uno board is a typical representative of MCU Uno Due Galileo only based boards, as an effort was made for other boards features to be pin to pin and software compatible. AI 6, 10 bits 12, 12 bits 6, 12 bits Arduino Due is a top representative of high perfor- AO 6, PWM, 8
Recommended publications
  • LAB-Manual Iot for Intel Edison
    Evaluation of Intel Architecture An Experimental Manual for Computer Architecture, Advanced Microprocessor, System On Chip (SoC) and Compiler Design In association with Intel Collaboration Program Designed by: Zeenat Shareef, MTech (Mobile and Pervasive Computing) Under the guidance of: Dr. S.R.N Reddy, HOD and Associate Professor, CSE Mr. Naveen , Mr. Sumit Verma, Intel Department of Computer Science Indira Gandhi Delhi Technical University for Women Kashmere Gate, Delhi-110006 LIST OF EXPERIMENTS EXP. No Description of Experiment 1. To familiarize with Intel Edison. 2. Write the steps to install the drivers and IDE for Intel Edison 3. Write the steps to configure Intel Edison and enable the WIFI module 4. To enable the Bluetooth module in Intel Edison and connect with a device. 5. Write the steps to blink the LED on the Intel Edison using Eclipse CDT remote explorer(WiFi). EXPERIMENT 1 AIM: To familiarize with Intel Edison. INTEL EDISON- A SOC based on Intel Atom The Intel Edison compute module is designed to lower the barriers to entry for anyone prototyping and producing IoT and wearable computing products. Intel Edison contains the core system processing and connectivity elements: processor, PMIC, RAM, eMMC, and Wi- Fi/BT. Intel Edison is a module that interfaces with end-user systems via a 70-pin connector. The Intel Edison compute module does not include any video input or output interfaces (MIPI CSI, MIPI DSI, HDMI, etc.). Internal image processing and graphics processing cores are disabled (ISP, PowerVR, VED, VEC, VSP, etc.). Intel Edison relies on the end-user support of input power.
    [Show full text]
  • Introduction to Microcontrollers 9/16/2017
    Introduction to Microcontrollers 9/16/2017 Introduction to Microcontrollers June 2017 Scott A. Theis — W2LW Rev 5 (08/02/2017) What’s it all about • How to get started • What are some of the common controller options • General introduction to terms and types • Input and Output • Information on getting started Sampling of Microcontrollers • tinyAVR — As little as 6 pins, over 1MHz • PICAXE — As little as 8 pins, up to 64MHz • Ardunio (ATMega) — Standalone or on board, 16+MHz • Raspberry Pi — Single-Board Computer, up to (and over) 1GHz • There are dozens of common microcontrollers Propeller BasicStamp 8051 MIP • There are a number of single-board computers: Beagle Bone NetDuino Intel Galileo ASUS Tinker Scott A. Theis, W2LW 1 Introduction to Microcontrollers 9/16/2017 Focus • Arduino and PICAXE— Microcontroller: • Well suited for specific application • Code is lightweight (so is memory) • Does not have an operating system per se • Raspberry Pi — Single-Board Computer: • Really a small computer with GPIO pins and lots of interface logic • Can be used for a wide spectrum of tasks • Lots of options and compute power Covering…. • Introduction, Jargon and Background • General Purpose Input and Output (GPIO) • Integrated Development Environment (IDE) • Some Examples Introduction, Background and Jargon Scott A. Theis, W2LW 2 Introduction to Microcontrollers 9/16/2017 The Arduino • Created as a simple, open source, easy to use platform • Developed in 2003 as a less costly replacement to the BASIC Stamp • Support has grown dramatically in the past
    [Show full text]
  • Ethernet Access and Remote Control with Intel Galileo Prepared By
    Ethernet Access and Remote Control with Intel Galileo Prepared by Derrick Anang For EECE456 Embedded Systems Design Lab Instructor: Dr. Charles Kim Electrical and Computer Engineering Howard University Class Web: www.mwftr.com/emblab.html 1 INTEL® GALILEO ∗ Intel® Galileo Gen2 Board A microcontroller board based on the Intel® Quark SoC X1000 application processor (a 32-bit Intel® Pentium brand system on a chip). The 32-bit processor can run at up to 400MHz and has a 512KB SRAM built in. This board functions as a fully featured, cost-effective development platform which complements with the Arduino software to provide an advanced compute functionality. It basically serves as an interface between the Arduino Software (IDE) and the Grove system components. ∗ It comes with an on-board 10/100 Mb/s Ethernet connector port. ∗ This on-board Ethernet port is accessible via Linux and Arduino IDE using the Ethernet Library. 2 GETTING STARTED HARDWARE COMPONENTS ∗ Intel® Galileo Gen 2 Board ∗ Micro-SD Card ∗ USB to 6-pin FTDI Serial Cable ∗ Ethernet Cable ∗ Grove Starter Kit ∗ An Ethernet Switch or Wi-Fi Router with a free Ethernet port (connects Galileo board to the Local Access Network (LAN) being used) ∗ Micro B to Type A USB Cable ∗ 12 VDC, 1.5A Power Supply 3 SOFTWARE COMPONENTS ∗ Arduino Integrated Development Environment (IDE) for Galileo ∗ Intel XDK IoT Edition (Download link: http://software.intel.com/en- us/html5/xdk-iot) ∗ Terminal Emulator e.g. PuTTy (http://www.putty.org/)or Bonjour Browser for Mac OS, link: (http://www.tildesoft.com/files/BonjourBrowser.dmg)
    [Show full text]
  • An Efficient Solution of Technological Thrust for Iot in COVID-19
    International Journal of Engineering in Computer Science 2020; 2(2): 30-33 E-ISSN: 2663-3590 P-ISSN: 2663-3582 IJECS 2020; 2(2): 30-33 An efficient solution of technological thrust for IoT in Received: 22-05-2020 Accepted: 24-06-2020 COVID-19 era Rakesh Kumar RNTU, Bhopal, Rakesh Kumar, Pratishtha Bowade and Rajiv Saxena Madhya Pradesh, India Pratishtha Bowade Abstract SIRT, Bhopal, The stringent connectedness between the digital and physical world is referred to as IoT (Internet of Madhya Pradesh, India Things). In the COVID-19 era, technology is being implemented in a rigorous manner to handle and balance the situation. Internet of Things (IoT) technology is playing a great role in all the aspects. In Rajiv Saxena this research paper researcher compare four hardware platforms and concluded the best suitability of SIRT, Bhopal, the hardware platform. Researchers provide the solution to the technological thrust for the IoT in terms Madhya Pradesh, India of the hardware platform. Keywords: internet of things, COVID-19, technological thrust, hardware platforms Introduction The term "Internet of Things" is used as a keyword to cover various aspects related to Internet and Web expansion in the physical space, through the widespread deployment of distributed geographical devices with integrated use of Internet-Things that foresees the future where digital and physical objects can be linked, through relevant knowledge and [1] communication technologies, enabling a whole new category of applications and services . The Internet of Things (IoT) is one of the most promising research topics in engineering and business. It is believed that the IoT will revolutionize the way people live in the near future by connecting ordinary things with each other remotely and establishing channels of communication between them.
    [Show full text]
  • Galileo Datasheet
    Galileo Datasheet Galileo Front Galileo Back Overview Galileo is a microcontroller board based on the Intel® Quark SoC X1000 Application Processor, a 32-bit Intel Pentium-class system on a chip (datasheet). It is the first board based on Intel® architecture designed to be hardware and software pin-compatible with Arduino shields designed for the Uno R3. Digital pins 0 to 13 (and the adjacent AREF and GND pins), Analog inputs 0 to 5, the power header, ICSP header, and the UART port pins (0 and 1), are all in the same locations as on the Arduino Uno R3. This is also known as the Arduino 1.0 pinout. Order Number: 329681-003US Galileo is designed to support shields that operate at either 3.3V or 5V. The core operating voltage of Galileo is 3.3V. However, a jumper on the board enables voltage translation to 5V at the I/O pins. This provides support for 5V Uno shields and is the default behavior. By switching the jumper position, the voltage translation can be disabled to provide 3.3V operation at the I/O pins. Of course, the Galileo board is also SW compatible with the Arduino SW Development Environment, which makes usability and introduction a snap. In addition to Arduino HW and SW compatibility, the Galileo board has several PC industry standard I/O ports and features to expand native usage and capabilities beyond the Arduino shield ecosystem. A full sized mini-PCI Express* slot, 100Mb Ethernet port, Micro-SD slot, RS-232 serial port, USB Host port, USB Client port, and 8MByte NOR flash come standard on the board.
    [Show full text]
  • An Open Source Tool for Iot Development What Is the Product
    An Open Source Tool for IoT Development What is the product 2 The technology: Hardware ▪ Before Raspberry Pi Currently experiencing rapid growth 7,000 ▪ expensive embedded devices 6,000 ▪ few devices 5,000 4,000 ▪ Raspberry Pi changed 3,000 the game 2,000 1,000 0 2014 2015 2016 Number of connected devices (millions) 3 Our journey: The vision ▪ Goal: ▪ A new approach towards engineering ▪ IoT accessible to everyone Create, modify, tweak, customize current solutions to your needs and use cases 4 The IoT stack The problem • Arduino (Uno) does well on Level 2 but does not follow the upper stack • Raspberry Pi follows the full stack, but lacks the benefits of Arduino 5 Microcontrollers vs Embedded Boards ▪ Arduino Yun preferred to Raspberry Pi ▪ The fault ▪ development tools ▪ accessibility Most of the projects are not IoT projects, they fall into electronics or programming 6 The solution ▪ Transfer the accessibility typical of Arduino to Raspberry Pi Ease to use Direct access High Use from productivity anywhere 7 Our tools for IoT : Wyliodrin ▪ Since 2013 ▪ Fully Web-based ▪ Complex IDE ▪ Open Source components ▪ Free for basic use ▪ Supports various hardware: Arduino Yun, Raspberry Pi, Intel® Galileo, Intel® Edison, UDOO, BeagleBone Black 8 Wyliodrin STUDIO ▪ Open Source ▪ Available for ▪ Arduino Yun ▪ UDOO Neo ▪ Raspberry Pi ▪ BeagleBone Black ▪ Works locally 9 Wyliodrin STUDIO Library manager Ethernet / WiFi Run project connection manager Project Manager Connected board Task manager Code Close board connection Show / hide console Board
    [Show full text]
  • Iot Configuration for Industrial and Domestic Water Saving Monitoring
    ARISTOTLE UNIVERSITY OF THESSALONÍKI COMPUTER SCIENCE DEPARTMENT IoT Configuration for Industrial and Domestic Water Saving Monitoring Iraklis Moutidis Advisor: Ioannis Stamelos 1 Abstract The main objective of the thesis is to implement a water flow monitoring system, using a water flow sensor, the Arduino prototyping board and the Raspberry Pi board. The system should be efficient regarding the electricity consumption and flexible regarding the water installation it will be placed. The information obtained from the sensor(s) is uploaded to a cloud platform (Thingspeak.com) and also locally stored on the Raspberry Pi, which is used as a server for any boards like the Arduino that control a sensor. The data can be further processed to obtain more information about the water consumption of the installation. 2 Contents 1. Introduction………………………..………………………………………..………..……6 1.1 Research Background……………………………………………………………….6 1.2 Problem Statement…………………………………………………………………..7 1.3 Objective of the Study……………………………………………………………….8 1.4 Scope of the Study…………………………………………………………………..8 2. Wireless Sensor Networks………….………………………..……………………….9 2.1 Introduction…….…...………………………………………………………………...9 2.2 Types of Wireless Sensor Networks……………………………………………...10 2.3 Applications………………………………………………………………………….12 2.3.1 Military Applications…….…………………………………………………13 2.3.2 Environmental Monitoring………………………………………………..13 2.3.3 Inventory Monitoring……………………………………………………...15 2.3.4 Health Applications………………………………………………………..16 2.4 Internal Sensor System……………..……………………………………………..16
    [Show full text]
  • ODROID Magazine
    I/O Shield access • Install and learn the basics of Rebol now! Year One Issue #2 Feb 2014 ODROIDMagazine Turn your ODROID into a: GIANT TABLET And create the ultimate Android experience! High Performance computing at home • Meet an Odroidian Creation and fine granular control Mauro Ribeiro, Senior Software engineer • Estimating Radio net interference: Using Java mutithreading • Linux Gaming - emulators • Start programming right away! • The art of multi boxing • USB Gadget drivers • 811.02ac router with odroid XU Dominate your device ports to do everything Get up to 433mbit/sec EDITORIAL service to the world-wide ODROID and Open Source communities, Hard Kernel is proud to present its newest contribution to ARM technology: A ODROID Magazine, a free monthly PDF e-zine! This cutting-edge online publication brings you the latest ODROID news, as well as featured articles from the expert community that has grown around the amaz- ing ODROID family of micro-powerhouse computers. Intended for all levels of expertise from beginner to guru, ODROID Magazine features definitive guides for new owners, with easy-to-follow steps in setting up your ODROID, installing operating systems and software, and troubleshooting common issues. For more technical users, each month will feature expert tips, hacker discus- sions, cutting-edge projects, and technical articles to explore new ways of making your ODROID even more versatile. Hard Kernel’s ODROID Magazine is an ideal opportunity for our community to come together to share and contribute articles, so that everyone can be successful with their ODROID. Each month, a series of article topics will be posted for consideration, and all community members are encouraged to send submissions in exchange for monthly rewards for those selected for publication.
    [Show full text]
  • Lesson 7 Programming Embedded Galileo, Raspberry Pi, Beaglebone and Mbed Platforms
    Lesson 7 Programming Embedded Galileo, Raspberry Pi, BeagleBone and mBed Platforms Chapter-9 L07: "Internet of Things " , Raj Kamal, 2017 1 Publs.: McGraw-Hill Education Development Of Programs For Prototype Development Platforms • Done using an IDE • The cycles of edit-test-debug used • When the simulated results show the successful test runs of the programs, then program instructions embedded Chapter-9 L07: "Internet of Things " , Raj Kamal, 2017 2 Publs.: McGraw-Hill Education Intel Galileo IDE for Windows • Downloadable from Galileo website • Intel Galileo and Arduino combined features • Similarity of IDE with Arduino • Compatibility: Compatible with Arduino shields and similar ICSP header, serial port, • 14 digital I/O pins and 6 analog inputs Chapter-9 L07: "Internet of Things " , Raj Kamal, 2017 3 Publs.: McGraw-Hill Education Intel Galileo IDE for Windows • Ethernet Library: Compatible in usability with Arduino Ethernet library and can connect with HTTP connection using standard WebClient example • PCI Express Mini Cards: can connect to GSM, Bluetooth, WiFi cards using Arduino’s WiFi library. • USB Host Port: USB is dedicated port and usable with Arduino USB Host library and • keyboard or mouse connection to computers. Chapter-9 L07: "Internet of Things " , Raj Kamal, 2017 4 Publs.: McGraw-Hill Education Intel Galileo IDE for Windows • TWI/I2C, SPI Support, Serial Connectivity and MicroSD Support • Compatible with standard Arduino libraries. • Linux distribution running on board: Just 8 MB flash enables node.js (for web projects)
    [Show full text]
  • Proyecto Fin De Grado
    ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA Y SISTEMAS DE TELECOMUNICACIÓN PROYECTO FIN DE GRADO TÍTULO: Despliegue de Liota (Little IoT Agent) en Raspberry Pi AUTOR: Ricardo Amador Pérez TITULACIÓN: Ingeniería Telemática TUTOR (o Director en su caso): Antonio da Silva Fariña DEPARTAMENTO: Departamento de Ingeniería Telemática y Electrónica VºBº Miembros del Tribunal Calificador: PRESIDENTE: David Luengo García VOCAL: Antonio da Silva Fariña SECRETARIO: Ana Belén García Hernando Fecha de lectura: Calificación: El Secretario, Despliegue de Liota (Little IoT Agent) en Raspberry Pi Quizás de todas las líneas que he escrito para este proyecto, estas sean a la vez las más fáciles y las más difíciles de todas. Fáciles porque podría doblar la longitud de este proyecto solo agradeciendo a mis padres la infinita paciencia que han tenido conmigo, el apoyo que me han dado siempre, y el esfuerzo que han hecho para que estas líneas se hagan realidad. Por todo ello y mil cosas más, gracias. Mamá, papá, lo he conseguido. Fáciles porque sin mi tutor Antonio, este proyecto tampoco sería una realidad, no solo por su propia labor de tutor, si no porque literalmente sin su ayuda no se hubiera entregado a tiempo y funcionando. Después de esto Antonio, voy a tener que dejarme ganar algún combate en kenpo como agradecimiento. Fáciles porque, sí melones os toca a vosotros, Alex, Alfonso, Manu, Sama, habéis sido mi apoyo más grande en los momentos más difíciles y oscuros, y mis mejores compañeros en los momentos de felicidad. Amigos de Kulturales, los hermanos Baños por empujarme a mejorar, Pablo por ser un ejemplo a seguir, Chou, por ser de los mejores profesores y amigos que he tenido jamás.
    [Show full text]
  • EECS 452 – Project Hardware Possibilities
    EECS 452 – Project Hardware Possibilities ñ This lecture is focused on programmable and non-programmable devices for potential project use. ñ Projects are not restricted to using C5515/DE2-70. What are some alternatives? ñ This is an awareness building lecture. It is not comprehensive. Other choices exist. ñ There has been an explosive growth of programmable/configurable devices. How to choose? The good news about computers is that they do what you tell them to do. The bad news is that they do what you tell them to do. — Ted Nelson If you can get your hands on the part, it’s obsolete. — anon Nothing is more difficult, and therefore more precious, than to be able to decide. — Napoleon Bonaparte EECS 452 – Fall 2014 Project Hardware Possibilities – Page 1/90 Thursday – Sept 18, 2014 Before we start . In today’s world there exist many, moderately powerful, very low cost, single board computers that one can use to self-educate. When doing DSP one very often wants/needs to generate an observe signals. The cost of the needed equipment can greatly dwarf the board cost. However, the cost of “equipment” is dropping. Consider the Digilent Analog Discovery. ñ $159 academic ñ 2-channel oscilloscope ñ 2-channel waveform generator ñ 16-channel logic analyzer ñ 16-channel digital pattern generator ñ Spectrum Analyzer ñ Network Analyzer ñ Voltmeter ñ Digital I/O ñ ≈$220 with bells and whistles From a Digilent web page. EECS 452 – Fall 2014 Project Hardware Possibilities – Page 2/90 Thursday – Sept 18, 2014 Risk and other ñ The safest choice in implementing your project is to make use of the C5515 and/or DE2-70 (or DE0-nano).
    [Show full text]
  • A Study on Enhanced Educational Platform with Adaptive Sensing Devices Using Iot Features
    Proceedings of APSIPA Annual Summit and Conference 2017 12 - 15 December 2017, Malaysia A Study on Enhanced Educational Platform with Adaptive Sensing Devices using IoT Features Yiqi Tew∗, Tiong Yew Tang∗ and Yoon Ket Lee∗ ∗ Tunku Abdul Rahman University College, Kuala Lumpur, Malaysia. E-mail: fyiqi, tangty, [email protected] Abstract—There are plenty of digital education tools to provide status within a few months. Communication between items additional assistance for conducting lecture class in university. shall be normalized and standardized for ensuring accurate For instance, online video source (e.g., YouTube) provides prac- data streaming and interaction with all device under a secured tical coding exercise for web application development, interactive communication channel (e.g., Google Hangout) provides platform protocol, e.g., authentication requirement for each item, either for distance learning. However, these tools are rarely to be sending or retrieving data. connected with a real-life environmental conditions. An advanced In this paper, we cover literature study on virtual classroom education system shall consider students attendance, activities and IoT implemented classroom in Section II. We propose a and intention to pay attention as a part of assessment and IoT framework in a classroom, as mentioned in Section III. provide appropriate education tools to improve the education quality. Therefore, there is an urge to adopt recent Internet of Then, an analysis study on several IoT prototype devices is Technology (IoT) to detect and sense the environmental condition discussed in Section IV. Lastly, future extension of our work (e.g., room temperature, student activities) and produce necessary and conclusion of this paper are described in Section V.
    [Show full text]