Author Topic: robot terminology dictionary - request help!  (Read 4929 times)

0 Members and 1 Guest are viewing this topic.

Offline AdminTopic starter

  • Administrator
  • Supreme Robot
  • *****
  • Posts: 11,703
  • Helpful? 173
    • Society of Robots
robot terminology dictionary - request help!
« on: May 13, 2008, 01:46:30 PM »
I want to throw together a dictionary filled with robotics terms. Basically, words that can be overwhelming to a beginner at SoR that intermediate and expert people toss around like kittens at a catapult festival.

For example, MCU, ESC, SLAM, photovore, motor driver, H-bridge, hex, code, kalman filter, etc.

Definitions should be very short, like one sentence. A 'click here to read more' option can be next to it but not required.

So here is where I ask volunteers to submit words and/or their definitions. When the list gets long enough, I'll compile it into a nice tutorial.

Offline bukowski

  • Robot Overlord
  • ****
  • Posts: 219
  • Helpful? 0
Re: robot terminology dictionary - request help!
« Reply #1 on: May 13, 2008, 02:29:27 PM »
i2c, pullup/down resistor, external xtal oscillator, resonator, mebbe a short list of the pros and cons where applicable.

Offline pomprocker

  • Supreme Robot
  • *****
  • Posts: 1,431
  • Helpful? 16
  • Sorry miss, I was giving myself an oil-job.
    • Nerdcore - Programming, Electronics, Mechanics
Re: robot terminology dictionary - request help!
« Reply #2 on: May 13, 2008, 02:40:22 PM »
how about a wiki?

Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: robot terminology dictionary - request help!
« Reply #3 on: May 13, 2008, 03:06:07 PM »
PID == Propotional integral derivative
CPU == central porcessing unit (not a microprocessor)
FPGA == field programmable gate array
CPLD == complex programmable logic device ,,, right? ::)
HEX == the hexadecimal file to be downloaded to the microcontroller


stuff like that? i got many ;D
good ol' BeNNy

Offline pomprocker

  • Supreme Robot
  • *****
  • Posts: 1,431
  • Helpful? 16
  • Sorry miss, I was giving myself an oil-job.
    • Nerdcore - Programming, Electronics, Mechanics
Re: robot terminology dictionary - request help!
« Reply #4 on: May 13, 2008, 05:51:48 PM »
MOSFET

Offline Kohanbash

  • Supreme Robot
  • *****
  • Posts: 430
  • Helpful? 1
Re: robot terminology dictionary - request help!
« Reply #5 on: May 13, 2008, 09:59:24 PM »
PIC,Atmel,Basic, GCC, G++, A* , compiler
Robots for Roboticists Blog - http://robotsforroboticists.com/

Offline AndrewM

  • Robot Overlord
  • ****
  • Posts: 254
  • Helpful? 0
    • I Am.  When?
Re: robot terminology dictionary - request help!
« Reply #6 on: May 13, 2008, 10:12:17 PM »
algorithm - a logical or mathematical sequence designed to solve a given problem or complete a task

pseudocode - a machine and language independent method of writing out the instructions used for an algorithm or program

cycle - a complete revolution of a pattern or waveform from the start to the point it repeats.  Ex: In the list of numbers "100010110001011000101" one cycle is "1000101"

frequency - the number of times a cycle is completed over a given period of time or set length

Hertz (Hz) - a measure of frequency given in cycles per second

Kilohertz (KHz), Megahertz (MHz) - one thousand cycles per second and one million cycles per second, respectively.

noise - any unwanted electrical frequency found in a circuit

EMF - Electromagnetic Field.  A magnetic field generated by passing an electrical current through a conductor.  Often creates noise in nearby circuits.

ESC - Electronic Speed Controller.  An electrical circuit designed to control the speed and direction of an electric motor using pulsed square waves as the input control signal.

chassis - the main structural piece of a robot designed to support and hold all other components

Herbert - any robot built, designed or created by Andrew Maxim  ::)

I'll add more as I think of them or see them used...

Edit:  Forgot one
Kitty - the nemesis of modern day robots, also the futuristic alternative power source for all robotics (rumored to provide over 20 megawatts of power per unit consumed)
« Last Edit: May 13, 2008, 10:17:21 PM by AndrewM »
blog: www.iamwhen.com
Saving the world from humanity one robot at a time.

Offline dolinay

  • Contest Winner
  • Jr. Member
  • ****
  • Posts: 18
  • Helpful? 0
Re: robot terminology dictionary - request help!
« Reply #7 on: May 19, 2008, 06:32:40 AM »
I wrote kind of report on microcontrollers (unfortunatelly not in English). Here are the terms I compiled during this - translated into English. I did my best
but it will need editing by some native speaker.  ;) Also it is only related do microcontrollers...

BTW wiki is great resource but it's not as easy as it may seem to extract some short and usuable definitions from there.


Here is the list:
Processor – (also Central Processing Unit - CPU). Logic machine which executes instructions. It is central part of computer or microcomputer.

CPU – see processor

MCU – see microcontroller

Microcontroller (also Microcontroller unit - MCU) - computer integrated into one chip. Integrated circuit which besides CPU contains other circuits such as memory, clock generator, timer, input/output lines, A/D converter and communication interface.

Algorithm – exact recipe how to do something.

Instruction (of a CPU) – elementary action which processor can perform.

Operation code (also opcode) – code which identifies the operation which CPU should do. Opcode is part of an instruction. Instruction consists of opcode and operand(s).

Machine code (also machine language) – the lowest level of abstraction for writing computer program. It is composed of numbers which represent instructions and data.

Assembler – programming language close to machine language. Also name used for the computer program which translates program written in this language into machine code.

Compiler – in general a machine, typically computer program, which translates some input language into another, output language. In programming compiler translates program written in some programming language into machine code.

Register – very small but very fast memory which is typically integrated in the CPU. It is used to temporarily store operands and results of currently executing instructions.

Address – unique identifier for a piece of computer memory. In most computers the size of each such memory piece is 1 byte.

Program – sequence of instructions which tells the processor what to do.

Programming- the process of writing (creating) programs.

Programming language – language used for writing programs.

Variable – named space in memory, into which some value can be saved.

Array – data structure which contains certain number of items of the same size

Local variable – variable which is visible (usable) only in certain part of a program, typically inside function or subroutine or inside even smaller part of the code.

Global variable – variable which is visible (available) in a whole program. Opposite of local variable.

Loop – part of a program which is executed repeatedly until (or unless) some condition is met.

Stack – part of the RAM memory used for special purposes and with special instructions.
 
Subroutine- part of program which can be called (jumped into) from various places of the program. Execution automatically returns to the point from which the subroutine was called (to the next instruction after the jump) from the end of the subroutine.

Parameter (argument) – something which is passed into subroutine from the program which calls this subroutine.

Stack pointer – register which keeps the address of the next free position in the stack (or address of the last value added to stack).
 
Program counter (PC) – register which keeps the address of the currently executed instruction.

Bit – basic unit of information. It is the amount of information needed to distinguish two states (1 and 0; true or false, etc.).

Byte – 8 bits.

Port – part of a microcontroller which allows it to communicate with outer world.

LED – Light Emitting Diode – semiconductor part which emits lights when electrical current flows through it.

Polling – situation when program repeatedly (in a loop) tests state of some device - for example, when waiting for the device to complete some operation. The opposite of polling is the situation in which the device signals completion of its operation by an interrupt. Thus the program can perform other (more useful) tasks than testing device's state.

Interrupt – a way in which the processor is forced to respond to an external event (e.g. key press). In response to interrupt the processor temporarily stops executing the current program and executes special subroutine associated with this interrupt. The subroutine is called interrupt handler.

Interrupt handler – subroutine which is executed in response to an interrupt.

Interrupt vector – address in memory where the interrupt handler is located or index into a table which contains addresses of interrupt handlers.

A/D converter – (Analog to Digital converter) - device which converts analog signal (such as voltage) to a number.

Driver – from programmers perspective a library of subroutines (functions) which help to work with some device, e.g. with display. In general software which makes it possible to use some hardware.

Display – a device for displaying data, e.g. TV screen, computer monitor etc.

String (text) – in general set of elements of the same type with defined order. Typically set of characters which are represented in the program by single variable. In fact, array of characters. In many programming languages end of string is marked by element with value 0.

NULL – symbol for “no value” or nothing. In C language it is used as a value of pointer which points nowhere (is not set to a valid value). The value of NULL is usually 0. Sometimes null (lower case) is the symbolic name for terminating character of text strings.

ASCII code – code which defines numerical values for representing alphabetical characters. The most widely used code for encoding characters on computers.

Serial communication – kind of communication, during which data are sent by single bits, one bit after another. 

Parallel communication – several bits (typically 8 bits) are sent at the same time.

Timer – (timer module) - part of microcontroller which performs time-related tasks, such as measuring length of time interval or generating interrupts at certain frequency.

Counter – main part of timer. In fact it is a register. The content of this register is incremented at regular intervals. After it reaches the maximal value it starts counting again from zero.

Prescaler – part of timer which divides input clock signal by certain value before the signal enters the timer.

Modulo register – register in a timer module which defines maximal value for timer counter. When the counter reaches this value, it is reset and counts from zero again.
 
PWM – (pulse-width-modulation) - kind of change (modulation) of a signal which is used to transfer information or regulate power delivered to some device. Also name for the function provided by microcontroller timer which performs this task.   

Input capture – One of the functions often provided by timer module. It allows capturing (saving to a designated register) the exact time when defined change occurs at input pin of the microcontroller (e.g. when the pin goes from log 1 to log 0).
 
Output compare – One of the functions often provided by timer module. It allows generating change on output pin of the microcontroller at exactly given time.


Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: robot terminology dictionary - request help!
« Reply #8 on: May 19, 2008, 07:47:29 AM »
nice job man
good ol' BeNNy


Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: robot terminology dictionary - request help!
« Reply #10 on: May 23, 2008, 02:15:07 PM »
machine language:    computer program instructions and data represented in binary form
all high level languages are translated to machine language by an assembler ,compiler ,interpreter or monitor system.

modulation:    combining 2 signals with the result that some aspect of one signal(the carrier) is varied by and in sympathy
with the other(the modulating signal)
usually the carrier has a frequency considerably higher than that of the modulating signal


motion sensor:   a set of devices that produces an output signal whenevr anything moves within a certain area
such equipment might use IR, ultrasound,microwaves,thermal sensors,sound detectors,cameras

Crystal:   a plate or bar cut from a piezoelectric material

ranging:   any means of determining the distance from a station or vehicle
to an object

readability:   in communications the degree to whicha desired signal can be recognized and interpreted
in a given context

GUI: acronym for GRAPHICAL USER INTERFACE

compiler:
a program that changes  a high level language such as BASIC, C , C++ , COBOL , or FORTRAN into machine language

end effector:
the device or tool connected to the end of a robot arm

Humanoid:
a robot that bears structural resemblance to a human being
in its most advanced form,such a robot is an ANDROID.

Android:
a robot built in humanoid form,usually it propels itself
by rolling on wheels or on a track drie,a rotable head containing position sensors,
a machine vision system and/or machine hearing system
mechanical arms are equipped with end effectors to perform various tasks.
good ol' BeNNy

Offline Nyx

  • Robot Overlord
  • ****
  • Posts: 204
  • Helpful? 0
Re: robot terminology dictionary - request help!
« Reply #11 on: May 23, 2008, 03:06:04 PM »
how about a wiki?

I was thinking the same. If you could setup a wiki and link it to forum accounts... With a restriction that you need to have been a member for a couple of months and have at least so many posts before you can edit articles... It would probably be a better way to store definitions and useful information.

 


Get Your Ad Here