An Introduction to Arduino an Introduction to Arduino PDF GUIDE

Total Page:16

File Type:pdf, Size:1020Kb

An Introduction to Arduino an Introduction to Arduino PDF GUIDE An Introduction to Arduino An Introduction to Arduino PDF GUIDE: http://antoinettejcitizen.com/files/AICCM_Arduino.pdf Michelle Woulahan Antoinette J. Citizen Creative media facilitator at City of Melbounre Electronic media artist Events listing: http://bit.do/techEvents Website: antoinettejcitizen.com Microcontrollers A microcontroller is a very small computer on a single integrated circuit (IC). All computers have several things in common: • CPU (central processing unit) that executes programs. • RAM (random-access memory) where it can store variables. • Input and output devices for interaction. Desktop computers are “general purpose computers” that can run any of thousands of programs. Microcontrollers are “special purpose computers.” Microcontrollers do one thing well. Microcontrollers are often embedded onto a single printed circuit board. This board provides all of the circuitry necessary for a useful control task. The intention is that the board is immediately useful to an application developer, without them needing to spend time and effort in developing the controller hardware. BASIC Stamp Microcontroller: • Microchip Technology PIC • Parallax SX processor. mbed Microcontroller: • ARM Cortex IOIO OTG Microcontroller: • Microchip Technology PIC Arduino Microcontroller: Atmel AVR microcontroller • ATmega8 • ATmega168 • ATmega328 • ATmega1280 • ATmega2560 Arduino Single board microcontrollers like the Arduino are able to read inputs - light on a sensor, a finger on a button, or a Twitter message - and turn it into an output - activating a motor, turning on an LED, publishing something online. Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Examples: http://www.creativeapplications.net/category/arduino-2/ There are lots of different types of Arduino boards. UNO is currently the most common and easily the best documented and best supported of the Arduinos. Micro- Input System Clock Digital Analog Flash Item Controller Voltage Voltage Speed I/O Inputs PWM Space Arduino Uno - R3 ATmega328 7-12V 5V 16MHz 14 6 6 32Kb Arduino Leonardo ATmega32U4 7-12V 5V 16MHz 20* 12 7 32Kb Arduino Pro ATmega328 3.35 -12V 3.3V 8MHz 14 6 6 32Kb 5V Arduino Yun ATmega32u4 5V 5V 16MHz 20 12 7 32Kb Atheros AR9331 3.3V 16MB Arduino Mega ATmega2560 7-12V 5V 16MHz 54 16 14 256Kb Arduino Pro Mini ATmega328 5 - 12V 5V 16MHz 14 8 6 32Kb Arduino Fio ATmega328P 3.35 -12V 3.3V 8MHz 14 8 6 32Kb LilyPad ATmega32U4 3.8V-5V 3.3V 8MHz 9 4 4 32Kb Arduino-compatible DF Robot Freetronics ArduPhone Barebones Cheapduino Lillypad Single-board Computers Single board computers like the Raspberry Pi use application processors rather than microcontrollers. These boards operated more like most computers you would normally use - you can plug in a display, keyboard and mouse, and run an operating system and applications. Beagle board Raspberry Pi 3 • AM335x 1GHz ARM® Cortex-A8 • 1.2GHz 64-bit quad-core ARMv8 CPU • 512MB DDR3 RAM • 1GB RAM • 4GB 8-bit eMMC on-board flash storage • Micro SD card slot • 3D graphics accelerator • VideoCore IV 3D graphics core • 1 USB host • 4 USB ports • 2x 46 pin headers • 40 GPIO pins • Mini HDMI port • Full HDMI port • Ethernet port • Ethernet port • NEON floating-point accelerator • Combined 3.5mm audio jack and • 2x PRU 32-bit microcontrollers Connectivity composite video • Camera interface • Display interface • 802.11n Wireless LAN • Bluetooth 4.1 Arduino uno: board layout Sidekick components • Breadboard x 1 • Photo resistor x 1 • Green LED x 5 • Diode x 1 • Red LED x 5 • Buzzer x 1 • RGB Common Anode LED x 1 • Button x 5 • Ceramic Capacitor(10nF x 10+100nF x 10) • Switch x 5 • Aluminum capacitor(100uF x 5) • Mini Servo x 1 • Resistor(330R x 10+1k x 10+10k x 10) • Potentiometer with knob x 1 • Tilt switch x 1 • Breadboard jumper wire x 25 (5x long, 20 x • Thermistor x 1 short) Breadboards A breadboard is a solderless device for temporary prototype with electronics and test circuit designs. Electronic components can be interconnected by inserting their leads or terminals into the holes and then making connections through wires where appropriate. The breadboard has strips of metal underneath the board and connect the holes on the top of the board. The metal strips are laid out as shown below. Rows of the same number in colums A-E and rows in columns F-J are connected. Power rail often used for positive and negative(GND) voltage First sketch: Blink 330 OHM Resistor Negative Positive (longer leg) (orange, orange, brown) • Open sketch: File > Examples > Basic > Blink • Create an “int” variable called LED, set it to the corresponding arduino digital pin number. • Change LED_BUILTIN to LED int LED = 7; void setup() { pinMode(LED, OUTPUT); } void loop() { digitalWrite(LED, HIGH); delay(1000); digitalWrite(LED, LOW); delay(1000); } Now try changing the delay number to make LED blink faster or slower. Resistor colour code arduino intergrated development enviroment (ide) 1. Verify: Compiles and approves your code. It will catch errors in syntax (like missing semicolons or parentheses). 2. Upload: Sends your code to the 101 board. 3. New: This buttons opens up a new code window tab. 4. Open: This button will let you open up an existing sketch. 5. Save: This saves the currently active sketch. 6. Serial Monitor: This will open a window that displays any serial information your 101 board is transmitting. It is very useful for debugging. 7. Sketch Name: This shows the name of the sketch you are currently working on. 8. Code Area: This is the area where you compose the code for your sketch. 9. Message Area: This is where the IDE tells you if there were any errors in your code. 10. Text Console: The text console shows complete error messages. When debugging, the text console is very useful. 11. Board and Serial Port: Shows you what board and the serial port selections. Select Your Board: Arduino/Genuino UNO Before we can start jumping into the experiments, there are a few adjustments we need to make. This step is required to tell the Arduino IDE which of the many Arduino boards we have. Go up to the Tools menu. Then hover over Board and make sure Arduino/Genuino UNO is selected. Select a Serial Port Next up we need to tell the Arduino IDE to which of our computer’s serial ports the 101 is connected. Again,, go up to Tools, hover over Port, and select your 101’s serial port. This will have Arduino 101 next to the port number in parentheses. Window Users: This is likely to be COM3 or higher (COM1 and COM2 are usually reserved for hardware serial ports). If there are multiple COM ports available, the UNO is likely the highest numbered port in the list. To be certain, you can also disconnect your UNO and reopen the menu; the entry that disappears should be the UNO. Reconnect the board and select that serial port. Mac Users: Select the serial device of the UNO from the Tools, then hover over Port. On the Mac, this should be something with /dev/tty.usbmodem or /dev/tty.usbserial in it. Multiple BlinKs We will edit the previous sketch to add two more LED variables. Add two new int for the two int LED = 9; added LEDs. int LED2 = 10; int LED3 = 11; void setup() { pinMode(LED, OUTPUT); Add pinMode for the two pinMode(LED2, OUTPUT); added LEDs. pinMode(LED3, OUTPUT); } void loop() { digitalWrite(LED, HIGH); digitalWrite(LED2, HIGH); digitalWrite(LED3, HIGH); Add digitalwrite HIGH and LOW sequence for all LEDs delay(1000); digitalWrite(LED, LOW); digitalWrite(LED2, LOW); digitalWrite(LED3, LOW); delay(1000); } fade We use anaologWrite(pin number,0-255) rather than digitalWrite(pin number,HIGH/LOW) in order to change the brightness of the LED. 0 being off and 255 being the brightess. AnalogWrite only works with PWM pins - on the Arduino UNO PWM are pins 3,5,6,9,10,11. Learn more about PWM here - https://www.arduino.cc/en/Tutorial/PWM Make sure you connect to a PWM pin! • Open sketch: File > Examples > Basic > Fade int led = 9; // the PWM pin the LED is attached to int brightness = 0; // how bright the LED is int fadeAmount = 5; // how many points to fade the LED by void setup() { pinMode(led, OUTPUT); } void loop() { analogWrite(led, brightness); // set the brightness of pin 9: brightness = brightness + fadeAmount; if (brightness <= 0 || brightness >= 255) { fadeAmount = -fadeAmount; } delay(30); } button input • Open sketch: File > Examples > Digital > Button const int buttonPin = 2; // the number of the pushbutton pin const int ledPin = 13; // the number of the LED pin // variables will change: int buttonState = 0; // variable for reading the pushbutton status void setup() { // initialize the LED pin as an output: pinMode(ledPin, OUTPUT); // initialize the pushbutton pin as an input: pinMode(buttonPin, INPUT); } void loop() { buttonState = digitalRead(buttonPin); // read the state of the pushbutton value: // check if the pushbutton is pressed. // if it is, the buttonState is HIGH: if (buttonState == HIGH) { // turn LED on: digitalWrite(ledPin, HIGH); } else { // turn LED off: digitalWrite(ledPin, LOW); } } SHields Shields are boards that can be plugged on top of the Arduino PCB extending its capabilities. Ethernet Shield GPS shield Audio Shield Motor Shield Proto Shield Library Manager Libraries are a collection of code that makes it easy for you to connect to a sensor, display, module, etc. For example, the built-in LiquidCrystal library makes it easy to talk to character LCD displays. There are hundreds of additional libraries available on the Internet for download. To install a new library into your Arduino IDE you can use the Library Manager (available from IDE version 1.6.2). Open the IDE and click to the “Sketch” menu and then Include Library > Manage Libraries.
Recommended publications
  • Embedded Systems Building and Programming Embedded Devices
    Embedded Systems Building and Programming Embedded Devices PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Tue, 29 May 2012 01:04:04 UTC Contents Articles Wikibooks:Collections Preface 1 Embedded Systems/Embedded Systems Introduction 3 Embedded Systems/Terminology 7 Microprocessor Basics 10 Embedded Systems/Microprocessor Introduction 10 Embedded Systems/Embedded System Basics 11 Embedded Systems/Microprocessor Architectures 13 Embedded Systems/Programmable Controllers 16 Embedded Systems/Floating Point Unit 18 Embedded Systems/Parity 20 Embedded Systems/Memory 21 Embedded Systems/Memory Units 24 Programming Embedded Systems 25 Embedded Systems/C Programming 25 Embedded Systems/Assembly Language 31 Embedded Systems/Mixed C and Assembly Programming 34 Embedded Systems/IO Programming 42 Embedded Systems/Serial and Parallel IO 43 Embedded Systems/Super Loop Architecture 44 Embedded Systems/Protected Mode and Real Mode 46 Embedded Systems/Bootloaders and Bootsectors 47 Embedded Systems/Terminate and Stay Resident 48 Real Time Operating Systems 49 Embedded Systems/Real-Time Operating Systems 49 Embedded Systems/Threading and Synchronization 51 Embedded Systems/Interrupts 54 Embedded Systems/RTOS Implementation 55 Embedded Systems/Locks and Critical Sections 57 Embedded Systems/Common RTOS 60 Embedded Systems/Common RTOS/Palm OS 63 Embedded Systems/Common RTOS/Windows CE 64 Embedded Systems/Common RTOS/DOS 64 Embedded Systems/Linux 65 Interfacing 68 Embedded Systems/Interfacing
    [Show full text]
  • An Open-Source Platform for Learning Embedded Systems Based on Algorithm Visualizations and Digital Signal Controllers
    electronics Article DSCBlocks: An Open-Source Platform for Learning Embedded Systems Based on Algorithm Visualizations and Digital Signal Controllers Jonathan Álvarez Ariza Department of Electronics Technology, Engineering Faculty, Corporación Universitaria Minuto de Dios (UNIMINUTO), 111021 Bogotá, Colombia; [email protected]; Tel.: +57-310-557-9255 Received: 17 January 2019; Accepted: 29 January 2019; Published: 18 February 2019 Abstract: DSCBlocks is an open-source platform in hardware and software developed in JavaFX, which is focused on learning embedded systems through Digital Signal Controllers (DSCs). These devices are employed in industrial and educational sectors due to their robustness, number of peripherals, processing speed, scalability and versatility. The platform uses graphical blocks designed in Google’s tool Blockly that can be used to build different Algorithm Visualizations (AVs). Afterwards, the algorithms are converted in real-time to C language, according to the specifications of the compiler for the DSCs (XC16) and they can be downloaded in one of the two models of development board for the dsPIC 33FJ128GP804 and dsPIC 33FJ128MC802. The main aim of the platform is to provide a flexible environment, drawing on the educational advantages of the AVs with different aspects concerning the embedded systems, such as declaration of variables and functions, configuration of ports and peripherals, handling of Real-Time Operating System (RTOS), interrupts, among others, that are employed in several fields such as robotics, control, instrumentation, etc. In addition, some experiments that were designed in the platform are presented in the manuscript. The educational methodology and the assessment provided by the students (n = 30) suggest that the platform is suitable and reliable to learn concepts relating to embedded systems.
    [Show full text]
  • Easy Peripherals for the Internet of Things
    FACULDADE DE ENGENHARIA DA UNIVERSIDADE DO PORTO Easy Peripherals for the Internet of Things António Miguel Baldaia Moreira de Sousa Mestrado Integrado em Engenharia Eletrotécnica e de Computadores Supervisor: João Carlos Viseu Oliveira (Fraunhofer AICOS Portugal) Supervisor: Luis Miguel Pinho de Almeida (FEUP) July 22, 2016 c António Miguel Baldaia Moreira de Sousa , 2016 Abstract The Internet of Things (IoT) is booming and more than 250 million devices are expected to be part of it by 2020. The growth is mostly supported by the ever increasing amount of sensing circuitry embedded in all sorts of user devices, appliances and wearables, among others. However, the abundance of information in itself does not provide knowledge, as the raw data must first be treated and processed. In order to do so, and still keep up with the technology demand, the development of new solutions and applications has to be very efficient and expedite. Some of the major setbacks when developing IoT solutions are the interfaces available (or not) to interact with the sensory devices and retrieve measurements data. Quite often, these interfaces have to be custom developed for each prototype, or solution. This project, presented by Fraun- hofer AICOS Portugal, addresses and reduces the effort high-level developers have to put in when interacting with sensory nodes. A complete communication protocol was designed and implemented on top of Bluetooth Low Energy to establish the communication between a sensory node, such as a micro-controller plat- form, and a data collection device, such as an Android smartphone. The protocol may be imple- mented on any platform, but this project focuses on establishing the communication between an Android device and a Fraunhofer proprietary micro-controller platform, the Pandlet.
    [Show full text]
  • Warf Electronics Shopping - Catalog Electronics Shopping IOIO for Android FR4 1.6Mm Blank PCB Board Single Side 6X6" 1Oz
    เลขประจําตัวผูเสียภาษี 3271161630 Warf Electronics Shopping - Catalog Electronics Shopping IOIO for Android FR4 1.6mm Blank PCB board Single Side 6x6" 1oz. ELE-SP072006172 ELE-WA491996121 1,950.00 THB 50.00 THB IN-14 RUSSIAN NIXIE TUBES IN-14 IN14 NEW NOS Line Iso-Regulation IRG-600 ELE-WA491996260 ELE-WA491986075 400.00 THB 27,500.00 THB LC-3 Purist Line Conditioner PS-8 Clean Power Station ELE-WA491986053 ELE-WA491986069 11,650.00 THB 5,850.00 THB ISO Clean Power Station ชุดกรองไฟ NFC-3 ELE-WA491986071 ELE-WA491986072 12,600.00 THB 8,600.00 THB ชุดกรองไฟ NFC2 ชุดกรองไฟ NFC-1 ELE-WA491986073 ELE-WA491986074 11,500.00 THB 14,500.00 THB อุปกรณชวยขจัดสัญญาณรบกวน LI-500 เครื่องกรองไฟ LC-1 MKII ELE-WA491986076 ELE-WA491986077 7,800.00 THB 4,890.00 THB CPS-8 SE Clean Power Station CPS-8 Clean Power Station ELE-WA491986054 ELE-WA491986068 8,800.00 THB 6,800.00 THB Line Iso-Regulation IRG-600 Black PS-8 SE Clean Power Station ELE-WA491986070 ELE-WA491986067 28,500.00 THB 7,800.00 THB AudioengineUSA N22 Amplifier / Headphone Amp Bellari HA540 Tube Headphone Amp ELE-WA491976078 ELE-WA491976079 7,500.00 THB 11,500.00 THB Burson Headphone Amp 160 Cavalli Audio Liquid Fire Headphone Amp (pre order) ELE-WA491976081 ELE-WA491976082 26,900.00 THB 49,900.00 THB Centrance DACmini Centrance DACport 24/96 USB Headphone Amp ELE-WA491976083 ELE-WA491976084 29,500.00 THB 14,500.00 THB Creek Audio OBH-11 Headphone Amplifier Creek Audio OBH-21 Headphone Amplifier ELE-WA491976085 ELE-WA491976086 9,800.00 THB 14,500.00 THB Creek Audio OBH-21 SE Headphone Amplifier
    [Show full text]
  • LNICST 117, Pp
    Efficient and Alternative Approach for Android Based Mobile Remote Control in a Bluetooth Environment Husain Alhayki1 and Jayavrinda Vrindavanam2 1 Telecommunication Engineering, Caledonian College of Engineering, Muscat, Oman [email protected] 2 Department of Electronic and Computer Engineering, Caledonian College of Engineering, Muscat, Oman [email protected] Abstract. The paper presents a novel method of design and implementation of a control system using Bluetooth technologies. The proposed system based on IOIO board, Bluetooth and android application endeavours to support user the ability to control the electrical devices from mobile devices, which must have android operating system. The proposed system design is simple, multifunctional, superior to previous approaches and can considerably economise the costs involved in developing such systems. The application has a variety of uses in offices, factories, laboratories and access controlled environments. Keywords: Android, IOIO board, Bluetooth, SDK tools, ATD plugin. 1 Introduction With the advent of mobile phones, a multitude of functions are added to such hand held instruments on a continuous basis, making such devices as ‘versatile master control device’. The uses of such devices are extremely divergent. Such uses range from photography, video chats, daily planner, e-mail facility and so on. As an extension to such advancements, the main objective of this paper is to design and implement a new control system for devices using mobile phones which run with the support of android operating system through the support of Bluetooth technology as a medium of communication. There are many controlling boards that can be used in these applications such as Arduino, mbed, IOIO board etc, and each one has its own specifications and applications.
    [Show full text]
  • COOLANT OIL CONTROL SYSTEM in VMC MACHINE ”Is the Bonafide Work Of
    COOLANT OIL CONTROL SYSTEM IN VMC MACHINE A PROJECT REPORT Submitted by RAJAGANAPATHY.S (13BEI111) GOWTHAMVEL.P (13BEI018) SANTHOSE PRABU.R (13BEI050) in partial fulfillment for the award of the degree of BACHELOR OF ENGINEERING in ELECTRONICS AND INSTRUMENTATION ENGINEERING KUMARAGURU COLLEGE OF TECHNOLOGY (An Autonomous Institution, Affiliated to Anna University,Chennai) COIMBATORE 641049 APRIL 2017 1 COOLANT OIL CONTROL SYSTEM IN VMC MACHINE A PROJECT REPORT Submitted by RAJAGANAPATHY.S (13BEI111) GOWTHAMVEL.P (13BEI018) SANTHOSE PRABU.R (13BEI050) in partial fulfillment for the award of the degree of BACHELOR OF ENGINEERING in ELECTRONICS AND INSTRUMENTATION ENGINEERING KUMARAGURU COLLEGE OF TECHNOLOGY (An Autonomous Institution, Affiliated to Anna University,Chennai) COIMBATORE 641049 APRIL 2017 2 BONAFIDE CERTIFICATE Certified that this project report “COOLANT OIL CONTROL SYSTEM IN VMC MACHINE ”is the bonafide work of RAJAGANAPATHY.S (13BEI111) GOWTHAMVEL.P (13BEI018) SANTHOSE PRABU.R (13BEI050) who carried out the project work under my supervision. SIGNATURE SIGNATURE Dr.N.EZHILARASI Mr.S.SARAVANA KUMAR HEAD OF THE DEPARTMENT SUPERVISOR Dept. of Electronics and Instrumentation Assistant Professor Kumaraguru College of Technology Dept. of Electronics and Instrumentation Coimbatore-641049 Kumaraguru College of Technology Coimbatore-641049 The candidates were examined by us in the project viva voce examination held on INTERNAL EXAMINER EXTERNAL EXAMINER 3 ACKNOWLDEGEMENT The satisfaction that accompanies the successful completion of any task would be incomplete without mentioning about the people whose constant guidance and encouragement crowns all effort with success. We are greatly indebted to our beloved Principal Dr.R.S.KUMAR, who has been the backbone of all our deeds. We express our gratitude to Dr.N.EZHILARASI, Head, Department of Electronics and Instrumentation Engineering, Kumaraguru College of Technology for her constant encouragement.
    [Show full text]
  • 36-DD-13964.Pdf
    Page 1 of 26 IOIO-OTG Hookup Guide Introduction The IOIO-OTG (pronounced “yo-yo-O-T-G"; the OTG stands for On-The- Go) is a development board specially designed to allow developers to add advanced hardware I/O capabilities to their Android or PC application. It features a PIC microcontroller, which acts like a bridge that connects an app on your PC or Android device to low-level peripherals like GPIO, PWM, ADC, I2 C, SPI and UART. An app-level library helps you write control code for these low level peripherals in the same way you’d write any other Java app! IOIO-OTG - V2.2 DEV-13613 What separates the IOIO-OTG from previous IOIO boards is its ability to leverage the USB On-The-Go specification to connect as a host or an accessory. There are several ways to connect the IOIO to your Java app. If the app is running on your Android device, the IOIO-OTG will act as a USB host and supply charging current to your device (meaning the IOIO-OTG will need its own power source). If your app is running on a Windows, Linux or OSX machine, the IOIO-OTG will assume device mode and present itself as a virtual serial port. When in device mode, the IOIO-OTG can be powered by the host. Connecting a USB Bluetooth® dongle will cause the IOIO-OTG to show up as a Bluetooth serial connection, so you can go wireless! Page 2 of 26 Required Materials A USB Female A to Micro A OTG Cable should have been included with the purchase of your IOIO-OTG.
    [Show full text]
  • List of Projects Using Raspberry Pi with Advance View: 1
    List of Projects using Raspberry Pi with advance view: 1. Mobile Remote Surveillance Camera This interesting project will cover all things required for the ultimate goal of building a mobile remote surveillance camera. https://youtu.be/6FrEs4C9D-Y This interesting but complicated project will cover things from designing building a robot, to advanced congurations in linux (raspberry pi) to building an Android application…... Listed under: Phone Projects 2. Android Controlled Toy Using Raspberry Motor Shield The terrain vehicle which is managed with raspberry pi, arduino and controlled vi android software. Story At the end of the project we will manage a terrain vehicle which controlled by android device's accelemoter sensor The project contains Motor shield, raspberry pi, arduino and dc…... Listed under: Motor Projects 3. GrovePi Windows IoT: LED Blink This tutorial shows the simplest thing that you can do with the GrovePi: Blink a LED. Introduction to GrovePi with Windows IOT: LED Blink Tutorial This tutorial shows the simplest thing that you can do with the GrovePi: Blink a LED. This a great…... Listed under: LED Projects 4. Azure IoT Hub nRF24L01 Windows 10 IoT Core Field Gateway Windows 10 IoT Core on RPI based nRF24L01 eld gateway which enable sensor nodes to securely & reliably upload telemetry to AzureIoT Hubs. Overview For school Internet of Things (IoT) projects I needed a robust eld gateway for uploading telemetry data from a number "cheap n…... Listed under: Home Automation Projects 5. Windows 10 IoT Core on Raspberry Pi 2 – Adafruit Sensor data Pushing data to Microsoft Azure Event hubs from Windows 10 IoT Core with Raspberry Pi-2 connected with the Adafruit 10DOF IMU This is my rst blog on Windows 10 IoT Core with Raspberry Pi-2 connected with the Adafruit 10DOF IMU (A combo board provides 3-axis…..
    [Show full text]
  • Programming Your Home Automate with Arduino, An
    Praise for Programming Your Home Mike has a broad technology experience base that puts all the pieces of some remarkable projects together. It’s amazing that he makes it all so easy and afford- able. Don’t miss all that can be learned from this gem. ➤ Michael Bengtson, Consultant The Web-Enabled Light Switch project gave my family convenience and security options and enhanced my knowledge of RS-232 communications. It is nice to be able to switch on lights from my favorite chair. And the Tweeting Bird Feeder project has opened my eyes to the uses of radio communications around the home for things besides Wi-Fi, and it will help in my work to contribute to the preserva- tion of bird species that are struggling for food and habitat. ➤ Bob Cochran, Information Technology Specialist With this book, Mike Riley celebrates the Arduino microcontroller in a way that both beginning and advanced home automation hobbyists will enjoy. ➤ Sven Davies, Vice President of Applications This is an outstanding reference that should be on the desk of every DIYer. In much the same way that software engineers mention “The Gang of Four Patterns Book,” I predict this text will eventually be referred to as “The Riley Book of Home Automation.” ➤ Jon Kurz, President, Dycet, LLC Every technology is only as exciting as the things you do with it. Mike takes a few cheap electronics parts, an Arduino, and a bit of code and turns your home into a much more exciting and enjoyable place. His easy-to-follow instructions make every single one of these projects both fun and useful.
    [Show full text]
  • Electronic Training Board for Mobile Applications
    ELECTRONIC TRAINING BOARD FOR MOBILE APPLICATIONS BASED ON ANDROID OPERATING SYSTEM. Edgar A. Maya, Byron R. Valenzuela Abstract - This paper provides information on LED's, digital analog converters, matrix the design and implementation of an electronic keyboard, LCD 16x2, switches, matrix trainer for mobile devices based on the Android operating system, this system includes several LEDs, buzzer, communication: Serial, devices such as LEDs, switches, buzzer, relay, pWM, I2C, Xbee, Bluetooth, GPS, Wi-fi display's, temperature sensors and modules communication as GPS, Wi-Fi, Xbee, I2C, to make and temperature sensor module. Thus applications with the mobile and trainer. promoting the technological development of the education and growth of knowledge Index Terms - Android, GPS, Wi-fi, Xbee, I2C by students. I. INTRODUCTION II. BASICS CONCEPTS The growth of technology and the great A. What is IOIO? reception of mobile based on Android operating system have made that development of a trainer for students of Engineering in Electronics and Communication Networks Universidad Tecnica del Norte, with which the same may make multiple applications based on mobile terminals with Android operating system and interact with the various Figure 1. IOIO board peripherals with the trainer account. Reference: Simon Monk (2012). Making Android Accessories with IOIO This research document received on 12 October 2014 was IOIO is a board specially designed and conducted as a preliminary project for the professional degree manufactured to work with mobile devices in Engineering in Electronics and Communication Network Engineering, Faculty of Applied Science (FICA) of the based on the Android operating system “Universidad Tecnica Del Norte” from version 1.5 (Donout) to the current E.
    [Show full text]
  • Con Smart Card
    SPECIALE PARALLAX SX Microcontrollori 8 bit ad alta velocità DISPOSITIVO MULTIFUNZIONE CON SMART CARD • Chiave Elettronica • Credito a scalare FEBBRAIO n° 260 • Anno 23 • Attivazione utenza www.farelettronica.com PLC PER TUTTI Al via il nuovo corso che vi guiderà passo-passo alla programmazione dei PLC utilizzando LADDER e BASIC RUBRICA MHZ L’adattamento d’impedenza in radiofrequenza PIC-SUDOKU - Milano il CPM di Roserio tassa presso la relativa che si impegna a pagare all'editore restituire recapito, mancato Il sorgente in MikroBasic per risolvere La divisione di codice nelle trasmissioni digitali una qualsiasi griglia Sudoku IDEE DI PROGETTO , DCB Milano. In caso di PIC & MikroC RS232 Quadruplicatore di tensione con TD310 Come leggere valori analogici Tutto quello Beep Beep digitale utilizzando che c’è da sapere sull’interfaccia DS8669 2-digit bcd to 7-segment decoder/driver il convertitore seriale per eccellenza Sensore di precisione di temperatura fahrenheit AD del PIC con LM34 Alimentatore phantom Convertitore frequenza/tensione con LM2907 per microfoni Barra diodi led con LM3916 Collegare microfoni www.farelettronica.com Duplicatore di tensione professionali ad un mixer tradizionale? € 5,50 Con questo alimentatore si può! Onda quadra e triangolare con LM566C MENSILE Poste Italiane Spa - Spedizione in abbonamento Postale - D.L. 353/2003 (conv. In L. 27/02/2004 n. 46) art. 1, comma1 In L. 27/02/2004 (conv. 353/2003 - D.L. Postale Italiane Spa - Spedizione in abbonamento MENSILE Poste ININ EDICOLA EDICOLA NonNon perdereperdere ilil numeronumero didi questoquesto mesemese servizioservizio MIPMIP M ore I nfo P lease! www.farelettronica.com Richiedi maggiori informazioni sui contenuti di Fare Elettronica, visita il sito: www.farelettronica.com/mip Oppure compila questo modulo ed invialo via fax al numero 02 66508225 Numero della rivista 260 Codici MIP* (da compilare) DATI DEL LETTORE Nome Cognome Azienda Indirizzo Azienda Cap Città Prov.
    [Show full text]
  • Embedded Solutions
    EMBEDDED SOLUTIONS Wireless Solutions Boundary Devices . .49 Ackme Networks . 5 Digi International . 51, 52 Anaren . 7, 8 Digilent . .53 Antenova . 5 DLP Design . 54, 55 AMS . .6 EasySync. .56 Bluegiga . 9 FTDI . 57, 58 Digi International . 10, 11 Gravitech . .59 DLP Design . .12 Intel. 50, 60 Freescale. .13 Lantronix . 61, 62 Fujitsu . .13 Leopard Imaging . .48 IDT . 6 Microchip . .50 Laird Technologies . 14, 15 Mide . 63 Linx. 16, 17, 18, 19 MikroElektronika . 64 LS Research . .20 Minnowboard. .48 Maestro Wireless. 6 NetBurner . 65 Micrel. 21, 22 Netduino . 49 Microchip . 23, 24 Pandaboard . .48 Murata Wireless . 25, 26 Parallax. .66 Nordic Semiconductor . 27 Powercast . 50 NXP . 28 Rabbit Semiconductor . 67, 68 Phoenix Contact . 29 Silex . 50 Redpine Signals . 30 Taoglas. 69, 70, 71 RF Digital. .31 Terasic . .72 Silicon Labs . 32, 33 Texas Instruments . .50 Skyetek. .34 STMicroelectronics. .35 Data Acquisition Texas Instruments . 36, 37, 38 Adlink. .73 Wiznet . .39 Advantech . 74, 75, 76, 77 Wurth. .13 Single Board Computers Chipsets Adlink. .78 Intel. .40 Advantech . 79 Arbor . 80 Embedded Modules Axiomtek . 81 Adlink. 41, 42 Congatec . .82 Advantech . 43, 44, 45 Critical Link. .82 Arduino . .46 iBase . 83, 84 B&B Electronics . 47 KA-RO . .85 Beagleboard . .48 Rabbit Semiconductors . 86, 87 WiFi Modules and Chip Antennas Wireless Solutions WALLABY WICED WI-FI NETWORKING MODULES ACKme Networks AMW004 Wallaby WICED Wi-Fi Networking Module is a fully certified small form factor, low power WICED-based Wi-Fi networking module perfectly suited to deeply embedded applications for medium to high volumes. The module runs an embedded TCP/IP networking stack with SSL/TLS/HTTPS security and includes an onboard PCB trace antenna and u.FL connector all in a physical footprint of just 31.2mm x 17.8mm (1.25" x 0.7").
    [Show full text]