SlideShare a Scribd company logo
maXbox Starter 45
Work with maXbox Robotics
1.1 Command with maXbox Operation Server
The Robots industry is promising major operational benefits, although no
one is quite sure where robots and the Industrial Internet of Things (IIoT)
will take manufacturing. IoT represents a closing of the gap between
production and IT and is seen as the next big step for automation.
In reality, the Internet of Things can mean anything to anybody. For
example, in the domestic context, it can involve connecting household
appliances – even vehicles or robots - to a home hub and having some
kind of central intelligence control how the house or robots operates.
Try it first in maXbox with a simulation on Menu /Options/OpenGL mX/
Then change Torso animation/direction and Head...
Be aware that you need the subdirectory /exercices/Model/ of maXbox3
to work with OpenGL. Here you find resources and a configuration file for
your own study.
Please read also the Tutorial 38 concerning 3D Lab, simply because robots
live in 3D. We can program robots in G-code. In fundamental terms, G-
code is a language in which people tell computerized machine tools or
robots what to make and how to make it. The "how" is defined by
instructions on where to move to, how fast to move, and along what path
to move. For example:
G1 X0.0 Y0.0 Z0.0
G1 X10.0 Y10.0 Z0.0 F1000
These instructions can then be sent to a machine that will interpret these
lines and execute them one by one. The G Code instructions frequently
have an X, Y and Z coordinate, these are the points in 3D robot space that
the for example head will move in. We can also develop this with Turtle in
maXbox/Arduino these steps to test the behaviour.
Today we step through this robot simulation to find him its way along a
line. As you my know we script it in maXbox4. This tool is great for fast
coding but also provides mechanism for extending your functions and
quality with checks and tests.
The script is called: examples667_URobo2_tutor45.pas
2
First I want to show how we track the blue line for the robot:
procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
{User moved mouse}
begin
If drawing then begin
form1.canvas.lineto(x,y);
sleep(sleepms);
inc(count);
if count>length(saved) then setlength(saved,length(saved)+maxpoints);
saved[count]:= point(x,y);
end;
end;
Its done with the mousemove event which also remembers the speed of the
tracking! Means the slower we paint the more points to track we have (like
slow-motion). The same goes for the robot and its done by measuring
milliseconds as the resolution of the track. The last point measured is
finished by a mouseup event:
procedure FormMouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
{User released the button}
begin
Drawing:= false;
Robo.left:= saved[1].x-robo.Width div 2;
Robo.top:= saved[1].y-Robo.Height div 2;
end;
The robo itself is just a shape object.
A canvas or shape object’s Brush property determines what kind of color
and pattern the canvas uses for filling graphical shapes and backgrounds.
Controls also specify an additional brush in their Brush properties, which
they use for painting their backgrounds.
֎֎֍҉
Challenging domains such as robot-assisted search and rescue, operations
in space require humans to interact with robots.
These interactions may be in the form of supervisory control, which
connotes a high human involvement with limited robot automation (e.g.,
semi-autonomy, where the robot is truly autonomous for portions of the
task or mixed-initiative systems, where the robot and human are largely
interchangeable.
The interactions between humans and robots are often interchangeably
referred to as “coordination” or “collaboration”.
3
The application of a script to interleave human and robot coordination is
both logical and natural. Scripts simplify the relationship between human
and robot making the task comprehensible to both novice and expert
system users.
procedure StartBtnClick(Sender: TObject);
{User clicked start}
var i:integer;
drawtime:integer;
startcount,stopcount:int64;
begin
for i:= 2 to count do begin
{put center of robo on the point}
Robo.left:= saved[i].x-Robo.width div 2;
Robo.top:= saved[i].y-Robo.height div 2;
queryperformanceCounter(startcount);{Get time before we repaint}
application.processmessages;
queryPerformanceCounter(stopcount);{Get time after repaint}
drawtime:= (stopcount-startcount) div freq; {Compute ms to repaint}
writeln('test freq ms: '+itoa(drawtime))
sleep(max(0,sleepms-drawtime)); {wait whatever time is left, if any}
end;
end;
The ability to simplify a task as a series of simple steps is necessary for
this comprehension. The available or possible actions for the human
operator at any particular time are clear in the script because of the GUI.
This approach can be applied to any task, with any level of human-robot
coordination.
Due to the highly proprietary nature of robot software, most producers of
robot hardware also provide their own software. While this is not unusual
in other automated control systems, the lack of standards of programming
methods for robots does pose certain challenges.
For example, there are over 30 different manufacturers of industrial
robots, so there are also 30 different robot programming languages
required.
Fortunately, there are enough similarities between the different robots
that it is possible to gain a broad-based understanding of robot
programming without having to learn each manufacturer's proprietary
language.
Another interesting approach is worthy of mention. All robotic applications
need or explore parallelism and event-based programming.
Robot Operating System is an open-source platform for robot
programming using Python and C++. Java, Lisp, Lua, Pascal and Pharo are
supported but still in experimental stage.
https://en.wikipedia.org/wiki/Robot_Operating_System
4
Another example is the tower of hanoi which can be solved for example by
Lego mindstorm or other arduino frameworks:
The script is called: examples712_towerofhanoi_animation.pas
Programming errors represent a serious safety consideration, particularly
in large industrial robots. The power and size of industrial robots mean
they are capable of inflicting severe injury if programmed incorrectly or
used in an unsafe manner. Due to the mass and high-speeds of industrial
robots, it is always unsafe for a human to remain in the work area of the
robot during automatic operation.
A few following concepts should improve this safety:
• Console Capture
• Exception Handling
• Logfiles
1.2 Console Capture DOS
I'm trying to move a part of SysTools to Win64. There is a certain class
TStDecimal which is a fixed-point value with a total of 38 significant digits.
The class itself uses a lot of ASM code.
function BigDecimal(aone: float; atwo: integer): string;
begin
with TStDecimal.create do begin
try
//assignfromint(aone)
assignfromfloat(aone) //2
5
RaiseToPower(atwo) //23
result:= asstring
finally
free
end;
end;
end;
But then I want to test some Shell Functions on a DOS Shell or command
line output. The code below allows to perform a command in a DOS Shell
and capture it's output to the maXbox console. The captured output is
sent “real-time” to the Memo2 parameter as console output in maXbox:
srlist:= TStringlist.create;
ConsoleCapture('C:', 'cmd.exe', '/c dir *.*',srlist);
writeln(srlist.text)
srlist.Free;
But you can redirect the output srlist.text anywhere you want.
For example you can capture the output of a DOS console and input into a
textbox, or you want to capture the command start of demo app and input
into your app that will do further things.
ConsoleCapture('C:', 'cmd.exe', '/c ipconfig',srlist);
ConsoleCapture('C:', 'cmd.exe', '/c ping 127.0.0.1',srlist);
 It is important to note that some special events like /c java -version
must be captured with different parameters like /k or in combination.
Here's the solution with GetDosOutput():
writeln('GetDosOut: '+GetDosOutput('java -version','c:'));
or like powercfg or the man-pages in Linux
writeln('GetDosOut: '+GetDosOutput('help dir','c:'));
GetDosOutput('powercfg energy -output
c:maxboxosenergy.htm','c:')
1.3 Exception Handling
A few words how to handle Exceptions within maXbox:
Prototype:
procedure RaiseException(Ex: TIFException; const Msg: String);
Description:
6
Raises an exception with the specified message.
Example:
begin
RaiseException(erCustomError,'Your message goes here');
// The following line will not be executed because of the
exception!
MsgBox('You will not see this.', 'mbInformation', MB_OK);
end;
This is a simple example of a actual script that shows how to do try except
with raising a exception and doing something with the exception message.
procedure Exceptions_On_maXbox;
var filename,emsg:string;
begin
filename:= '';
try
if filename = '' then
RaiseException(erCustomError,
'Exception: File name cannot be blank');
except
emsg:= ExceptionToString(ExceptionType, ExceptionParam);
//do act with the exception message i.e. email it or
//save to a log etc
writeln(emsg)
end;
end;
 The ExceptionToString() returns a message associated with the
current exception. This function with parameters should only be called
from within an except section.
1.4 The Log Files
There are 2 log files a runtime log and an exception log:
using Logfile: maxboxlog.log , Exceptionlogfile: maxboxerrorlog.txt
New Session Exe Start C:maXboxtested
>>>> Start Exe: maXbox4.exe v4.0.2.80 2016-02-03 14:37:18
>>>> Start [RAM monitor] : Total=2147483647,
Avail=2147483647, Load=30% ; [Disk monitor] : Available to
user=671317413888, Total on disk=972076589056, Free total on
disk=671317413888 ; 2016-02-03 14:37:18
7
>>>> Start Script: C:Program Files
(x86)Importmaxbox4examples640_weather_cockpit6_1.TXT
2016-02-03 14:37:33 From Host: maXbox4.exe of
C:maXboxmaxbox3work2015Sparx
>>>> Stop Script: 640_weather_cockpit6_1.TXT
[RAM monitor] : (2147483647, 2147483647, 30%) Compiled+Run
Success! Runtime: 14:37:33.267
New Session Exe Start C:Program Files(x86)Importmaxbox4
examples640_weather_cockpit6_1.TXT
>>>> Start Exe: maXbox4.exe v4.2.2.95 2016-05-19 09:15:17
>>>> Start [RAM monitor] : Total=2147483647,
Avail=2147483647, Load=25% ; [Disk monitor] : Available to
user=675888001024, Total on disk=972076589056
After completing the tasks as directed, the compiler proceeds to its second
step where it checks for syntax errors (violations of the rules of the
language) and converts the source code into an object code that contains
machine language instructions, a data area, and a list of items to be
resolved when he object file is linked to other object files.
At least there are two ways to install and configure your box into a
directory you want. The first way is to use the unzip command-line tool or
IDE, which is discussed above. That means no installation needed. Another
way is to copy all the files to navigate to a folder you like, and then simply
drag and drop another scripts into the /examples directory.
The only thing you need to backup is the ini file maxboxdef.ini with your
history or another root files with settings that have changed
You simply put the line above on the boot script and make sure the ini file
has it set to Yes. BOOTSCRIPT=Y //enabling load a boot script
8
“Wise men speak: Hand made by robots.
Feedback @ max@kleiner.com
Literature: Kleiner et al., Patterns konkret, 2003, Software & Support
https://github.com/maxkleiner/maXbox3/releases
https://en.wikipedia.org/wiki/Robot_software
Here are 5 actions to make your computer more secure:
1.Use an antivirus program and keep it up to date
2.Do not open email messages from unknown sources or suspicious
attachments even if you know the sender
3.Use a personal firewall
4.Keep your software up to date and enable Windows automatic updates
5.Use a pop-up blocker with your browser
EKON 20 Input for Robots & Components
1. AsyncPRO, 2. BigInteger,
3. Hotlog, 4. WMILib,
5. StBarCode, 6. XMLUtils,
7. LockBox, 8. cX509Certificate,
9. OpenGL, 10. WaveUnit,
11. OpenSSL, 12. Kronos,
13. HiResTimer, 14. Kmemo,
15. BigDecimals, 16. SynEdit,
17. SFTP, 18. Sensors,
19. PasScript, 20. ALJSON
1.5 Appendix External links External links
• "The Basics - Robot Software". Seattle Robotics Society.
• G.W. Lucas, "Rossum Project".
• "Mobile Autonomous Robot Software (MARS)". Georgia Tech Research Corporation.
• "Tech Database". robot.spawar.navy.mil.
• Adaptive Robotics Software at the Idaho National Laboratory
• A review of robotics software platforms Linux Devices.
• ANSI/RIA R15.06-1999 American National Standard for Industrial Robots and Robot
Systems - Safety Requirements (revision of ANSI/RIA R15.06-1992)
1.6 References
• O. Nnaji, Bartholomew. Theory of Automatic Robot Assembly and Programming (1993
ed.). Springer. p. 5. ISBN 978-0412393105. Retrieved 8 February 2015.
• "Robot programming languages". Fabryka robotów. Retrieved 8 February 2015.
9

More Related Content

What's hot

Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.
Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.
Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.
PVS-Studio
 
Threaded Programming
Threaded ProgrammingThreaded Programming
Threaded Programming
Sri Prasanna
 
Open Cv 2005 Q4 Tutorial
Open Cv 2005 Q4 TutorialOpen Cv 2005 Q4 Tutorial
Open Cv 2005 Q4 Tutorial
antiw
 
Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...
Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...
Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...
Marcel Bruch
 
DLL Design with Building Blocks
DLL Design with Building BlocksDLL Design with Building Blocks
DLL Design with Building Blocks
Max Kleiner
 
Introduction to OpenCV 3.x (with Java)
Introduction to OpenCV 3.x (with Java)Introduction to OpenCV 3.x (with Java)
Introduction to OpenCV 3.x (with Java)
Luigi De Russis
 
Python Open CV
Python Open CVPython Open CV
Python Open CV
Tarun Bamba
 
(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...
(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...
(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...
Frank Nielsen
 
I just had to check ICQ project
I just had to check ICQ projectI just had to check ICQ project
I just had to check ICQ project
PVS-Studio
 
[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns
[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns
[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns
npinto
 
openCV and Java - Face Detection
openCV and Java - Face DetectionopenCV and Java - Face Detection
openCV and Java - Face Detection
cmkandemir
 
DWX 2013 Nuremberg
DWX 2013 NurembergDWX 2013 Nuremberg
DWX 2013 Nuremberg
Marcel Bruch
 
Java Memory Model
Java Memory ModelJava Memory Model
Java Memory Model
Łukasz Koniecki
 
Medical Image Processing Strategies for multi-core CPUs
Medical Image Processing Strategies for multi-core CPUsMedical Image Processing Strategies for multi-core CPUs
Medical Image Processing Strategies for multi-core CPUs
Daniel Blezek
 
COSC 426 Lect. 3 -AR Developer Tools
COSC 426 Lect. 3 -AR Developer ToolsCOSC 426 Lect. 3 -AR Developer Tools
COSC 426 Lect. 3 -AR Developer Tools
Mark Billinghurst
 
[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics
[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics
[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics
npinto
 
Exploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarExploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinar
Maarten Balliauw
 
Insecure coding in C (and C++)
Insecure coding in C (and C++)Insecure coding in C (and C++)
Insecure coding in C (and C++)
Olve Maudal
 
java memory management & gc
java memory management & gcjava memory management & gc
java memory management & gc
exsuns
 
PythonとAutoML at PyConJP 2019
PythonとAutoML at PyConJP 2019PythonとAutoML at PyConJP 2019
PythonとAutoML at PyConJP 2019
Masashi Shibata
 

What's hot (20)

Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.
Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.
Celebrating 30-th anniversary of the first C++ compiler: let's find bugs in it.
 
Threaded Programming
Threaded ProgrammingThreaded Programming
Threaded Programming
 
Open Cv 2005 Q4 Tutorial
Open Cv 2005 Q4 TutorialOpen Cv 2005 Q4 Tutorial
Open Cv 2005 Q4 Tutorial
 
Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...
Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...
Eclipse Code Recommenders @ cross-event Deutsche Telekom Developer Garden Tec...
 
DLL Design with Building Blocks
DLL Design with Building BlocksDLL Design with Building Blocks
DLL Design with Building Blocks
 
Introduction to OpenCV 3.x (with Java)
Introduction to OpenCV 3.x (with Java)Introduction to OpenCV 3.x (with Java)
Introduction to OpenCV 3.x (with Java)
 
Python Open CV
Python Open CVPython Open CV
Python Open CV
 
(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...
(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...
(chapter 5) A Concise and Practical Introduction to Programming Algorithms in...
 
I just had to check ICQ project
I just had to check ICQ projectI just had to check ICQ project
I just had to check ICQ project
 
[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns
[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns
[Harvard CS264] 02 - Parallel Thinking, Architecture, Theory & Patterns
 
openCV and Java - Face Detection
openCV and Java - Face DetectionopenCV and Java - Face Detection
openCV and Java - Face Detection
 
DWX 2013 Nuremberg
DWX 2013 NurembergDWX 2013 Nuremberg
DWX 2013 Nuremberg
 
Java Memory Model
Java Memory ModelJava Memory Model
Java Memory Model
 
Medical Image Processing Strategies for multi-core CPUs
Medical Image Processing Strategies for multi-core CPUsMedical Image Processing Strategies for multi-core CPUs
Medical Image Processing Strategies for multi-core CPUs
 
COSC 426 Lect. 3 -AR Developer Tools
COSC 426 Lect. 3 -AR Developer ToolsCOSC 426 Lect. 3 -AR Developer Tools
COSC 426 Lect. 3 -AR Developer Tools
 
[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics
[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics
[Harvard CS264] 03 - Introduction to GPU Computing, CUDA Basics
 
Exploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarExploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinar
 
Insecure coding in C (and C++)
Insecure coding in C (and C++)Insecure coding in C (and C++)
Insecure coding in C (and C++)
 
java memory management & gc
java memory management & gcjava memory management & gc
java memory management & gc
 
PythonとAutoML at PyConJP 2019
PythonとAutoML at PyConJP 2019PythonとAutoML at PyConJP 2019
PythonとAutoML at PyConJP 2019
 

Viewers also liked

maXbox Starter 43 Work with Code Metrics ISO Standard
maXbox Starter 43 Work with Code Metrics ISO StandardmaXbox Starter 43 Work with Code Metrics ISO Standard
maXbox Starter 43 Work with Code Metrics ISO Standard
Max Kleiner
 
Software Qualitiy with Sonar Tool 2013_4
Software Qualitiy with Sonar Tool 2013_4Software Qualitiy with Sonar Tool 2013_4
Software Qualitiy with Sonar Tool 2013_4
Max Kleiner
 
Native code in Android applications
Native code in Android applicationsNative code in Android applications
Native code in Android applications
Dmitry Matyukhin
 
Vayavya Presentation- Design Services 2010
Vayavya  Presentation- Design Services 2010Vayavya  Presentation- Design Services 2010
Vayavya Presentation- Design Services 2010
Vayavya Labs Pvt Ltd
 
Vayavya labs corporate presentation feb 2015
Vayavya labs corporate presentation feb 2015Vayavya labs corporate presentation feb 2015
Vayavya labs corporate presentation feb 2015
Vayavya Labs Pvt Ltd
 
A new Codemodel for Codemetrics
 A new Codemodel for Codemetrics A new Codemodel for Codemetrics
A new Codemodel for Codemetrics
Max Kleiner
 
Introducción al D-BUS
Introducción al D-BUSIntroducción al D-BUS
Introducción al D-BUS
jmdep91
 
Windows 10 Hybrid Development
Windows 10 Hybrid DevelopmentWindows 10 Hybrid Development
Windows 10 Hybrid Development
Max Kleiner
 
GEO mapbox geo_api_develop2 Intro
 GEO mapbox geo_api_develop2 Intro GEO mapbox geo_api_develop2 Intro
GEO mapbox geo_api_develop2 Intro
Max Kleiner
 
Code Review with Sonar
Code Review with SonarCode Review with Sonar
Code Review with Sonar
Max Kleiner
 
CV_Max_Kleiner_2017
CV_Max_Kleiner_2017CV_Max_Kleiner_2017
CV_Max_Kleiner_2017
Max Kleiner
 
Arduino C maXbox web of things slide show
Arduino C maXbox web of things slide showArduino C maXbox web of things slide show
Arduino C maXbox web of things slide show
Max Kleiner
 
maXbox starter46 work with Wine
maXbox starter46 work with WinemaXbox starter46 work with Wine
maXbox starter46 work with Wine
Max Kleiner
 
Refactoring_Rosenheim_2008_Workshop
Refactoring_Rosenheim_2008_WorkshopRefactoring_Rosenheim_2008_Workshop
Refactoring_Rosenheim_2008_Workshop
Max Kleiner
 
Android JNI
Android JNIAndroid JNI
Android JNI
Siva Ramakrishna kv
 
A 3D printing programming API
A 3D printing programming APIA 3D printing programming API
A 3D printing programming API
Max Kleiner
 

Viewers also liked (16)

maXbox Starter 43 Work with Code Metrics ISO Standard
maXbox Starter 43 Work with Code Metrics ISO StandardmaXbox Starter 43 Work with Code Metrics ISO Standard
maXbox Starter 43 Work with Code Metrics ISO Standard
 
Software Qualitiy with Sonar Tool 2013_4
Software Qualitiy with Sonar Tool 2013_4Software Qualitiy with Sonar Tool 2013_4
Software Qualitiy with Sonar Tool 2013_4
 
Native code in Android applications
Native code in Android applicationsNative code in Android applications
Native code in Android applications
 
Vayavya Presentation- Design Services 2010
Vayavya  Presentation- Design Services 2010Vayavya  Presentation- Design Services 2010
Vayavya Presentation- Design Services 2010
 
Vayavya labs corporate presentation feb 2015
Vayavya labs corporate presentation feb 2015Vayavya labs corporate presentation feb 2015
Vayavya labs corporate presentation feb 2015
 
A new Codemodel for Codemetrics
 A new Codemodel for Codemetrics A new Codemodel for Codemetrics
A new Codemodel for Codemetrics
 
Introducción al D-BUS
Introducción al D-BUSIntroducción al D-BUS
Introducción al D-BUS
 
Windows 10 Hybrid Development
Windows 10 Hybrid DevelopmentWindows 10 Hybrid Development
Windows 10 Hybrid Development
 
GEO mapbox geo_api_develop2 Intro
 GEO mapbox geo_api_develop2 Intro GEO mapbox geo_api_develop2 Intro
GEO mapbox geo_api_develop2 Intro
 
Code Review with Sonar
Code Review with SonarCode Review with Sonar
Code Review with Sonar
 
CV_Max_Kleiner_2017
CV_Max_Kleiner_2017CV_Max_Kleiner_2017
CV_Max_Kleiner_2017
 
Arduino C maXbox web of things slide show
Arduino C maXbox web of things slide showArduino C maXbox web of things slide show
Arduino C maXbox web of things slide show
 
maXbox starter46 work with Wine
maXbox starter46 work with WinemaXbox starter46 work with Wine
maXbox starter46 work with Wine
 
Refactoring_Rosenheim_2008_Workshop
Refactoring_Rosenheim_2008_WorkshopRefactoring_Rosenheim_2008_Workshop
Refactoring_Rosenheim_2008_Workshop
 
Android JNI
Android JNIAndroid JNI
Android JNI
 
A 3D printing programming API
A 3D printing programming APIA 3D printing programming API
A 3D printing programming API
 

Similar to maXbox Starter 45 Robotics

Oopp Lab Work
Oopp Lab WorkOopp Lab Work
Oopp Lab Work
Heather Dionne
 
Raising the Bar on Robotics Code Quality
Raising the Bar on Robotics Code QualityRaising the Bar on Robotics Code Quality
Raising the Bar on Robotics Code Quality
Thomas Moulard
 
PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...
PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...
PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...
Andrey Karpov
 
Linux Kernel, tested by the Linux-version of PVS-Studio
Linux Kernel, tested by the Linux-version of PVS-StudioLinux Kernel, tested by the Linux-version of PVS-Studio
Linux Kernel, tested by the Linux-version of PVS-Studio
PVS-Studio
 
Buffer overflow tutorial
Buffer overflow tutorialBuffer overflow tutorial
Buffer overflow tutorial
hughpearse
 
Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...
Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...
Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...
Aymen Lachkhem
 
computer notes - Inter process communication
computer notes - Inter process communicationcomputer notes - Inter process communication
computer notes - Inter process communication
ecomputernotes
 
Skiron - Experiments in CPU Design in D
Skiron - Experiments in CPU Design in DSkiron - Experiments in CPU Design in D
Skiron - Experiments in CPU Design in D
Mithun Hunsur
 
ICT C++
ICT C++ ICT C++
ICT C++
Karthikeyan A K
 
Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org) (usef...
Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org)  (usef...Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org)  (usef...
Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org) (usef...
Make Mannan
 
426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools
Mark Billinghurst
 
Consequences of using the Copy-Paste method in C++ programming and how to dea...
Consequences of using the Copy-Paste method in C++ programming and how to dea...Consequences of using the Copy-Paste method in C++ programming and how to dea...
Consequences of using the Copy-Paste method in C++ programming and how to dea...
Andrey Karpov
 
PART-3 : Mastering RTOS FreeRTOS and STM32Fx with Debugging
PART-3 : Mastering RTOS FreeRTOS and STM32Fx with DebuggingPART-3 : Mastering RTOS FreeRTOS and STM32Fx with Debugging
PART-3 : Mastering RTOS FreeRTOS and STM32Fx with Debugging
FastBit Embedded Brain Academy
 
Beyond Breakpoints: A Tour of Dynamic Analysis
Beyond Breakpoints: A Tour of Dynamic AnalysisBeyond Breakpoints: A Tour of Dynamic Analysis
Beyond Breakpoints: A Tour of Dynamic Analysis
Fastly
 
PVS-Studio: analyzing ReactOS's code
PVS-Studio: analyzing ReactOS's codePVS-Studio: analyzing ReactOS's code
PVS-Studio: analyzing ReactOS's code
PVS-Studio
 
Static analysis of C++ source code
Static analysis of C++ source codeStatic analysis of C++ source code
Static analysis of C++ source code
PVS-Studio
 
Static analysis of C++ source code
Static analysis of C++ source codeStatic analysis of C++ source code
Static analysis of C++ source code
Andrey Karpov
 
A Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source Code
A Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source CodeA Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source Code
A Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source Code
PVS-Studio
 
Code instrumentation
Code instrumentationCode instrumentation
Code instrumentation
Mennan Tekbir
 
100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects 100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects
Andrey Karpov
 

Similar to maXbox Starter 45 Robotics (20)

Oopp Lab Work
Oopp Lab WorkOopp Lab Work
Oopp Lab Work
 
Raising the Bar on Robotics Code Quality
Raising the Bar on Robotics Code QualityRaising the Bar on Robotics Code Quality
Raising the Bar on Robotics Code Quality
 
PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...
PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...
PVS-Studio and Continuous Integration: TeamCity. Analysis of the Open RollerC...
 
Linux Kernel, tested by the Linux-version of PVS-Studio
Linux Kernel, tested by the Linux-version of PVS-StudioLinux Kernel, tested by the Linux-version of PVS-Studio
Linux Kernel, tested by the Linux-version of PVS-Studio
 
Buffer overflow tutorial
Buffer overflow tutorialBuffer overflow tutorial
Buffer overflow tutorial
 
Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...
Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...
Letselectronic.blogspot.com robotic arm based on atmega mcu controlled by win...
 
computer notes - Inter process communication
computer notes - Inter process communicationcomputer notes - Inter process communication
computer notes - Inter process communication
 
Skiron - Experiments in CPU Design in D
Skiron - Experiments in CPU Design in DSkiron - Experiments in CPU Design in D
Skiron - Experiments in CPU Design in D
 
ICT C++
ICT C++ ICT C++
ICT C++
 
Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org) (usef...
Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org)  (usef...Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org)  (usef...
Lab manual object oriented technology (it 303 rgpv) (usefulsearch.org) (usef...
 
426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools
 
Consequences of using the Copy-Paste method in C++ programming and how to dea...
Consequences of using the Copy-Paste method in C++ programming and how to dea...Consequences of using the Copy-Paste method in C++ programming and how to dea...
Consequences of using the Copy-Paste method in C++ programming and how to dea...
 
PART-3 : Mastering RTOS FreeRTOS and STM32Fx with Debugging
PART-3 : Mastering RTOS FreeRTOS and STM32Fx with DebuggingPART-3 : Mastering RTOS FreeRTOS and STM32Fx with Debugging
PART-3 : Mastering RTOS FreeRTOS and STM32Fx with Debugging
 
Beyond Breakpoints: A Tour of Dynamic Analysis
Beyond Breakpoints: A Tour of Dynamic AnalysisBeyond Breakpoints: A Tour of Dynamic Analysis
Beyond Breakpoints: A Tour of Dynamic Analysis
 
PVS-Studio: analyzing ReactOS's code
PVS-Studio: analyzing ReactOS's codePVS-Studio: analyzing ReactOS's code
PVS-Studio: analyzing ReactOS's code
 
Static analysis of C++ source code
Static analysis of C++ source codeStatic analysis of C++ source code
Static analysis of C++ source code
 
Static analysis of C++ source code
Static analysis of C++ source codeStatic analysis of C++ source code
Static analysis of C++ source code
 
A Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source Code
A Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source CodeA Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source Code
A Unicorn Seeking Extraterrestrial Life: Analyzing SETI@home's Source Code
 
Code instrumentation
Code instrumentationCode instrumentation
Code instrumentation
 
100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects 100 bugs in Open Source C/C++ projects
100 bugs in Open Source C/C++ projects
 

More from Max Kleiner

EKON26_VCL4Python.pdf
EKON26_VCL4Python.pdfEKON26_VCL4Python.pdf
EKON26_VCL4Python.pdf
Max Kleiner
 
EKON26_Open_API_Develop2Cloud.pdf
EKON26_Open_API_Develop2Cloud.pdfEKON26_Open_API_Develop2Cloud.pdf
EKON26_Open_API_Develop2Cloud.pdf
Max Kleiner
 
maXbox_Starter91_SyntheticData_Implement
maXbox_Starter91_SyntheticData_ImplementmaXbox_Starter91_SyntheticData_Implement
maXbox_Starter91_SyntheticData_Implement
Max Kleiner
 
Ekon 25 Python4Delphi_MX475
Ekon 25 Python4Delphi_MX475Ekon 25 Python4Delphi_MX475
Ekon 25 Python4Delphi_MX475
Max Kleiner
 
EKON 25 Python4Delphi_mX4
EKON 25 Python4Delphi_mX4EKON 25 Python4Delphi_mX4
EKON 25 Python4Delphi_mX4
Max Kleiner
 
maXbox Starter87
maXbox Starter87maXbox Starter87
maXbox Starter87
Max Kleiner
 
maXbox Starter78 PortablePixmap
maXbox Starter78 PortablePixmapmaXbox Starter78 PortablePixmap
maXbox Starter78 PortablePixmap
Max Kleiner
 
maXbox starter75 object detection
maXbox starter75 object detectionmaXbox starter75 object detection
maXbox starter75 object detection
Max Kleiner
 
BASTA 2020 VS Code Data Visualisation
BASTA 2020 VS Code Data VisualisationBASTA 2020 VS Code Data Visualisation
BASTA 2020 VS Code Data Visualisation
Max Kleiner
 
EKON 24 ML_community_edition
EKON 24 ML_community_editionEKON 24 ML_community_edition
EKON 24 ML_community_edition
Max Kleiner
 
maxbox starter72 multilanguage coding
maxbox starter72 multilanguage codingmaxbox starter72 multilanguage coding
maxbox starter72 multilanguage coding
Max Kleiner
 
EKON 23 Code_review_checklist
EKON 23 Code_review_checklistEKON 23 Code_review_checklist
EKON 23 Code_review_checklist
Max Kleiner
 
EKON 12 Running OpenLDAP
EKON 12 Running OpenLDAP EKON 12 Running OpenLDAP
EKON 12 Running OpenLDAP
Max Kleiner
 
EKON 12 Closures Coding
EKON 12 Closures CodingEKON 12 Closures Coding
EKON 12 Closures Coding
Max Kleiner
 
NoGUI maXbox Starter70
NoGUI maXbox Starter70NoGUI maXbox Starter70
NoGUI maXbox Starter70
Max Kleiner
 
maXbox starter69 Machine Learning VII
maXbox starter69 Machine Learning VIImaXbox starter69 Machine Learning VII
maXbox starter69 Machine Learning VII
Max Kleiner
 
maXbox starter68 machine learning VI
maXbox starter68 machine learning VImaXbox starter68 machine learning VI
maXbox starter68 machine learning VI
Max Kleiner
 
maXbox starter67 machine learning V
maXbox starter67 machine learning VmaXbox starter67 machine learning V
maXbox starter67 machine learning V
Max Kleiner
 
maXbox starter65 machinelearning3
maXbox starter65 machinelearning3maXbox starter65 machinelearning3
maXbox starter65 machinelearning3
Max Kleiner
 
EKON22_Overview_Machinelearning_Diagrams
EKON22_Overview_Machinelearning_DiagramsEKON22_Overview_Machinelearning_Diagrams
EKON22_Overview_Machinelearning_Diagrams
Max Kleiner
 

More from Max Kleiner (20)

EKON26_VCL4Python.pdf
EKON26_VCL4Python.pdfEKON26_VCL4Python.pdf
EKON26_VCL4Python.pdf
 
EKON26_Open_API_Develop2Cloud.pdf
EKON26_Open_API_Develop2Cloud.pdfEKON26_Open_API_Develop2Cloud.pdf
EKON26_Open_API_Develop2Cloud.pdf
 
maXbox_Starter91_SyntheticData_Implement
maXbox_Starter91_SyntheticData_ImplementmaXbox_Starter91_SyntheticData_Implement
maXbox_Starter91_SyntheticData_Implement
 
Ekon 25 Python4Delphi_MX475
Ekon 25 Python4Delphi_MX475Ekon 25 Python4Delphi_MX475
Ekon 25 Python4Delphi_MX475
 
EKON 25 Python4Delphi_mX4
EKON 25 Python4Delphi_mX4EKON 25 Python4Delphi_mX4
EKON 25 Python4Delphi_mX4
 
maXbox Starter87
maXbox Starter87maXbox Starter87
maXbox Starter87
 
maXbox Starter78 PortablePixmap
maXbox Starter78 PortablePixmapmaXbox Starter78 PortablePixmap
maXbox Starter78 PortablePixmap
 
maXbox starter75 object detection
maXbox starter75 object detectionmaXbox starter75 object detection
maXbox starter75 object detection
 
BASTA 2020 VS Code Data Visualisation
BASTA 2020 VS Code Data VisualisationBASTA 2020 VS Code Data Visualisation
BASTA 2020 VS Code Data Visualisation
 
EKON 24 ML_community_edition
EKON 24 ML_community_editionEKON 24 ML_community_edition
EKON 24 ML_community_edition
 
maxbox starter72 multilanguage coding
maxbox starter72 multilanguage codingmaxbox starter72 multilanguage coding
maxbox starter72 multilanguage coding
 
EKON 23 Code_review_checklist
EKON 23 Code_review_checklistEKON 23 Code_review_checklist
EKON 23 Code_review_checklist
 
EKON 12 Running OpenLDAP
EKON 12 Running OpenLDAP EKON 12 Running OpenLDAP
EKON 12 Running OpenLDAP
 
EKON 12 Closures Coding
EKON 12 Closures CodingEKON 12 Closures Coding
EKON 12 Closures Coding
 
NoGUI maXbox Starter70
NoGUI maXbox Starter70NoGUI maXbox Starter70
NoGUI maXbox Starter70
 
maXbox starter69 Machine Learning VII
maXbox starter69 Machine Learning VIImaXbox starter69 Machine Learning VII
maXbox starter69 Machine Learning VII
 
maXbox starter68 machine learning VI
maXbox starter68 machine learning VImaXbox starter68 machine learning VI
maXbox starter68 machine learning VI
 
maXbox starter67 machine learning V
maXbox starter67 machine learning VmaXbox starter67 machine learning V
maXbox starter67 machine learning V
 
maXbox starter65 machinelearning3
maXbox starter65 machinelearning3maXbox starter65 machinelearning3
maXbox starter65 machinelearning3
 
EKON22_Overview_Machinelearning_Diagrams
EKON22_Overview_Machinelearning_DiagramsEKON22_Overview_Machinelearning_Diagrams
EKON22_Overview_Machinelearning_Diagrams
 

Recently uploaded

Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
Las Vegas Warehouse
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
Rahul
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
zubairahmad848137
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEMTIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
HODECEDSIET
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 

Recently uploaded (20)

Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEMTIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 

maXbox Starter 45 Robotics

  • 1. maXbox Starter 45 Work with maXbox Robotics 1.1 Command with maXbox Operation Server The Robots industry is promising major operational benefits, although no one is quite sure where robots and the Industrial Internet of Things (IIoT) will take manufacturing. IoT represents a closing of the gap between production and IT and is seen as the next big step for automation. In reality, the Internet of Things can mean anything to anybody. For example, in the domestic context, it can involve connecting household appliances – even vehicles or robots - to a home hub and having some kind of central intelligence control how the house or robots operates. Try it first in maXbox with a simulation on Menu /Options/OpenGL mX/ Then change Torso animation/direction and Head...
  • 2. Be aware that you need the subdirectory /exercices/Model/ of maXbox3 to work with OpenGL. Here you find resources and a configuration file for your own study. Please read also the Tutorial 38 concerning 3D Lab, simply because robots live in 3D. We can program robots in G-code. In fundamental terms, G- code is a language in which people tell computerized machine tools or robots what to make and how to make it. The "how" is defined by instructions on where to move to, how fast to move, and along what path to move. For example: G1 X0.0 Y0.0 Z0.0 G1 X10.0 Y10.0 Z0.0 F1000 These instructions can then be sent to a machine that will interpret these lines and execute them one by one. The G Code instructions frequently have an X, Y and Z coordinate, these are the points in 3D robot space that the for example head will move in. We can also develop this with Turtle in maXbox/Arduino these steps to test the behaviour. Today we step through this robot simulation to find him its way along a line. As you my know we script it in maXbox4. This tool is great for fast coding but also provides mechanism for extending your functions and quality with checks and tests. The script is called: examples667_URobo2_tutor45.pas 2
  • 3. First I want to show how we track the blue line for the robot: procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); {User moved mouse} begin If drawing then begin form1.canvas.lineto(x,y); sleep(sleepms); inc(count); if count>length(saved) then setlength(saved,length(saved)+maxpoints); saved[count]:= point(x,y); end; end; Its done with the mousemove event which also remembers the speed of the tracking! Means the slower we paint the more points to track we have (like slow-motion). The same goes for the robot and its done by measuring milliseconds as the resolution of the track. The last point measured is finished by a mouseup event: procedure FormMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); {User released the button} begin Drawing:= false; Robo.left:= saved[1].x-robo.Width div 2; Robo.top:= saved[1].y-Robo.Height div 2; end; The robo itself is just a shape object. A canvas or shape object’s Brush property determines what kind of color and pattern the canvas uses for filling graphical shapes and backgrounds. Controls also specify an additional brush in their Brush properties, which they use for painting their backgrounds. ֎֎֍҉ Challenging domains such as robot-assisted search and rescue, operations in space require humans to interact with robots. These interactions may be in the form of supervisory control, which connotes a high human involvement with limited robot automation (e.g., semi-autonomy, where the robot is truly autonomous for portions of the task or mixed-initiative systems, where the robot and human are largely interchangeable. The interactions between humans and robots are often interchangeably referred to as “coordination” or “collaboration”. 3
  • 4. The application of a script to interleave human and robot coordination is both logical and natural. Scripts simplify the relationship between human and robot making the task comprehensible to both novice and expert system users. procedure StartBtnClick(Sender: TObject); {User clicked start} var i:integer; drawtime:integer; startcount,stopcount:int64; begin for i:= 2 to count do begin {put center of robo on the point} Robo.left:= saved[i].x-Robo.width div 2; Robo.top:= saved[i].y-Robo.height div 2; queryperformanceCounter(startcount);{Get time before we repaint} application.processmessages; queryPerformanceCounter(stopcount);{Get time after repaint} drawtime:= (stopcount-startcount) div freq; {Compute ms to repaint} writeln('test freq ms: '+itoa(drawtime)) sleep(max(0,sleepms-drawtime)); {wait whatever time is left, if any} end; end; The ability to simplify a task as a series of simple steps is necessary for this comprehension. The available or possible actions for the human operator at any particular time are clear in the script because of the GUI. This approach can be applied to any task, with any level of human-robot coordination. Due to the highly proprietary nature of robot software, most producers of robot hardware also provide their own software. While this is not unusual in other automated control systems, the lack of standards of programming methods for robots does pose certain challenges. For example, there are over 30 different manufacturers of industrial robots, so there are also 30 different robot programming languages required. Fortunately, there are enough similarities between the different robots that it is possible to gain a broad-based understanding of robot programming without having to learn each manufacturer's proprietary language. Another interesting approach is worthy of mention. All robotic applications need or explore parallelism and event-based programming. Robot Operating System is an open-source platform for robot programming using Python and C++. Java, Lisp, Lua, Pascal and Pharo are supported but still in experimental stage. https://en.wikipedia.org/wiki/Robot_Operating_System 4
  • 5. Another example is the tower of hanoi which can be solved for example by Lego mindstorm or other arduino frameworks: The script is called: examples712_towerofhanoi_animation.pas Programming errors represent a serious safety consideration, particularly in large industrial robots. The power and size of industrial robots mean they are capable of inflicting severe injury if programmed incorrectly or used in an unsafe manner. Due to the mass and high-speeds of industrial robots, it is always unsafe for a human to remain in the work area of the robot during automatic operation. A few following concepts should improve this safety: • Console Capture • Exception Handling • Logfiles 1.2 Console Capture DOS I'm trying to move a part of SysTools to Win64. There is a certain class TStDecimal which is a fixed-point value with a total of 38 significant digits. The class itself uses a lot of ASM code. function BigDecimal(aone: float; atwo: integer): string; begin with TStDecimal.create do begin try //assignfromint(aone) assignfromfloat(aone) //2 5
  • 6. RaiseToPower(atwo) //23 result:= asstring finally free end; end; end; But then I want to test some Shell Functions on a DOS Shell or command line output. The code below allows to perform a command in a DOS Shell and capture it's output to the maXbox console. The captured output is sent “real-time” to the Memo2 parameter as console output in maXbox: srlist:= TStringlist.create; ConsoleCapture('C:', 'cmd.exe', '/c dir *.*',srlist); writeln(srlist.text) srlist.Free; But you can redirect the output srlist.text anywhere you want. For example you can capture the output of a DOS console and input into a textbox, or you want to capture the command start of demo app and input into your app that will do further things. ConsoleCapture('C:', 'cmd.exe', '/c ipconfig',srlist); ConsoleCapture('C:', 'cmd.exe', '/c ping 127.0.0.1',srlist);  It is important to note that some special events like /c java -version must be captured with different parameters like /k or in combination. Here's the solution with GetDosOutput(): writeln('GetDosOut: '+GetDosOutput('java -version','c:')); or like powercfg or the man-pages in Linux writeln('GetDosOut: '+GetDosOutput('help dir','c:')); GetDosOutput('powercfg energy -output c:maxboxosenergy.htm','c:') 1.3 Exception Handling A few words how to handle Exceptions within maXbox: Prototype: procedure RaiseException(Ex: TIFException; const Msg: String); Description: 6
  • 7. Raises an exception with the specified message. Example: begin RaiseException(erCustomError,'Your message goes here'); // The following line will not be executed because of the exception! MsgBox('You will not see this.', 'mbInformation', MB_OK); end; This is a simple example of a actual script that shows how to do try except with raising a exception and doing something with the exception message. procedure Exceptions_On_maXbox; var filename,emsg:string; begin filename:= ''; try if filename = '' then RaiseException(erCustomError, 'Exception: File name cannot be blank'); except emsg:= ExceptionToString(ExceptionType, ExceptionParam); //do act with the exception message i.e. email it or //save to a log etc writeln(emsg) end; end;  The ExceptionToString() returns a message associated with the current exception. This function with parameters should only be called from within an except section. 1.4 The Log Files There are 2 log files a runtime log and an exception log: using Logfile: maxboxlog.log , Exceptionlogfile: maxboxerrorlog.txt New Session Exe Start C:maXboxtested >>>> Start Exe: maXbox4.exe v4.0.2.80 2016-02-03 14:37:18 >>>> Start [RAM monitor] : Total=2147483647, Avail=2147483647, Load=30% ; [Disk monitor] : Available to user=671317413888, Total on disk=972076589056, Free total on disk=671317413888 ; 2016-02-03 14:37:18 7
  • 8. >>>> Start Script: C:Program Files (x86)Importmaxbox4examples640_weather_cockpit6_1.TXT 2016-02-03 14:37:33 From Host: maXbox4.exe of C:maXboxmaxbox3work2015Sparx >>>> Stop Script: 640_weather_cockpit6_1.TXT [RAM monitor] : (2147483647, 2147483647, 30%) Compiled+Run Success! Runtime: 14:37:33.267 New Session Exe Start C:Program Files(x86)Importmaxbox4 examples640_weather_cockpit6_1.TXT >>>> Start Exe: maXbox4.exe v4.2.2.95 2016-05-19 09:15:17 >>>> Start [RAM monitor] : Total=2147483647, Avail=2147483647, Load=25% ; [Disk monitor] : Available to user=675888001024, Total on disk=972076589056 After completing the tasks as directed, the compiler proceeds to its second step where it checks for syntax errors (violations of the rules of the language) and converts the source code into an object code that contains machine language instructions, a data area, and a list of items to be resolved when he object file is linked to other object files. At least there are two ways to install and configure your box into a directory you want. The first way is to use the unzip command-line tool or IDE, which is discussed above. That means no installation needed. Another way is to copy all the files to navigate to a folder you like, and then simply drag and drop another scripts into the /examples directory. The only thing you need to backup is the ini file maxboxdef.ini with your history or another root files with settings that have changed You simply put the line above on the boot script and make sure the ini file has it set to Yes. BOOTSCRIPT=Y //enabling load a boot script 8
  • 9. “Wise men speak: Hand made by robots. Feedback @ max@kleiner.com Literature: Kleiner et al., Patterns konkret, 2003, Software & Support https://github.com/maxkleiner/maXbox3/releases https://en.wikipedia.org/wiki/Robot_software Here are 5 actions to make your computer more secure: 1.Use an antivirus program and keep it up to date 2.Do not open email messages from unknown sources or suspicious attachments even if you know the sender 3.Use a personal firewall 4.Keep your software up to date and enable Windows automatic updates 5.Use a pop-up blocker with your browser EKON 20 Input for Robots & Components 1. AsyncPRO, 2. BigInteger, 3. Hotlog, 4. WMILib, 5. StBarCode, 6. XMLUtils, 7. LockBox, 8. cX509Certificate, 9. OpenGL, 10. WaveUnit, 11. OpenSSL, 12. Kronos, 13. HiResTimer, 14. Kmemo, 15. BigDecimals, 16. SynEdit, 17. SFTP, 18. Sensors, 19. PasScript, 20. ALJSON 1.5 Appendix External links External links • "The Basics - Robot Software". Seattle Robotics Society. • G.W. Lucas, "Rossum Project". • "Mobile Autonomous Robot Software (MARS)". Georgia Tech Research Corporation. • "Tech Database". robot.spawar.navy.mil. • Adaptive Robotics Software at the Idaho National Laboratory • A review of robotics software platforms Linux Devices. • ANSI/RIA R15.06-1999 American National Standard for Industrial Robots and Robot Systems - Safety Requirements (revision of ANSI/RIA R15.06-1992) 1.6 References • O. Nnaji, Bartholomew. Theory of Automatic Robot Assembly and Programming (1993 ed.). Springer. p. 5. ISBN 978-0412393105. Retrieved 8 February 2015. • "Robot programming languages". Fabryka robotów. Retrieved 8 February 2015. 9