Nixie millivolt Meter Clock Add-on. Build Instructions, Schematic and Code

Size: px
Start display at page:

Download "Nixie millivolt Meter Clock Add-on. Build Instructions, Schematic and Code"

Transcription

1 Nixie millivolt Meter Clock Add-on Build Instructions, Schematic and Code I have been interested in the quirky side of electronics for as long as I can remember, but I don't know how Nixies evaded my eye for so long. It was only about a year ago, during my first semester of college, that I come across them such an awesome looking display, the 3D look to it and the glow of a tube-like device. Like many before me, I instantly decided that I needed to make a clock. The other day, I managed to come across a pile of electronics that were being disposed, and there something I was looking for: a Nixie Tube based Volt Meter... er, "Volt meter" is a bit misleading, it's actually a millivolt meter. It wouldn't turn on at first, but a good whack to the tube board fixed that... no joke, a good whack works a lot more often than it should. Now came the interesting part. I wanted to make a clock out of it without ruining the normal functionality. Normally with these projects a voltmeter like this is gutted and replaced with clock innards, or people just take out the tubes and their respective driver boards, but I wanted to be able to use this tool (never know if it'll come in handy!). So, after a little thought and knowing I had some free time, I came up with this. Time to Complete: 2 hours for design, construction, and fine-tuning. It took 3.5 hours if you count debugging the issue with different power sources for the board as described below. The clock operates by an arduino** that keeps the time using the Time library, and outputs variable voltages via four/five (depends on mode) PWM pins. These are maxed out at 5V, and cannot operate at the millivolt level the meter needs on their own, so I put each output through a Resistor Divider to compensate and tune it in. With the resistor dividers, the clock time is output as a voltage anywhere from 0-0.0XXXX V where the X's mark the time. For example, if the time was 12:30, the output voltage would be V or 12.30mV ** I have used this same arduino for an absurd number of things, I always can just pop it from one thing to another with a quick reprogram, but I want this running always, so I am choosing a barebones uc and an actual RTC to keep things nice and smooth. Heck, I may even remake the circuit with all TTL gates since I am doing nothing better in required-before-taking-anything-else digital logic class right now. The day I picked up the meter, I went home and did the math for the voltage dividers. After a few tries (due to ADD on my part regarding the scale of the voltages being output, and then

2 again since I switched to the 100mV scale rather than the 1000mV scale to take advantage of the decimal point placement), I had the set of resistors needed. However, some of the values either A could not exist (infinite decimals) or B, were too bizarre. So I rounded them down the closest value that was simple to implement, and then use some tweaking to determine the maximum PWM value to make the maximum output the divider should have, and all clock calculations are done accordingly. The values calculated were as follows: Vout = Vin* (R2/(R1 + R2) (this only works for no-load circuits, but that's Ok for us using a mete which has such a high impedance it is not considered a significant load) Common Resistor to Ground for each divider: 1 Ohm (just to keep it simple, and fewer resistors) Hours left digit: 449 Ohms --> ~490 Ohms with PWM output mapping Hours right digit: repeating Ohms --> 550 Ohms with PWM mapping Minutes left digit: repeating Ohms --> 8.3 kohms with PWM mapping Minutes right digit: repeating Ohms --> 55kOhms with PWM mapping However, calculations are great and all but in the end they only give you a ballpark with things like this. You have to fiddle around with what you have, and you may find better results. I found out that I needed first a variable PWM output to compensate the meter which usually is -0.65mV from 0 with no outputs be but varies based on whether or not I use a USB bus for power or 5V adapter so yes, PWM is needed to compensate via software for both situations. I also realized I had enough accuracy in the PWM output for the left minutes digit to control the entire minutes range without issue, except again when on 5V external adapter. I think my board's regulator may be damaged at the rate in which I keep bringing it up, time to make a new one. Here are the resistor values I actually used: Common Resistor to Ground: 1 Ohm Hours left digit: 430 Ohms with PWM mapping (the resistor was on hand, and worked better without the 56 Ohm I had to bring it closer to target)* Hours right digit: 510 Ohm (resistor was on hand)* Minutes both digits: 8.2 kohm (resistor on hand, and realized that it had enough resolution even when mapped to work as both digits accurately)* A 50 kohm and a 9.7 kohm resistor in parallel to create a kohm* Turns out I didn't need this, the zero is easy enough to adjust when switching from clock to meter modes.

3 *I had them on hand, and it worked out (again, trial and error helps as doing math for every possible combination of things is either to much work for the thousands+ combinations, or gives you bizarre results like the calculations showed above The arduino sketch is at the bottom of the page. The build was done on a breadboard for quick and easy tweaking, and since I wanted to get this working for a demo ASAP (ok, in reality because I'm still deciding on a different uc and will make a proper PCB rather than use perfboard, as I haven't opened a bottle of Ferric Chloride in, quite literally, years. Results: The clock worked after a lot of tweaking, but there are still a couple of quirks. First, there are points at which it will be running fast, and others where it is running slow, which is similar to the design of "Lord Vetinari's Clock" which is meant to drive people mad. This will only drive you mad if you realize the minutes either change too often or too little, or if the least significant digit

4 flickers between two values due to the presence of voltages below 0.01mV adding up (which it does... A LOT). As for general drift, it seems like I am getting quite a bit, but I shouldn't be losing nine minutes after an hour! I have noticed that this old meter performs differently over time, maybe I should just let it run for a while and see how far off the tuning operations are when run. If they have gone off, the meter adjusted from temperature or long term operation. If they are the same, then my clock is drifting or programming wrong. So far my programming has tested right on everything, but I do know that the time library is also meant to grab time from serial. I am probably going to set this thing up with my spare network shield and pull from the universal clock for fun, I'll check for more drift then. There also is the occasional value of minutes around 99, this is due to the resolution of the hours output, which if I turned it up one notch higher, would put it several mv above ideal. I figured I'd rather have closest to a number rather than only real numbers. If I set only valid values could be output, then assume the actual time is 2:00. If I output real values only, the error is larger and would show 2:03/4. If I want more accuracy, then at 2:00 it may output 1:99 on some values. I'd rather have this as once it hits 2:01 it just shows up as 2:00 and not as far off. This only happens about every other hour. There is also a strange issue with the power supply arrangement. When setting up, programming, and tuning I used my computer as a power source for the arduino. When I tried to use a standard 5V adapter, I got a lot of absurd results that I could not successfully tune within the capabilities of my very short attention span. It may be that I damaged the voltage regulator on this board on another project (wouldn't be the first time I've done that). I may evaluate this, but likely not as I want to try some other ucs I haven't used yet and will build a board around it anyways. Future Modifications: A trimpot on each voltage divider for finer tuning A different uc with a proper time keeping circuit Tweak the settings to get the device working properly off of a normal 5V power adapter A proper PCB for everything Input buttons to control it once it is no longer tethered to a computer, as right now the time is set by reprogramming it since I need the computer anyways. A selector to use different voltage dividers so that I can use the circuit on virtually any Voltmeter. Here are some more photos of the Nixie millivolt meter:

5 Here is the Arduino Sketch (should work on all versions of the software, made particularly in 0018 since the machine I did this on has an old version since some libraries I use broke and I haven't fixed them yet). Please do note, that if you try to make this yourself remember that all the values I have given will need to be tweaked for your setup, as when working in millivolts things get a little more sensitive, for example I have multiple variable sets: one for power from a computer's USB port, a set for operating on an external 5V adapter, and another that is needing to be written for operating on a USB Wall Wart. /* Arduino PWN Nixie Voltmeter Clock, by Jimmy Hartnett This sketch is to output the time in the form of a voltage using PWN, for example 12:34 = V #include <Time.h> int HoursA_pin = 11; int HoursB_pin = 10; int MinutesA_pin = 9; int MinutesB_pin = 6; int zero_correction_pin = 5; /* These Values are for when powered by the USB bus (not the USB Power Adapters, the actual computer Bus.. I had discrepancies when testing so that's why if you're wondering) int HoursA_max = 220; //Tuned? - pretty much int HoursB_max = 231; //Tuned? - pretty much in software until a resistor adjustment is made int MinutesA_max = 239; //Tuned? - pretty much int MinutesB_max = 255; //Tuned? - int zero_correction_value = 241; //Tuned? - pretty much -!!! This is the Value for use with the

6 USB Bus, not the 5V external adapter (no idea why it matters) int HoursB_offsets[] = {1,1,2,3,3,4,4,5,6; // This is for USB Bus Power (NOT USB power adapter) (just my situation, adjust as needed for you) /* These Values are for when powered by an external 5V power adapter(not USB power, standard power adapter) I had discrepancies when testing so that's why if you're wondering /* int HoursA_max = 220; //Tuned? - pretty much int HoursB_max = 255; //Tuned? - pretty much in software until a resistor adjustment is made int MinutesA_max = 255; //Tuned? - pretty much int MinutesB_max = 255; //Tuned? - int zero_correction_value = 103; //Tuned? - pretty much, maybe +1 -!!! This is the Value for use with the 5V external adapter (no idea why it matters) int HoursB_offsets[] = {0,0,0,0,0,0,0,0,0; // This is for 5V External Adapter (just my situation, your mileage may vary) void setup() { pinmode(hoursa_pin,output); pinmode(hoursb_pin,output); pinmode(minutesa_pin,output); pinmode(minutesb_pin,output); pinmode(zero_correction_pin,output); analogwrite(zero_correction_pin,zero_correction_value); hourformat12(); settime(03,51,30,21,10,2011); void loop() { //These are to test the max outputs during calibration // analogwrite(hoursa_pin,hoursa_max); //analogwrite(hoursb_pin,hoursb_max); //analogwrite(minutesa_pin,minutesa_max); //analogwrite(minutesb_pin,minutesb_max); //analogwrite(hoursb_pin,(((hoursb_max/9)*9) + HoursB_offsets[(9-1)]));

7 // delay(10000); // just here to comment and uncomment to avoid constantly (un)commenting the big thing below this line while(true) { if (hour() <=9) { analogwrite(hoursb_pin,((hoursb_max/9)*hour() + HoursB_offsets[(hour() - 1)])); if (hour() > 9) { analogwrite(hoursb_pin,((hoursb_max/9)*(hour() - 10) + HoursB_offsets[(hour() )])); if (hour() <=9) { analogwrite(minutesa_pin,((minutesa_max/59) * (minute() /* - 1 ))); // the -1 in a comment is if it is needed to account for an occassional 0.01mV discrepancy due to resolutions of output if (hour() > 9) { analogwrite(minutesa_pin,((minutesa_max/59) * (minute() - 3 /* - 1 ))); // the minute() - 3 is to compensate for the low resolution of the HoursA output, which has a 0.03mV discrepancy and the HoursB 0.01mV discrepancy if (hour() >= 10) { analogwrite(hoursa_pin,hoursa_max); else { analogwrite(hoursa_pin,0); /* for (int x = 0; x <= HoursA_max; x += (HoursA_max/12) ) { int HoursB_counter = 0; analogwrite(hoursa_pin,x); for (int y = 0; y <= HoursB_max; y += (HoursB_max/9)) { analogwrite(hoursb_pin,(y + HoursB_offsets[HoursB_counter])); HoursB_counter++; for (int z = 0; z <= MinutesA_max; z += (MinutesA_max/59)) {

8 analogwrite(minutesa_pin,z); delay(1000); // test clock as if it were a stopwatch, good for testing

Common Phrases (2) Generic Responses Phrases

Common Phrases (2) Generic Responses Phrases Common Phrases (2) Generic Requests Phrases Accept my decision Are you coming? Are you excited? As careful as you can Be very very careful Can I do this? Can I get a new one Can I try one? Can I use it?

More information

Build a Mintronics: MintDuino

Build a Mintronics: MintDuino Build a Mintronics: MintDuino Author: Marc de Vinck Parts relevant to this project Mintronics: MintDuino (1) The MintDuino is perfect for anyone interested in learning (or teaching) the fundamentals of

More information

Lab #1 Help Document. This lab will be completed in room 335 CTB. You will need to partner up for this lab in groups of two.

Lab #1 Help Document. This lab will be completed in room 335 CTB. You will need to partner up for this lab in groups of two. Lab #1 Help Document This help document will be structured as a walk-through of the lab. We will include instructions about how to write the report throughout this help document. This lab will be completed

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

// Parts of a Multimeter

// Parts of a Multimeter Using a Multimeter // Parts of a Multimeter Often you will have to use a multimeter for troubleshooting a circuit, testing components, materials or the occasional worksheet. This section will cover how

More information

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment.

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment. Physics 222 Name: Exercise 6: Mr. Blinky This exercise is designed to help you wire a simple circuit based on the Arduino microprocessor, which is a particular brand of microprocessor that also includes

More information

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino Lecture 4: Basic Electronics Lecture 4 Page: 1 Brief Introduction to Electronics and the Arduino colintan@nus.edu.sg Lecture 4: Basic Electronics Page: 2 Objectives of this Lecture By the end of today

More information

Basic electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture- 24

Basic electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture- 24 Basic electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture- 24 Mathematical operations (Summing Amplifier, The Averager, D/A Converter..) Hello everybody!

More information

Programming 2 Servos. Learn to connect and write code to control two servos.

Programming 2 Servos. Learn to connect and write code to control two servos. Programming 2 Servos Learn to connect and write code to control two servos. Many students who visit the lab and learn how to use a Servo want to use 2 Servos in their project rather than just 1. This lesson

More information

Environmental Stochasticity: Roc Flu Macro

Environmental Stochasticity: Roc Flu Macro POPULATION MODELS Environmental Stochasticity: Roc Flu Macro Terri Donovan recorded: January, 2010 All right - let's take a look at how you would use a spreadsheet to go ahead and do many, many, many simulations

More information

Switching Boost Converter Power Supply

Switching Boost Converter Power Supply Switching Boost Converter Power Supply Building switchmode converters is something I had basically no experience with and only a very casual theoretical understanding of. Some might say it would have been

More information

LED + Servo 2 devices, 1 Arduino

LED + Servo 2 devices, 1 Arduino LED + Servo 2 devices, 1 Arduino Learn to connect and write code to control both a Servo and an LED at the same time. Many students who come through the lab ask if they can use both an LED and a Servo

More information

MITOCW R3. Document Distance, Insertion and Merge Sort

MITOCW R3. Document Distance, Insertion and Merge Sort MITOCW R3. Document Distance, Insertion and Merge Sort The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational

More information

Heuristics: Rules of Thumb

Heuristics: Rules of Thumb MODELING BASICS Heuristics: Rules of Thumb Tony Starfield recorded: November, 2009 What is a heuristic? A heuristic is a rule of thumb. It is something that is sometimes true and sometimes works, but sometimes

More information

INA169 Breakout Board Hookup Guide

INA169 Breakout Board Hookup Guide Page 1 of 10 INA169 Breakout Board Hookup Guide CONTRIBUTORS: SHAWNHYMEL Introduction Have a project where you want to measure the current draw? Need to carefully monitor low current through an LED? The

More information

.:Twisting:..:Potentiometers:.

.:Twisting:..:Potentiometers:. CIRC-08.:Twisting:..:Potentiometers:. WHAT WE RE DOING: Along with the digital pins, the also has 6 pins which can be used for analog input. These inputs take a voltage (from 0 to 5 volts) and convert

More information

Community College of Allegheny County Unit 7 Page #1. Analog to Digital

Community College of Allegheny County Unit 7 Page #1. Analog to Digital Community College of Allegheny County Unit 7 Page #1 Analog to Digital "Engineers can't focus just on technology; they need to develop their professional skills-things like presenting yourself, speaking

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections

The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections Welcome to the next lesson in the third module of this PowerPoint course. This time around, we

More information

Arduino Lesson 1. Blink. Created by Simon Monk

Arduino Lesson 1. Blink. Created by Simon Monk Arduino Lesson 1. Blink Created by Simon Monk Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink' Uploading Blink to the Board How 'Blink'

More information

The Inverting Amplifier

The Inverting Amplifier The Inverting Amplifier Why Do You Need To Know About Inverting Amplifiers? Analysis Of The Inverting Amplifier Connecting The Inverting Amplifier Testing The Circuit What If Questions Other Possibilities

More information

N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012

N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012 N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012 Thank you for purchasing my general coverage receiver kit. You can use the photo above as a

More information

The National Crystal Filter Cut to the Chase We don't need no steenkin math...

The National Crystal Filter Cut to the Chase We don't need no steenkin math... The National Crystal Filter Cut to the Chase We don't need no steenkin math... Tony Casorso ADØVC 8/6/2017 67 Slides 1 Goals Understand this circuit (NC183D Receiver): 2 QST Article This circuit was described

More information

Lab 2: Blinkie Lab. Objectives. Materials. Theory

Lab 2: Blinkie Lab. Objectives. Materials. Theory Lab 2: Blinkie Lab Objectives This lab introduces the Arduino Uno as students will need to use the Arduino to control their final robot. Students will build a basic circuit on their prototyping board and

More information

EE283 Electrical Measurement Laboratory Laboratory Exercise #7: Digital Counter

EE283 Electrical Measurement Laboratory Laboratory Exercise #7: Digital Counter EE283 Electrical Measurement Laboratory Laboratory Exercise #7: al Counter Objectives: 1. To familiarize students with sequential digital circuits. 2. To show how digital devices can be used for measurement

More information

ME430 Mechatronics. Lab 2: Transistors, H Bridges, and Motors. Name. Name. The lab team has demonstrated:

ME430 Mechatronics. Lab 2: Transistors, H Bridges, and Motors. Name. Name. The lab team has demonstrated: Name Name ME430 Mechatronics Lab 2: Transistors, H Bridges, and Motors The lab team has demonstrated: Part (A) Driving DC Motors using a PIC and Transistors NPN BJT transistor N channel MOSFET transistor

More information

Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit!

Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit! Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit! Well, now what? The focus of this guide is to aid you in turning that box of parts in front of you into a fully functional prototyping

More information

Multimedia and Arts Integration in ELA

Multimedia and Arts Integration in ELA Multimedia and Arts Integration in ELA TEACHER: There are two questions. I put the poem that we looked at on Thursday over here on the side just so you can see the actual text again as you're answering

More information

Autodesk University Texting Gone Wild; Advanced Annotation Tips and Tricks for Fabrication CADmep

Autodesk University Texting Gone Wild; Advanced Annotation Tips and Tricks for Fabrication CADmep Autodesk University Texting Gone Wild; Advanced Annotation Tips and Tricks for Fabrication CADmep I want to start out with just a little introduction, obviously. Because see a lot of familiar faces in

More information

Module All You Ever Need to Know About The Displace Filter

Module All You Ever Need to Know About The Displace Filter Module 02-05 All You Ever Need to Know About The Displace Filter 02-05 All You Ever Need to Know About The Displace Filter [00:00:00] In this video, we're going to talk about the Displace Filter in Photoshop.

More information

even describe how I feel about it.

even describe how I feel about it. This is episode two of the Better Than Success Podcast, where I'm going to teach you how to teach yourself the art of success, and I'm your host, Nikki Purvy. This is episode two, indeed, of the Better

More information

EE 210: CIRCUITS AND DEVICES

EE 210: CIRCUITS AND DEVICES EE 210: CIRCUITS AND DEVICES LAB #3: VOLTAGE AND CURRENT MEASUREMENTS This lab features a tutorial on the instrumentation that you will be using throughout the semester. More specifically, you will see

More information

Written by Hans Summers Monday, 22 September :14 - Last Updated Friday, 16 January :43

Written by Hans Summers Monday, 22 September :14 - Last Updated Friday, 16 January :43 This modification turns the Ultimate3 kit into an accurate GPS-disciplined frequency reference (approx 0.03Hz accuracy). The firmware has NOT yet been updated to operate with the Si5351A synthesiser module

More information

Written by Hans Summers Wednesday, 15 November :53 - Last Updated Wednesday, 15 November :07

Written by Hans Summers Wednesday, 15 November :53 - Last Updated Wednesday, 15 November :07 This is a phantastron divider based on the HP522 frequency counter circuit diagram. The input is a 2100Hz 15V peak-peak signal from my 2.1kHz oscillator project. Please take a look at the crystal oscillator

More information

Arduino Sensor Beginners Guide

Arduino Sensor Beginners Guide Arduino Sensor Beginners Guide So you want to learn arduino. Good for you. Arduino is an easy to use, cheap, versatile and powerful tool that can be used to make some very effective sensors. This guide

More information

Laboratory Exercise - Seven

Laboratory Exercise - Seven Basic D.C. AVIM 121 Lab 7 Page 1 of 9 rev. 08.09 Laboratory Exercise - Seven Objectives Determine milliammeter equivalent resistance. Calculate and apply meter shunts and multipliers. Determine voltmeter

More information

Validation of Push Pull Current

Validation of Push Pull Current Montana Tech Library Digital Commons @ Montana Tech Proceedings of the Annual Montana Tech Electrical and General Engineering Symposium Student Scholarship 2016 Validation of Push Pull Current Randy Ford

More information

Lesson 3: Arduino. Goals

Lesson 3: Arduino. Goals Introduction: This project introduces you to the wonderful world of Arduino and how to program physical devices. In this lesson you will learn how to write code and make an LED flash. Goals 1 - Get to

More information

Arduino An Introduction

Arduino An Introduction Arduino An Introduction Hardware and Programming Presented by Madu Suthanan, P. Eng., FEC. Volunteer, Former Chair (2013-14) PEO Scarborough Chapter 2 Arduino for Mechatronics 2017 This note is for those

More information

Autodesk University I Feel the Need, the Need for Speed AutoCAD Electrical Automation

Autodesk University I Feel the Need, the Need for Speed AutoCAD Electrical Automation Autodesk University I Feel the Need, the Need for Speed AutoCAD Electrical Automation Good afternoon, everyone. Welcome to I Feel the Need, the Need for Speed, AutoCAD Electrical Automation. Let me go

More information

The Motor sketch. One Direction ON-OFF DC Motor

The Motor sketch. One Direction ON-OFF DC Motor One Direction ON-OFF DC Motor The DC motor in your Arduino kit is the most basic of electric motors and is used in all types of hobby electronics. When current is passed through, it spins continuously

More information

Ground Loops and other Buzz

Ground Loops and other Buzz This is Google's cache of http://blog.trix.com/maxtroller-arduino-control-for-maxtrac-radios. It is a snapshot of the page as it appeared on Jan 17, 2012 19:29:13 GMT. The current page could have changed

More information

We're excited to announce that the next JAFX Trading Competition will soon be live!

We're excited to announce that the next JAFX Trading Competition will soon be live! COMPETITION Competition Swipe - Version #1 Title: Know Your Way Around a Forex Platform? Here s Your Chance to Prove It! We're excited to announce that the next JAFX Trading Competition will soon be live!

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver LABORATORY EXPERIMENT Infrared Transmitter/Receiver (Note to Teaching Assistant: The week before this experiment is performed, place students into groups of two and assign each group a specific frequency

More information

DC Circuits -- Conceptual Questions. 1.) What is the difference between voltage and current?

DC Circuits -- Conceptual Questions. 1.) What is the difference between voltage and current? DC Circuits DC Circuits -- Conceptual Questions 1.) What is the difference between voltage and current? 2.) A 12 ohm resistor has 2 amps of current passing through it. How much work does the resistor do

More information

Autodesk University Inventor HSM Turning - CNC Lathe Programming

Autodesk University Inventor HSM Turning - CNC Lathe Programming Autodesk University Inventor HSM Turning - CNC Lathe Programming So my name's Wayne Griffenberg. Please. Come on in. So I've worked in the manufacturing industry probably since 1998. Yeah, since '98. I

More information

FIRST WATT B4 USER MANUAL

FIRST WATT B4 USER MANUAL FIRST WATT B4 USER MANUAL 6/23/2012 Nelson Pass Introduction The B4 is a stereo active crossover filter system designed for high performance and high flexibility. It is intended for those who feel the

More information

G0CWA ANALOG AF/MF SIGNAL GENERATOR APRIL 2013

G0CWA ANALOG AF/MF SIGNAL GENERATOR APRIL 2013 G0CWA ANALOG AF/MF SIGNAL GENERATOR APRIL 2013 INTRODUCTION Hi here is my design for a simple easily customizable signal generator generating variable levels of sin, triangular and square wave signals

More information

A servo is an electric motor that takes in a pulse width modulated signal that controls direction and speed. A servo has three leads:

A servo is an electric motor that takes in a pulse width modulated signal that controls direction and speed. A servo has three leads: Project 4: Arduino Servos Part 1 Description: A servo is an electric motor that takes in a pulse width modulated signal that controls direction and speed. A servo has three leads: a. Red: Current b. Black:

More information

I: OK Humm..can you tell me more about how AIDS and the AIDS virus is passed from one person to another? How AIDS is spread?

I: OK Humm..can you tell me more about how AIDS and the AIDS virus is passed from one person to another? How AIDS is spread? Number 4 In this interview I will ask you to talk about AIDS. I want you to know that you don't have to answer all my questions. If you don't want to answer a question just let me know and I will go on

More information

You'll create a lamp that turns a light on and off when you touch a piece of conductive material

You'll create a lamp that turns a light on and off when you touch a piece of conductive material TOUCHY-FEELY LAMP You'll create a lamp that turns a light on and off when you touch a piece of conductive material Discover : installing third party libraries, creating a touch sensor Time : 5 minutes

More information

Ruffled T-shirt Bag. Ruffles are hot right now.

Ruffled T-shirt Bag. Ruffles are hot right now. Ruffled T-shirt Bag They've been seen on shirts, skirts, shower curtains and more. I'm not afraid to admit that I kinda have a thing for ruffles. Yes, it's true, sometimes I can be downright girly. Though

More information

#1 CRITICAL MISTAKE ASPERGER EXPERTS

#1 CRITICAL MISTAKE ASPERGER EXPERTS #1 CRITICAL MISTAKE ASPERGER EXPERTS How's it going, everyone? Danny Raede here from Asperger Experts. I was diagnosed with Asperger's when I was 12, and in this video, we are going to talk about all this

More information

1 Best Practices Course Week 12 Part 2 copyright 2012 by Eric Bobrow. BEST PRACTICES COURSE WEEK 12 PART 2 Program Planning Areas and Lists of Spaces

1 Best Practices Course Week 12 Part 2 copyright 2012 by Eric Bobrow. BEST PRACTICES COURSE WEEK 12 PART 2 Program Planning Areas and Lists of Spaces BEST PRACTICES COURSE WEEK 12 PART 2 Program Planning Areas and Lists of Spaces Hello, this is Eric Bobrow. And in this lesson, we'll take a look at how you can create a site survey drawing in ArchiCAD

More information

Welcome to our first of webinars that we will. be hosting this Fall semester of Our first one

Welcome to our first of webinars that we will. be hosting this Fall semester of Our first one 0 Cost of Attendance Welcome to our first of --- webinars that we will be hosting this Fall semester of. Our first one is called Cost of Attendance. And it will be a 0- minute webinar because I am keeping

More information

Milli Developer Kit Reference Application Published on Silver Spring Networks STAGE (

Milli Developer Kit Reference Application Published on Silver Spring Networks STAGE ( Milli Developer Kit Example Application PART 1 Example CoAP Server Sensor Implementation With The Milli Dev Kit Get the Milli Developer Kit Temperature Sensor Reference Application on GitHub [1] This reference

More information

Resistors and voltage. CSE1010 Jeffrey A. Meunier

Resistors and voltage. CSE1010 Jeffrey A. Meunier Resistors and voltage CSE1010 Jeffrey A. Meunier Consider this circuit Consider this circuit 5 Volt power supply Consider this circuit A resistive load Consider this circuit A resistive load (the load

More information

The Emperor's New Repository

The Emperor's New Repository The Emperor's New Repository I don't know the first thing about building digital repositories. Maybe that's a strange thing to say, given that I work in a repository development group now, and worked on

More information

Mike Wynn - ArtofAlpha.com

Mike Wynn - ArtofAlpha.com The Art of Alpha Presents' 7 Proven Conversation Starters That Lead To Dates How to easily approach any women, And not get stuck in your head wondering what to say I just let another beautiful woman slip

More information

Common Phrases (4) Summoners (Requests for Information)

Common Phrases (4) Summoners (Requests for Information) Common Phrases (4) Social Comments Phrases A. Ice breakers What's your name? What are you here for? What do you think of my artificial voice? I can understand you. It just takes me longer to answer. Don't

More information

OKAY. TODAY WE WANT TO START OFF AND TALK A LITTLE BIT ABOUT THIS MODEL THAT WE TALKED ABOUT BEFORE, BUT NOW WE'LL GIVE IT A

OKAY. TODAY WE WANT TO START OFF AND TALK A LITTLE BIT ABOUT THIS MODEL THAT WE TALKED ABOUT BEFORE, BUT NOW WE'LL GIVE IT A ECO 155 750 LECTURE FIVE 1 OKAY. TODAY WE WANT TO START OFF AND TALK A LITTLE BIT ABOUT THIS MODEL THAT WE TALKED ABOUT BEFORE, BUT NOW WE'LL GIVE IT A LITTLE BIT MORE THOROUGH TREATMENT. BUT THE PRODUCTION

More information

QUICKSTART COURSE - MODULE 7 PART 3

QUICKSTART COURSE - MODULE 7 PART 3 QUICKSTART COURSE - MODULE 7 PART 3 copyright 2011 by Eric Bobrow, all rights reserved For more information about the QuickStart Course, visit http://www.acbestpractices.com/quickstart Hello, this is Eric

More information

Proven Performance Inventory

Proven Performance Inventory Proven Performance Inventory Module 4: How to Create a Listing from Scratch 00:00 Speaker 1: Alright guys. Welcome to the next module. How to create your first listing from scratch. Really important thing

More information

Programming a Servo. Servo. Red Wire. Black Wire. White Wire

Programming a Servo. Servo. Red Wire. Black Wire. White Wire Programming a Servo Learn to connect wires and write code to program a Servo motor. If you have gone through the LED Circuit and LED Blink exercises, you are ready to move on to programming a Servo. A

More information

RGB LED Strips. Created by lady ada. Last updated on :21:20 PM UTC

RGB LED Strips. Created by lady ada. Last updated on :21:20 PM UTC RGB LED Strips Created by lady ada Last updated on 2017-11-26 10:21:20 PM UTC Guide Contents Guide Contents Overview Schematic Current Draw Wiring Usage Arduino Code CircuitPython Code 2 3 5 6 7 10 12

More information

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box Copyright 2012 by Eric Bobrow, all rights reserved For more information about the Best Practices Course, visit http://www.acbestpractices.com

More information

Easily Smooth And Soften Skin In A Photo With Photoshop

Easily Smooth And Soften Skin In A Photo With Photoshop Easily Smooth And Soften Skin In A Photo With Photoshop Written by Steve Patterson OPEN THE START FILE BY RIGHT CLICKING THE.JPG FILE AND CHOOSING OPEN WITH ADOBE PHOTOSHOP. SAVE AS: X_lastname_firstname_Smooth_Soft

More information

Laboratory 2. Lab 2. Instrument Familiarization and Basic Electrical Relations. Required Components: 2 1k resistors 2 1M resistors 1 2k resistor

Laboratory 2. Lab 2. Instrument Familiarization and Basic Electrical Relations. Required Components: 2 1k resistors 2 1M resistors 1 2k resistor Laboratory 2 nstrument Familiarization and Basic Electrical Relations Required Components: 2 1k resistors 2 1M resistors 1 2k resistor 2.1 Objectives This exercise is designed to acquaint you with the

More information

TWEAK THE ARDUINO LOGO

TWEAK THE ARDUINO LOGO TWEAK THE ARDUINO LOGO Using serial communication, you'll use your Arduino to control a program on your computer Discover : serial communication with a computer program, Processing Time : 45 minutes Level

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

The B7 Discrete Operational Amplifier Author: Tamas G. Kohalmi 7/5/2004

The B7 Discrete Operational Amplifier Author: Tamas G. Kohalmi 7/5/2004 The B7 Discrete Operational Amplifier Author: Tamas G. Kohalmi 7/5/2004 Table of Contents Part 1... pages 2-4 Part 2 pages 5-7 Part 1. This document describes a simple discrete operational amplifier that

More information

Understanding the Arduino to LabVIEW Interface

Understanding the Arduino to LabVIEW Interface E-122 Design II Understanding the Arduino to LabVIEW Interface Overview The Arduino microcontroller introduced in Design I will be used as a LabVIEW data acquisition (DAQ) device/controller for Experiments

More information

My Name Is Chris Curry... And I'd Like To Make

My Name Is Chris Curry... And I'd Like To Make My Name Is Chris Curry... And I'd Like To Make A Confession I sold real estate the hard way for way too long. You see, I thought the key to improving my business was working harder. So I worked harder...

More information

INTRODUCTION TO WEARABLES

INTRODUCTION TO WEARABLES Table of Contents 6 7 8 About this series Getting setup Making a circuit Adding a switch Sewing on components Complete a wearable circuit Adding more LEDs Make detachable parts......6.7.8 About this series

More information

Autodesk University See What You Want to See in Revit 2016

Autodesk University See What You Want to See in Revit 2016 Autodesk University See What You Want to See in Revit 2016 Let's get going. A little bit about me. I do have a degree in architecture from Texas A&M University. I practiced 25 years in the AEC industry.

More information

Workshops Elisava Introduction to programming and electronics (Scratch & Arduino)

Workshops Elisava Introduction to programming and electronics (Scratch & Arduino) Workshops Elisava 2011 Introduction to programming and electronics (Scratch & Arduino) What is programming? Make an algorithm to do something in a specific language programming. Algorithm: a procedure

More information

What is Dual Boxing? Why Should I Dual Box? Table of Contents

What is Dual Boxing? Why Should I Dual Box? Table of Contents Table of Contents What is Dual Boxing?...1 Why Should I Dual Box?...1 What Do I Need To Dual Box?...2 Windowed Mode...3 Optimal Setups for Dual Boxing...5 This is the best configuration for dual or multi-boxing....5

More information

SCRIPT TITLE. Written by. Name of First Writer. Based on, If Any

SCRIPT TITLE. Written by. Name of First Writer. Based on, If Any SCRIPT TITLE Written by Name of First Writer Based on, If Any Address Phone Number INT. HOME She is at home alone and sober but strung out. HI. Hey. YOU OKAY? NEVER BETTER WHAT HAPPENED - SOMETHIN' AT

More information

Arduino Freq-Mite for Norcal NC40A Mike WA8BXN Jan 2018

Arduino Freq-Mite for Norcal NC40A Mike WA8BXN Jan 2018 Arduino Freq-Mite for Norcal NC40A Mike WA8BXN Jan 2018 Dave Benson's (K1SWL) Freq-Mite is a popular frequency counter used as a digital readout in CW of the operating frequency of QRP transceivers. No

More information

Student Hub Live interface guide transcript

Student Hub Live interface guide transcript Student Hub Live interface guide transcript 0:00 [MUSIC PLAYING] 0:14 Karen Foley: The Student Hub Live is an online interactive event 0:17 and there are two ways that you can engage with it. 0:20 There's

More information

CPSC 226 Lab Four Spring 2018

CPSC 226 Lab Four Spring 2018 CPSC 226 Lab Four Spring 2018 Directions. This lab is a quick introduction to programming your Arduino to do some basic internal operations and arithmetic, perform character IO, read analog voltages, drive

More information

MITOCW ocw f08-lec36_300k

MITOCW ocw f08-lec36_300k MITOCW ocw-18-085-f08-lec36_300k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free.

More information

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide M-5578/0516 M-5578/0516 Section TABLE OF CONTENTS 1 Introduction... 1 2 Quick Guide on Getting Started... 2 Mounting the LVTX-10 Series

More information

Laboratory 2 (drawn from lab text by Alciatore)

Laboratory 2 (drawn from lab text by Alciatore) Laboratory 2 (drawn from lab text by Alciatore) Instrument Familiarization and Basic Electrical Relations Required Components: 2 1k resistors 2 1M resistors 1 2k resistor Objectives This exercise is designed

More information

BBC LEARNING ENGLISH How to chat someone up

BBC LEARNING ENGLISH How to chat someone up BBC LEARNING ENGLISH How to chat someone up This is not a word-for-word transcript I'm not a photographer, but I can picture me and you together. I seem to have lost my phone number. Can I have yours?

More information

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE LABORATORY 7: IR SENSORS AND DISTANCE DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOAL: This section will introduce

More information

QUICKSTART COURSE - MODULE 1 PART 2

QUICKSTART COURSE - MODULE 1 PART 2 QUICKSTART COURSE - MODULE 1 PART 2 copyright 2011 by Eric Bobrow, all rights reserved For more information about the QuickStart Course, visit http://www.acbestpractices.com/quickstart Hello, this is Eric

More information

Lab 5: Inverted Pendulum PID Control

Lab 5: Inverted Pendulum PID Control Lab 5: Inverted Pendulum PID Control In this lab we will be learning about PID (Proportional Integral Derivative) control and using it to keep an inverted pendulum system upright. We chose an inverted

More information

>> Counselor: Welcome Marsha. Please make yourself comfortable on the couch.

>> Counselor: Welcome Marsha. Please make yourself comfortable on the couch. >> Counselor: Welcome Marsha. Please make yourself comfortable on the couch. >> Marsha: Okay, thank you. >> Counselor: Today I'd like to get some information from you so I can best come up with a plan

More information

The D70 only controls one external group of flashes. You can use many external flashes, but they will fire at the same power.

The D70 only controls one external group of flashes. You can use many external flashes, but they will fire at the same power. Multiple Flash Channels The D70 only controls one external group of flashes. You can use many external flashes, but they will fire at the same power. To control more than one set of external flashes you

More information

APDS-9960 RGB and Gesture Sensor Hookup Guide

APDS-9960 RGB and Gesture Sensor Hookup Guide Page 1 of 12 APDS-9960 RGB and Gesture Sensor Hookup Guide Introduction Touchless gestures are the new frontier in the world of human-machine interfaces. By swiping your hand over a sensor, you can control

More information

J. La Favre Using Arduino with Raspberry Pi February 7, 2018

J. La Favre Using Arduino with Raspberry Pi February 7, 2018 As you have already discovered, the Raspberry Pi is a very capable digital device. Nevertheless, it does have some weaknesses. For example, it does not produce a clean pulse width modulation output (unless

More information

Part (A) Using the Potentiometer and the ADC* Part (B) LEDs and Stepper Motors with Interrupts* Part (D) Breadboard PIC Running a Stepper Motor

Part (A) Using the Potentiometer and the ADC* Part (B) LEDs and Stepper Motors with Interrupts* Part (D) Breadboard PIC Running a Stepper Motor Name Name (Most parts are team so maintain only 1 sheet per team) ME430 Mechatronic Systems: Lab 5: ADC, Interrupts, Steppers, and Servos The lab team has demonstrated the following tasks: Part (A) Using

More information

Bagels, Pico, Fermi. Bob Albrecht & George Firedrake Copyright (c) 2004 by Bob Albrecht

Bagels, Pico, Fermi. Bob Albrecht & George Firedrake Copyright (c) 2004 by Bob Albrecht ,, Bob Albrecht & George Firedrake MathBackPacks@aol.com Copyright (c) 2004 by Bob Albrecht is a number-guessing game that is great exercise for your wonderful problem-solving mind. We've played it on

More information

ECOSYSTEM MODELS. Spatial. Tony Starfield recorded: 2005

ECOSYSTEM MODELS. Spatial. Tony Starfield recorded: 2005 ECOSYSTEM MODELS Spatial Tony Starfield recorded: 2005 Spatial models can be fun. And to show how much fun they can be, we're going to try to develop a very, very simple fire model. Now, there are lots

More information

Test Procedure for Nanometric Discriminator Cards for Wire Chambers. James Clarke

Test Procedure for Nanometric Discriminator Cards for Wire Chambers. James Clarke Test Procedure for Nanometric Discriminator Cards for Wire Chambers James Clarke November 26, 2013 To test a discriminator card, first ensure you have the proper equipment. For our setup, we had three

More information

Go back to the stopped deck. Put your finger on it, holding it still, and press start. The deck should be running underneath the stopped record.

Go back to the stopped deck. Put your finger on it, holding it still, and press start. The deck should be running underneath the stopped record. LEARN TO MIX RECORDS Place two identical records/cd's on your decks, and set the pitch to 0. On most decks, a green light will come on to let you know it's at 0 and it'll probably click into place. By

More information

In This Letter... You're About To Learn The #1

In This Letter... You're About To Learn The #1 In This Letter... You're About To Learn The #1 Biggest Thing I Did This Year That Almost Doubled My Income, Earning As Much As $80,000 In A Single Month While Spending Half That Time In Vegas, Tripled

More information

Coding with Arduino to operate the prosthetic arm

Coding with Arduino to operate the prosthetic arm Setup Board Install FTDI Drivers This is so that your RedBoard will be able to communicate with your computer. If you have Windows 8 or above you might already have the drivers. 1. Download the FTDI driver

More information