Grelllbbb s ESP Flashamater Adaptimizer Assembly & User Guide

Size: px
Start display at page:

Download "Grelllbbb s ESP Flashamater Adaptimizer Assembly & User Guide"

Transcription

1 Grelllbbb s ESP Flashamater Adaptimizer Assembly & User Guide Overview The GEFA (we don t understand Grelllbb any better than you do, so we ll just abbreviate it GEFA) is a small programming tool that makes quick work of flashing EPS8266 modules. It was designed as a companion product to the ESP Snap-In. It uses an inexpensive USB-TTL Adapter as its interface to the computer, and works extremely well with the Arduino compiler/ide which is used to modify, compile and flash the firmware into the ESP8266 module. BOM Bill of Materials QTY Description Part # Source 1 Flashamater PCB DIGWDF Store 1 6-pin male header (cut off a strip of 6) A-197 taydaelectronics.com 2 Tact button switches A-5145 taydaelectronics.com 2 10K 1/4 or 1/8 watt resistors A-2115 taydaelectronics.com 1 4 x 2 (8 position) female header (cut off a 4x2 strip) A-195 taydaelectronics.com 1 USB-TTL adapter (CP210x type) ebay (or the DIGWDF Store) 1 Female-to-female Dupont connection cables (set of 6) ebay (or the DIGWDF Store) The inexpensive USB-TTL adapter is used not only as the interface to the computer, but because it has 3.3vdc power on-board, it s used to power the ESP module during flashing as well. Part substitutions: in lieu of the 2 x 4 female header, you can create the same result by purchasing two 1 x 4 female headers and crazy-gluing them together. Two of Tayda part #A is what we d recommend if you go this route. Otherwise, the Tayda part quoted above must be cut from the longer 2 x 20 header with a sharp knife or other saw. Also, instead of the vertical 6-pin header, you might use right-angle headers instead: Tayda part #A-199. Assembly 1. Install and solder the two 10K resistors in their locations. Be sure to clip off the extra wire leads from the bottoms cut close to the board so you don t leave sharp, pointed tips. 2. Install and solder the 4 x 2 female header in the location provided. 3. Install and solder the two tact switches in locations S1 and S2. You may want to clip off the leads on the bottom of the board afterward sometimes they leave a sharp point. 4. Install and solder the 6-pin header in the location provided. This header should point upward from the PCB. 5. This completes assembly. Easy, huh? ESP Flashamater v Page 1

2 Install the Driver for the USB-TTL adapter Secure the driver for your computer and operating system directly from Silicon Labs. Drivers are available for all versions of Windows, Linux and even OSX and Android. The adapter becomes a normal com port to the PC. Connecting the USB-TTL adapter to GEFA The USB-TTL adapter s outputs are clearly marked on either the top or bottom side. The example below shows them on the BOTTOM side of the adapter. Using the connect cables, simply match up the GEFA s marking with exactly the same marking on the USB-TTL adapter. You may be required to cross a few wires to do so because the order of the two adapters may not line up directly, but these are straight-through connections so that the TX of the USB-TTL goes to the TX on the GEFA and RX goes to RX, GND to G, etc. This may seem wrong but unlike most connections that are TX to RX and vice-versa, GEFA works by duplicating the inputs that are on the USB-TTL adapter, almost as if you were plugging the USB-TTL directly into GEFA. Important: Sadly, not all USB-TTL adapters may be marked correctly and we ve found that some manufacturers have the TX and RX lines reversed. You may have to fiddle with the connectors on your device if when flashing the ESP module you do not get any communication or a blinking LED. Don t worry about the 5v line if the USB-TTL adapter doesn t provide it GEFA doesn t use it. DO NOT CONNECT THE USB-TTL ADAPTER S 5v OUTPUT TO THE 3.3v ON GEFA! THIS WILL KILL YOUR ESP8266 MODULES -- THEY CANNOT ACCEPT 5VDC! Before using the setup, double-check to make sure your connections are correct. ESP Flashamater v Page 2

3 Plugging/Unplugging ESP8266 Modules Be sure to align the ESP module with the outline on GEFA s pcb and be sure that the ESP module s pins align with the proper holes! Our testing with more than 100 flashes/reflashes of different ESP modules indicates that it doesn t seem necessary to disconnect the USB-TTL adapter from the computer s USB port before unplugging or plugging a ESP module into the GEFA, but your experience may differ. The Flashing Procedure The steps below assume that you have successfully modified the firmware for your netowork, have connected the GEFA to the computer with an ESP module plugged in and are ready to perform the mechanical steps. 1. Press and hold the RESET button down. 2. Press and hold the PROG button down. 3. Release the RESET button; the ESP module should blink an LED once. 4. Release the PROG button. The unit is ready. 5. Flash the firmware; watch the screen. a. The Arduino software will compile the firmware and display a row of dots as it flashes the ESP module. When the dots stop displaying, the process is complete. b. The ESP Module will also blink an LED during the flashing process and will stop blinking when it s complete. c. If using the ESP Flasher software, the screen will display progress updates. When done, it will say Leaving which means it s complete. 6. Wait about 10 more seconds and then press the RESET button. The ESP module s LED will blink once or twice as it boots up. 7. The ESP module will blink very faintly as it finds the network and secures a DHCP address, which is the default firmware setting. Give it a few seconds and then you can use your browser to access it via its IP address. Arduino Software Information How to use the Arduino compiler is adequately explained elsewhere and will not be addressed here. However, a few pertinent pieces of information are provided below: The ESPixelStick firmware requires version of the Arduino compiler. Newer versions of the Arduino compiler are available but at the time of this writing, they do not work with the ESPixelStick firmware. When downloading the software from the Arduino site, you may have to look in the archive to locate version You ll also find a copy of this version of the Arduino compiler in the file library at Remember to use the Arduino boards manager to add the Generic ESP8266 module to the Arduino setup before loading the ESPixelStick firmware. Unzipping the ESPixelStick firmware (Bill Porter s version) will create a folder named ESPixelStick-master on the computer. To USE the firmware, you must rename the folder to be espixelstick in all lower-case. This is necessary because the internal paths used in the firmware point to specific directories and the directory names/structure must be replicated properly. ESP Flashamater v Page 3

4 Load the ESPixelStick.ino file from the espixelstick folder into the Arduino software. The program code is quite well documented and is easy to modify. Only TWO ITEMS need modification and they pertain to the security setups for your wireless router. In particular, you ll need to know your router s wireless SSID and the password/passphrase set for your wireless network. You may have to use your browser to connect to the router to check them. Be sure to write it down EXACTLY as it is displayed in your router s configuration screen and remember, UPPER/lower case is important! In the Arduino code window, scroll down to this section: As directed, replace SSID_NOT_SET text with your wireless router s SSID. Remember to keep the double-quote marks around what you type. Do the same for PASSWORD_NOT_SET by replacing it with the password for your wireless setup, remembering that UPPER/lower case is important. Again, keep the double-quote marks around your entry. Then SAVE the code. It s ready to compile and flash into your ESP module. (Note: If you re actually using pixels and not Renard or DMX output, there are a few other options in the User Configuration area that pertain specifically to pixels, but these settings can also be changed later via the browser interface.) Once you make and save these changes, do not give the code or a compiled version to anyone else or they will know how to access your wireless network! TIMESAVER TIP: Use your Arduino IDE to create a standalone binary compilation of your code, and then you can use standalone flashing software with the Flashamater without the need of the Arduino IDE or having to recompile the code every time! ESP Flashamater v Page 4

5 Changing Firmware in an ESP8266 module At some time you may need to reflash an ESP module with either the same or different firmware. The best way to do this is to first restore the module to factory default settings by flashing it with the ESP Flasher software (for Windows) and the accompanying default firmware. This software is available as a free download from the DIGWDF Store; click on the download tab for the Flashamater product and you ll see the link. For some unexplainable reason flashing a new version of the ESP control firmware over the existing version isn t always successful, so returning it to factory specs first is highly recommended. The ESP Flasher software works with the Flashamater fine just remember to set the software to use the proper com port for your USB-TTL adapter. Timesaver TIP: Grelllbbb (the generally idiotic designer of the Flashamater) used the Arduino software option to Export a compiled binary of the properly configured ESP firmware for his network and then used the ESP Flasher software to flash multiple ESP modules in succession. This proved to be much faster than using the Arduino software to flash each module individually since the eventual final configuration of each module is performed via browser anyway. It also made flashing a module more portable than requiring a complete Arduino IDE on a computer since the ESP Flasher software and the compiled binary easily fits on an USB flash drive for use with a laptop. (Sometimes Grelllbbb surprises us with his ingenuity, although we still think he s pretty much an idiot most of the time ) ESP Flashamater v Page 5

ESPixelStick V2 Assembly and Usage

ESPixelStick V2 Assembly and Usage ESPixelStick V2 Assembly and Usage OVERVIEW The ESPixelStick is a wireless (802.11g/n) pixel controller that interfaces as a standard sacn / E1.31 controller and supports a variety of pixel types. It also

More information

DIGWDF RenStick. Overview. Assembly & User Guide

DIGWDF RenStick. Overview. Assembly & User Guide DIGWDF RenStick Assembly & User Guide Overview RenStick is the result of merging a tiny, minimal yet powerful wireless Renard controller with a DC SSR to provide low-voltage control of up to four, moderately-powered

More information

KISS WiFi setup and configuration

KISS WiFi setup and configuration KISS WiFi setup and configuration Thanks to Alex aka FedorComander and his never ending struggle for making the KISS feature-rich and increasing the usability we now have a remote solution via WiFi. The

More information

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 1. Introduction:... 3 Currently available:... 3 2. Backpack assembly... 4 3. Connecting to a keypad... 6 4. Rotary encoder keypads...

More information

Specification. 1.Power Supply direct from Microcontroller Board. 2.The circuit can be used with Microcontroller Board such as Arduino UNO R3.

Specification. 1.Power Supply direct from Microcontroller Board. 2.The circuit can be used with Microcontroller Board such as Arduino UNO R3. Part Number : Product Name : FK-FA1410 12-LED AND 3-BOTTON SHIELD This is the experimental board for receiving and transmitting data from the port of microcontroller. The function of FK-FA1401 is fundamental

More information

DIGWDF Ren-W Universal Assembly Guide

DIGWDF Ren-W Universal Assembly Guide DIGWDF Ren-W Universal Assembly Guide Overview Before starting, be sure to read through the entire guide to familiarize yourself with the parts and parts locations. In many cases, you may not need to install

More information

Phi-connect for Arduino (connector board V1.9)

Phi-connect for Arduino (connector board V1.9) Phi-connect for Arduino (connector board V1.9) Last reviewed on 3/29/2012 John Liu 1. Introduction... 2 2. Main features... 2 3. Parts list... 3 4. How to use... 4 5. Improving your Arduino experience

More information

1/Build a Mintronics: MintDuino

1/Build a Mintronics: MintDuino 1/Build a Mintronics: The is perfect for anyone interested in learning (or teaching) the fundamentals of how micro controllers work. It will have you building your own micro controller from scratch on

More information

USB Type A Female Breakout Hookup Guide

USB Type A Female Breakout Hookup Guide Page 1 of 7 USB Type A Female Breakout Hookup Guide Introduction If you have a microcontroller that can act as a USB host, then you will need a way to plug in USB cables and devices. The USB Type A Female

More information

BuffaloLabs WiFi Lantern Assembly guide version 1

BuffaloLabs WiFi Lantern Assembly guide version 1 BuffaloLabs WiFi Lantern Assembly guide version 1 Needed equipment: Solder iron Solder wire Cutter Wire stripper (optional) Hot glue gun Overview of the components (not including USB cable and box panels)

More information

Frequently Asked Questions

Frequently Asked Questions FAQs 10010410NC-RR Frequently Asked Questions Connecting Your Valet to the Internet 1 What computer operating systems does the Valet/Valet Plus support? 1 Why can t I connect my computer or device to my

More information

Device: PLT This document Version: 3.0. For hardware Version: 4. For firmware Version: Date: April 2014

Device: PLT This document Version: 3.0. For hardware Version: 4. For firmware Version: Date: April 2014 Device: PLT-1001 This document Version: 3.0 For hardware Version: 4 For firmware Version: 2.10 Date: April 2014 Description: LED Matrix Display Driver board PLT-1001v4 datasheet Page 2 Contents Introduction...

More information

Bill of Materials: Turn Off the Lights Reminder PART NO

Bill of Materials: Turn Off the Lights Reminder PART NO Turn Off the Lights Reminder PART NO. 2209650 Have you ever woke up early in the morning to find out that the kids (or adults) in your home forgot to turn off the lights? I've had that happen a number

More information

Halloween Pumpkinusing. Wednesday, October 17, 12

Halloween Pumpkinusing. Wednesday, October 17, 12 Halloween Pumpkinusing Blink LED 1 What you will need: 1 MSP-EXP430G2 1 3 x 2 Breadboard 3 560 Ohm Resistors 3 LED s (in Red Color Range) 3 Male to female jumper wires 1 Double AA BatteryPack 2 AA Batteries

More information

Elektor Uno R4 Installation & Test

Elektor Uno R4 Installation & Test Elektor Uno R4 Installation & Test Prerequisites Elektor Uno R4 USB-A to micro-b cable Computer with Windows (XP or later), Linux or OSX (10.7 or later) Arduino IDE 1.6.7 or higher (not 1.6.8) We highly

More information

FSA-CU Configuration Utility Programming Guide

FSA-CU Configuration Utility Programming Guide FSA-CU Configuration Utility Programming Guide Revision 3 October 2013 Introduction The following guide will show you the basics of the FSA-CU configuration utility program. The CU can be used with the

More information

User Manual. ESP8266 Wifi Shield

User Manual. ESP8266 Wifi Shield User Manual Of ESP8266 Wifi Shield Description The shield is designed based on esp8266 by Espressif Systems, pin-compatible with Arduino UNO/Mega2560 DevBorad. Which can be used as two independent part,

More information

ANTUMBRA KLIK MANUAL

ANTUMBRA KLIK MANUAL ANTUMBRA KLIK MANUAL TABLE OF CONTENTS 01. INSTALLATION 4 02. FRONT 5 03. STEPS PAGE 6 04. MENU 8 05. EUCLIDEAN MODE 10 06. PLAYMODE MENU 11 07. LAST STEP MENU 12 08. RANDOM AMOUNT 13 09. SOFTWARE MODIFICATIONS

More information

Note. The above image and many others are courtesy of - this is a wonderful resource for designing circuits.

Note. The above image and many others are courtesy of   - this is a wonderful resource for designing circuits. Robotics and Electronics Unit 2. Arduino Objectives. Students will understand the basic characteristics of an Arduino Uno microcontroller. understand the basic structure of an Arduino program. know how

More information

Parallax WX ESP8266 Wi-Fi Modules

Parallax WX ESP8266 Wi-Fi Modules Web Site: www.parallax.com Office: (916) 624-8333 Forums: forums.parallax.com Fax: (916) 624-8003 Sales: sales@parallax.com Sales: (888) 512-1024 Technical: support@parallax.com Tech Support: (888) 997-8267

More information

ROTOPOD PERISCOPE LIGHTING KIT

ROTOPOD PERISCOPE LIGHTING KIT ROTOPOD PERISCOPE LIGHTING KIT (for ULTIMATE Periscopes) 14-MAR-2013_rev 2.0 I designed the Periscope Lighting Kit to be as flexible as possible. Every LED is individually controllable. I have provided

More information

Warranty Disclaimer. Limitation of Liability

Warranty Disclaimer. Limitation of Liability Warranty Disclaimer Purchaser acknowledges that Top Cat Engineering L.L.C.has agreed to provide this kit for evaluation purposes only. Purchaser further acknowledges that Top Cat Engineering has no obligations

More information

Adafruit USB Power Gauge Mini-Kit

Adafruit USB Power Gauge Mini-Kit Adafruit USB Power Gauge Mini-Kit Created by Bill Earl Last updated on 2017-07-14 11:55:04 PM UTC Guide Contents Guide Contents Overview Assembly Basic Assembly Solder the female connector. Solder the

More information

Spartan -6 LX9 MicroBoard Web Connectivity On Ramp Tutorial

Spartan -6 LX9 MicroBoard Web Connectivity On Ramp Tutorial Spartan -6 LX9 MicroBoard Web Connectivity On Ramp Tutorial Version 13.2.01 Revision History Version Description Date 13.2.01 Initial release with support for ISE 13.2 tools Aug. 10, 2011 Page 2 of 30

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

AXE Stack 18. BASIC-Programmable Microcontroller Kit. An inexpensive introduction to microcontroller technology for all ability levels

AXE Stack 18. BASIC-Programmable Microcontroller Kit. An inexpensive introduction to microcontroller technology for all ability levels Ltd AXE Stack 18 BASIC-Programmable Microcontroller Kit a division of An inexpensive introduction to microcontroller technology for all ability levels Free Windows interface software Programmable in BASIC

More information

Freeduino USB 1.0. Arduino Compatible Development Board Starter Guide. 1. Overview

Freeduino USB 1.0. Arduino Compatible Development Board Starter Guide. 1. Overview Freeduino USB 1.0 Arduino Compatible Development Board Starter Guide 1. Overview 1 Arduino is an open source embedded development platform consisting of a simple development board based on Atmel s AVR

More information

PARTS LIST 1 x PC Board 36 x 5mm Red LED 36 x 12mm LED Standoff 36 x NPN Transistor 36 x 10kΩ Resistor OTHER PARTS YOU MAY NEED

PARTS LIST 1 x PC Board 36 x 5mm Red LED 36 x 12mm LED Standoff 36 x NPN Transistor 36 x 10kΩ Resistor OTHER PARTS YOU MAY NEED PARTS LIST 1 x PC Board 36 x 5mm Red LED 36 x 12mm LED Standoff 36 x NPN Transistor 36 x 150Ω Resistor 36 x 10kΩ Resistor 17 x Mini Toggle on-off 8 x Mini Toggle (on)-off-(on) 1 x 470Ω Resistor 1 x 47µF

More information

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM-1.0 Version /8/2011 USER MANUAL

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM-1.0 Version /8/2011 USER MANUAL RN-WIFLY-EVAL-UM WiFly Evaluation Kit 0 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM-.0 Version.0 //0 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks

More information

STT41AS1 v7.0 FUNCTIONAL DESCRIPTION

STT41AS1 v7.0 FUNCTIONAL DESCRIPTION All things connected Snaptekk www.snaptekk.com The WiFi Wireless Ham Radio Coax Antenna Switch allows a single transceiver to switch between 4 antennas or 4 transceivers to switch to a single antenna.

More information

Executive summary. Gather up the materials & tools required. Set up the BT2S for the ProChrono baud rate:

Executive summary. Gather up the materials & tools required. Set up the BT2S for the ProChrono baud rate: Executive summary On/Off switch A fully self-contained Bluetooth-to-ProChrono interface powered by three AA batteries Steady LED indicates Bluetooth connection Jack connects to ProChrono 1. Gather up the

More information

MMI6070 Quick Start Guide

MMI6070 Quick Start Guide MMI6070 Quick Start Guide Introduction If at any time more information is required on HMI safety and protection ratings, HMI Power, and HMI communication, please refer to the MMI6070 Installation Guide

More information

University of Hull Department of Computer Science C4DI Interfacing with Arduinos

University of Hull Department of Computer Science C4DI Interfacing with Arduinos Introduction Welcome to our Arduino hardware sessions. University of Hull Department of Computer Science C4DI Interfacing with Arduinos Vsn. 1.0 Rob Miles 2014 Please follow the instructions carefully.

More information

Post Tenebras Lab. Written By: Post Tenebras Lab

Post Tenebras Lab. Written By: Post Tenebras Lab Post Tenebras Lab PTL-ino is an Arduino comptaible board, made entirely out of through-hole components. It is a perfect project to learn how to solder and start getting into the world of micro controllers.

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

How-To #7: Assemble an H-bridge Circuit Board

How-To #7: Assemble an H-bridge Circuit Board How-To #7: Assemble an H-bridge Circuit Board Making a DC motor turn is relatively easy: simply connect the motor's terminals to a power supply. But what if the motor is to be controlled by an Arduino,

More information

USB RS232 Level Conversion copyright 2/25/07 Joe Pardue

USB RS232 Level Conversion copyright 2/25/07 Joe Pardue USB RS232 Level Conversion copyright 2/25/07 Joe Pardue Before purchasing the BBUSBRS232 kit or attempting the project, make sure you have read Breadboard Quick Start Guide, available to download from

More information

Table of Contents. Cisco Password Recovery Procedure for the Cisco Aironet Equipment

Table of Contents. Cisco Password Recovery Procedure for the Cisco Aironet Equipment Table of Contents Password Recovery Procedure for the Cisco Aironet Equipment...1 To get Cisco Aironet drivers, firmware and utility software, follow this link to the Cisco Wireless Software Center...1

More information

BB-303 Manual Baseboard for TMCM-303

BB-303 Manual Baseboard for TMCM-303 BB-303 Manual Baseboard for TMCM-303 Trinamic Motion Control GmbH & Co. KG Sternstraße 67 D 20357 Hamburg, Germany http://www.trinamic.com BB-303 Manual (V1.04 / Jul 9th, 2007) 2 Contents 1 Features...

More information

Troubleshooting Guide for the ESP8266

Troubleshooting Guide for the ESP8266 Troubleshooting Guide for the ESP8266 The ESP8266 has a few common issues, especially when you are trying to flash a new firmware or uploading scripts. This is a companion guide to the Home Automation

More information

VP- X Pro & VP- X Sport

VP- X Pro & VP- X Sport VP- X Configurator Release Notes As of version 1.6 (May 13, 2013) This document updated October 31, 2013 Contents 1. Models...1 2. Updating the VP-X Pro and Sport firmware (Automatic)...1 3. Software Upgrade

More information

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet. Mr G s Java Jive #2: Yo! Our First Program With this handout you ll write your first program, which we ll call Yo. Programs, Classes, and Objects, Oh My! People regularly refer to Java as a language that

More information

Designed & Developed By: Ms. Jasleen Kaur, PhD Scholar, CSE. Computer Science & Engineering Department

Designed & Developed By: Ms. Jasleen Kaur, PhD Scholar, CSE. Computer Science & Engineering Department Design & Development of IOT application using Intel based Galileo Gen2 board A Practical Approach (Experimental Manual For B.Tech & M.Tech Students) For SoC and Embedded systems in association with Intel

More information

Device: FDRV-04S. This document version: v1. Matches module version: v2 [2 Oct 2015] Document revision date: 9 November 2015

Device: FDRV-04S. This document version: v1. Matches module version: v2 [2 Oct 2015] Document revision date: 9 November 2015 Device: FDRV-04S This document version: v1 Matches module version: v2 [2 Oct 2015] Document revision date: 9 November 2015 Description: I2C 4 Device Motor / Solenoid Driver Board FDRV-04S HWv2 datasheet

More information

if only it were real the UGS download unpacked how part of your desktop might look a genuine Arduino NANO

if only it were real the UGS download unpacked how part of your desktop might look a genuine Arduino NANO grasping the nettle Once the A3 Laser is assembled and configured, well happy days, but before that there s a mountain to climb installing the software. A complete account of this might be called A3 Laser

More information

Thank you for purchasing the RGB Multi-MCU base and driver board from SuperTech-IT and TheLEDCube.com

Thank you for purchasing the RGB Multi-MCU base and driver board from SuperTech-IT and TheLEDCube.com CONGRATULATIONS Thank you for purchasing the RGB Multi-MCU base and driver board from SuperTech-IT and TheLEDCube.com In this document, MCU means Microcontroller such as the PIC32, ATmega328P, prototype

More information

Building the FlipChip Tester

Building the FlipChip Tester Building the FlipChip Tester 1. Assembly of the Core Board You will need a fine low-wattage soldering iron and a Voltmeter. Take your time to solder the components on the Core Board. Better to spend a

More information

3. The circuit is composed of 1 set of Relay circuit.

3. The circuit is composed of 1 set of Relay circuit. Part Number : Product Name : FK-FA1420 ONE CHANNEL 12V RELAY MODULE This is the experimental module for a relay controller as the fundamental controlling programming. It is adaptable or is able to upgrade

More information

Signature 384 Upsampler and USB input Users Manual

Signature 384 Upsampler and USB input Users Manual Signature 384 Upsampler and USB input Users Manual Rev 1 (4/09) Signature 384 Upsampler Installation Procedure: 1) Remove one Side Panel (End Cap) by removing 4 Allen Screws as shown. 2) Remove 6 Philips

More information

Table of Contents. Keyspan:USB Server - User Manual

Table of Contents. Keyspan:USB Server - User Manual Table of Contents 1 Introduction Compatible USB Devices Connectivity to USB Devices Connectivity to Network Requirements What's Inside The Package 2 Installation Instructions Installing the USB Server

More information

HOW TO USE ESP8266 WITH ARDUINO IDE

HOW TO USE ESP8266 WITH ARDUINO IDE HOW TO USE ESP8266 WITH ARDUINO IDE This document applies for the following products: ESP8266-EVB; ESP8266-EVB-BAT; ESP8266-EVB-BAT-BOX Document revision B, February 2017 All boards produced by Olimex

More information

ARDUINO INDUSTRIAL 1 01 Code: A000126

ARDUINO INDUSTRIAL 1 01 Code: A000126 ARDUINO INDUSTRIAL 1 01 Code: A000126 The Industrial 101 is a small form-factor YUN designed for product integration. OVERVIEW: Arduino Industrial 101 is an Evaluation board for Arduino 101 LGA module.

More information

HOW TO UPGRADE ESP8266 BOARDS USING ESP FLASH DOWNLOAD TOOLS

HOW TO UPGRADE ESP8266 BOARDS USING ESP FLASH DOWNLOAD TOOLS HOW TO UPGRADE ESP8266 BOARDS USING ESP FLASH DOWNLOAD TOOLS This document applies for the following products: ESP8266-EVB; ESP8266-EVB-BAT; ESP8266-EVB-BAT-BOX; MOD-ESP8266-WIFI-DEV; MOD-ESP8266-WIFI;

More information

K9 Series Firmware Update Guide

K9 Series Firmware Update Guide K9 Series Firmware Update Guide This Guide provides how to download and install a new version of the firmware (operating software) for K9 Series DVR. 제품사진 Requirements To update the firmware on the K9

More information

SonicWALL SSL VPN 2.5 Early Field Trial

SonicWALL SSL VPN 2.5 Early Field Trial Secure Remote Access Contents Platform Compatibility New Features Known Issues Resolved Issues Upgrading SonicWALL SSL VPN Software Procedures Related Technical Documentation Platform Compatibility The

More information

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER This kit is a simple but powerful programmer for the Atmel AT90Sxxxx ( AVR ) family of microcontrollers. The Atmel AVR devices are a low-power CMOS 8-bit microcontroller using a RISC architecture. By executing

More information

DVR 2500 Firmware Update Guide

DVR 2500 Firmware Update Guide Advanced security made easy DVR 2500 Firmware Update Guide How to download and install a new version of the firmware (operating software) for the DVR 2500 which supports remote access from mobile devices,

More information

HDMI MATRIX SWITCHER B-120-HDMATRIX-4x4/8x8 CONFIGURATION UTILITY MANUAL

HDMI MATRIX SWITCHER B-120-HDMATRIX-4x4/8x8 CONFIGURATION UTILITY MANUAL HDMI MATRIX SWITCHER B-120-HDMATRIX-4x4/8x8 CONFIGURATION UTILITY MANUAL IMPORTANT SAFETY INSTRUCTIONS To reduce the risk of fire or electric shock, read and follow all instructions and warnings in this

More information

H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER

H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER H8-Z37 DOUBLE DENSITY FLOPPY CONTROLLER 2015 H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER Norberto Collado norby@koyado.com 6/6/2015 Revision History and Disclaimer Revision History Revision Date Comments

More information

Thank You for purchasing our firmware. This guide aims to guide you one step at a time to mod your Seagate Wireless Plus(W+)!

Thank You for purchasing our firmware. This guide aims to guide you one step at a time to mod your Seagate Wireless Plus(W+)! Thank You for purchasing our firmware. This guide aims to guide you one step at a time to mod your Seagate Wireless Plus(W+) Note that this documentation is written based on the mod version 4.0 on the

More information

An open-source hardware+software project. For design files and additional documentation, please visit:

An open-source hardware+software project. For design files and additional documentation, please visit: An open-source hardware+software project. For design files and additional documentation, please visit: http://www.evilmadscientist.com/go/diavolino Support: http://www.evilmadscientist.com/forum/ Distributed

More information

Build a NeoPixel-painter remote control trigger for under $20. By Kerry Lawrence

Build a NeoPixel-painter remote control trigger for under $20. By Kerry Lawrence Build a NeoPixel-painter remote control trigger for under $20. By Kerry Lawrence Last updated May 25, 2016 Guide Contents Guide Contents... 2 Overview... 2 Advantages... 2 Easier to spin and twirl the

More information

Application Note: AN0106. On-Board SPI Programming with Dediprog tools: End User Version

Application Note: AN0106. On-Board SPI Programming with Dediprog tools: End User Version 4F., No.7, Ln. 143, Xinming Rd., Neihu Dist., Taipei City 114, Taiwan Application Note: AN0106 On-Board SPI Programming with Dediprog tools: End User Version (This document is provided to help users who

More information

Zero2Go. User Manual (revision 1.03) Wide Input Range Power Supply for Your Raspberry Pi. Copyright 2017 UUGear s.r.o. All rights reserved.

Zero2Go. User Manual (revision 1.03) Wide Input Range Power Supply for Your Raspberry Pi. Copyright 2017 UUGear s.r.o. All rights reserved. Zero2Go Wide Input Range Power Supply for Your Raspberry Pi User Manual (revision 1.03) Copyright 2017 UUGear s.r.o. All rights reserved. Table of Content Product Overview... 1 Product Details... 3 Package

More information

Description: USB to Serial interface and USB development platform

Description: USB to Serial interface and USB development platform Device: PLT-1003 This document Version: 1.0 Date: October 2010 Description: USB to Serial interface and USB development platform PLT-1003 datasheet Page 2 Table of Contents Introduction... 3 Features...

More information

BrightSign Wireless Model User Guide

BrightSign Wireless Model User Guide BrightSign Wireless Model User Guide support@brightsign.biz www.brightsign.biz 12/7/2010 Rev 1.0 Table of Contents 1. Overview... 3 1.1 Wireless Specifications... 3 1.2 Software Requirements... 3 2. Getting

More information

HUZZAH ESP8266 WiFi Modem Setup 2017 Chris Schneider (SHIFT838) Version 1.0

HUZZAH ESP8266 WiFi Modem Setup 2017 Chris Schneider (SHIFT838) Version 1.0 WiFi Modem Setup 2017 (SHIFT838) Version 1.0 Last Updated: 07/06/2017 Table of Contents 1. Acknowledgements... 4 2. Project Information... 4 3. Requirements... 5 3.1 Hardware Requirements... Error! Bookmark

More information

ULTIMATE CART FIRMWARE UPGRADE GUIDE

ULTIMATE CART FIRMWARE UPGRADE GUIDE Page 1 ULTIMATE CART FIRMWARE UPGRADE GUIDE This guide is intended as a reference to help understand the firmware upgrade process for the Ultimate Cart and highlight potential issues. It is not a comprehensive

More information

GreenEye Monitor. WiFi/Ethernet Setup

GreenEye Monitor. WiFi/Ethernet Setup GreenEye Monitor WiFi/Ethernet Setup Document Code: GEM-SET-WE-2 Ver 6.2 2017-10-09 Copyright Brultech Research Inc. 2017 Introduction TABLE OF CONTENTS Introduction...3 The Communication Module... 3 Start-up

More information

User Guide. AC1200 Max Wi-Fi Range Extender. Model # RE6500

User Guide. AC1200 Max Wi-Fi Range Extender. Model # RE6500 User Guide AC1200 Max Wi-Fi Range Extender Model # RE6500 Table of Contents Product Overview...3 RE6500... 3 How to Install the Range Extender...6 Special Feature Music Streaming... 11 ios... 11 Android*...

More information

Vodafone Enterprise Broadband User Guide

Vodafone Enterprise Broadband User Guide Vodafone Enterprise Broadband User Guide Built with business in mind The future is exciting. Ready? Contents 1. Setting up your Vodafone Broadband router 2 1.1 Connecting devices wirelessly to the internet

More information

Setup Guide for Hard-Wire Ethernet Connected TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist

Setup Guide for Hard-Wire Ethernet Connected TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist Setup Guide for Hard-Wire Ethernet Connected TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist Summary This document explains how to configure the TP-Link

More information

Fuzz Face. Vintage fuzz with optional voltage inverter

Fuzz Face. Vintage fuzz with optional voltage inverter Fuzz Face Vintage fuzz with optional voltage inverter Contents of this document are 2014 Pedal Parts Ltd. No reproduction permitted without the express written permission of Pedal Parts Ltd. All rights

More information

Mailbox Notification Service. Created by Adam Kohring

Mailbox Notification Service. Created by Adam Kohring Mailbox Notification Service Created by Adam Kohring Last updated on 2015-06-24 10:20:07 PM EDT Guide Contents Guide Contents Overview Parts List Adafruit Products Additional Products Print the Circuit

More information

KUMO Quick Start Guide

KUMO Quick Start Guide KUMO Quick Start Guide Introduction This Quick Start Guide provides a basic overview of KUMO system connections and configuration. KUMO Router Connections Figure 1. KUMO Rear Panel Connections (3232 shown,

More information

Instructions for Installing FlashUpdate and Downloading Updates for NPRT 2200 Noise Power Ratio Test Set

Instructions for Installing FlashUpdate and Downloading Updates for NPRT 2200 Noise Power Ratio Test Set Instructions for Installing FlashUpdate and Downloading Updates for NPRT 2200 Noise Power Ratio Test Set Updates to the instrument firmware are available from the Applied Instruments website. Requirements

More information

RS-422/485 PCIe Card

RS-422/485 PCIe Card RS-422/485 PCIe Card User Manual Ver. 3.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction... 3 1.2 Features...

More information

RS-422/485 PCI Card User Manual Ver All brand names and trademarks are properties of their respective owners.

RS-422/485 PCI Card User Manual Ver All brand names and trademarks are properties of their respective owners. RS-422/485 PCI Card User Manual Ver. 2.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction... 3 1.2 Features...

More information

IpAlarm Module Set Up

IpAlarm Module Set Up Page 1 IpAlarm Module Set Up Note: This device is shipped configured for Ethernet connectivity. To use in this mode, connect the BLUE Jack (marked WAN) to your router and wait for the LEDs to stabilize.

More information

DLP-RFID2-EDK2 SETUP PROCEDURE

DLP-RFID2-EDK2 SETUP PROCEDURE DLP-RFID2-EDK2 SETUP PROCEDURE This product is designed to make it easy to both test the DLP-RFID2 module without developing your own hardware and provide an easy-to-use platform for those wishing to program,

More information

ARDUINO YÚN Code: A000008

ARDUINO YÚN Code: A000008 ARDUINO YÚN Code: A000008 Arduino YÚN is the perfect board to use when designing connected devices and, more in general, Internet of Things projects. It combines the power of Linux with the ease of use

More information

LevelOne. User Manual KVM-0811 / KVM /16-Port PS2 KVM Switch

LevelOne. User Manual KVM-0811 / KVM /16-Port PS2 KVM Switch LevelOne KVM-0811 / KVM-1611 8/16-Port PS2 KVM Switch User Manual Table of Contents 1. INTRODUCTION...1 FEATURES...1 PACKAGE CONTENT...2 SYSTEM REQUIREMENTS...2 TECHNICAL SPECIFICATIONS...3 FRONT PANEL...4

More information

K191 3 Channel RGB LED Controller

K191 3 Channel RGB LED Controller K191 3 Channel RGB LED Controller 1 Introduction. This kit has been designed to function as a versatile LED control module. The LED controller provides 3 high current channels to create light effects for

More information

RedBoard Hookup Guide

RedBoard Hookup Guide Page 1 of 11 RedBoard Hookup Guide CONTRIBUTORS: JIMB0 Introduction The Redboard is an Arduino-compatible development platform that enables quick-and-easy project prototyping. It can interact with real-world

More information

WISP Setup Guide for TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist

WISP Setup Guide for TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist WISP Setup Guide for TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist Summary This document explains how to configure the TP-Link WR841N router to provide

More information

Updating Reader Firmware

Updating Reader Firmware SWH-xxxx Readers Updating Reader Firmware Version C0 Document Part Number UM-096 July 2012 OVERVIEW This document describes how to download new firmware to Software House SWH-4xxx readers. The procedure

More information

Table of Contents. Camera Anatomy... pg 1. Package Contents... pg 2. Camera Assembly... pg 3. Account Login... pg 5. Adding a New Camera...

Table of Contents. Camera Anatomy... pg 1. Package Contents... pg 2. Camera Assembly... pg 3. Account Login... pg 5. Adding a New Camera... Table of Contents Camera Anatomy... pg 1 Package Contents... pg 2 Camera Assembly... pg 3 Account Login... pg 5 Adding a New Camera... pg 6 Wireless Configuration... pg 9 WPS Enabled Routers... pg 13 Technical

More information

ESPSX3 Ethernet Serial Port Server X 3 Users Guide

ESPSX3 Ethernet Serial Port Server X 3 Users Guide ESPSX3 Ethernet Serial Port Server X 3 Users Guide The ESPSX3 is an Ethernet Serial Port Sever with two RS-232 ports and one port that can be configured for RS-232, RS-485, or RS-422. The RS-485/RS-422

More information

Power Xpert Meter 2000 Gateway Card Kit

Power Xpert Meter 2000 Gateway Card Kit Quick Start Guide IL02601011E Rev. 2 December 2011 PXM 2250 PXM 2260 IQ 250 IQ 260 Power Xpert Meter 2000 Gateway Card Kit Table of Contents Remove the Meter From Service.... 2 Disconnect Power Connections,

More information

Power Xpert Meter 2000 Gateway Card Kit

Power Xpert Meter 2000 Gateway Card Kit Quick Start Guide IL02601011E PXM 2250 PXM 2260 IQ 250 IQ 260 Power Xpert Meter 2000 Gateway Card Kit Table of Contents Remove the Meter From Service... 2 Disconnect Power Connections, CTs, and Modbus....

More information

Linksys WAP54G Max233 Adapter (AD233BK w/ CTS/RTS pinouts)

Linksys WAP54G Max233 Adapter (AD233BK w/ CTS/RTS pinouts) This page outlines how to modify a consumer wireless product (the Linksys WAP54G), by using its onboard serial port to receive data from a temperature sensor. PARTS NEEDED Here's a list of everything used

More information

Instructions for Installing FlashUpdate and Downloading Updates for Super Buddy Satellite Meter

Instructions for Installing FlashUpdate and Downloading Updates for Super Buddy Satellite Meter Instructions for Installing FlashUpdate and Downloading Updates for Super Buddy Satellite Meter Updates to the Field Guide and to the instrument firmware are available from the Applied Instruments website.

More information

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

Installation/assembly manual for DCC/Power shield

Installation/assembly manual for DCC/Power shield Installation/assembly manual for DCC/Power shield The DCC circuit consists of the following components: R1/R6 R2/R3 R4/R5 D1 C2 2 kω resistor ½ Watt (colour code Red/Black/Black/Brown/Brown) 10 kω resistor

More information

Thank You for purchasing our firmware. This guide aims to guide you one step at a time to mod your Seagate GoFlex Satellite(GFS)!

Thank You for purchasing our firmware. This guide aims to guide you one step at a time to mod your Seagate GoFlex Satellite(GFS)! Thank You for purchasing our firmware. This guide aims to guide you one step at a time to mod your Seagate GoFlex Satellite(GFS) Step 1 : GFS : Download the Seagate GoFlex Satellite Firmware 1.3.7.001.

More information

GBxCart RW v1.1. Gameboy Flash Cart supported/tested Catskull Gameboy 32K Flash Cart

GBxCart RW v1.1. Gameboy Flash Cart supported/tested Catskull Gameboy 32K Flash Cart GBxCart RW v1.1 A device for backing up GB, GBC and GBA cart s game ROMs, save games and restoring saves from your PC. Main Features Backup games ROM to your PC Backup save games to your PC Restore save

More information

Instructions for designing the HelloWorld circuit board using Autodesk Eagle 8.6.0

Instructions for designing the HelloWorld circuit board using Autodesk Eagle 8.6.0 Instructions for designing the HelloWorld circuit board using Autodesk Eagle 8.6.0 FABLAB BRIGHTON 2018 These instructions take you through step-by-step the process of creating the full circuit board design

More information

If you use Android smart devices, make sure the Android system is above 4.0. If you use Apple smart devices, make sure the ios system is above 6.0.

If you use Android smart devices, make sure the Android system is above 4.0. If you use Apple smart devices, make sure the ios system is above 6.0. FAQ 1. What is the system requirement for the INPLUG Wi-Fi Switch? If you use Android smart devices, make sure the Android system is above 4.0. If you use Apple smart devices, make sure the ios system

More information

SM010, Assembly Manual PCB Version 1.0

SM010, Assembly Manual PCB Version 1.0 180 SM010, Assembly Manual MATRIXARCHATE 16 8 IO SEQUENTIAL MATRIX SIGNAL ROUTER SM010 1 2 1 2 3 4 5 3 4 5 6 7 8 9 10 11 12 6 7 8 9 10 11 12 13 14 15 16 PROGRAM A B C D E F G H f1 f2 20.000 180 SSSR Labs

More information

AVR Intermediate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

AVR Intermediate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help AVR Intermediate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information