How to emulate a ARDUINO without it.????

Hello evybody.
I´m a new Arduino user and I have it in my job, but not in my house.

I would like to test my programs in my house but I don´t have it there.

I have read: emulare - Arduino Emulator
that can be done with an emulator, but I do not know how to get the .elf files.

Can you help me someone?

Thank´s

Have you taken a look at Virtual Breadboard (http://www.virtualbreadboard.net/Default.aspx) ?

It has support for Arduino as well as a few other microcontrollers. It might be able to simulate what you need.

Be more specific.... What do you want to do with the emulator? Why you want to emulate the Arduino?

Google "Arduino Emulator" and you'll get plenty of results.
Also, the old arduino forum has many topics regarding this.

You may also try these:
http://hewgill.com/journal/entries/507-emulino-arduino-cpu-emulator

http://durbn.net/blog/1-19-2011-emulating-arduino-0

Hope it helps.......

A lot of times, just compiling the code will give you plenty to do! Go thru and fix the missing ;, the mismatched ( ) and { }, etc.

well, thank you, but to search things on the Internet is not an answer.
It is assumed that everybody do this.

Sorry, I wish someone would answer me, But someone that really know´s the answer, because he have used it and work with it.

I tried the VirtualBreadBoard and although it looks good at first glance, it is not.
The programs developed in VirtualBreadBoard and the Arduino development environment are not compatible.
You can use VirtualBreadBoard to test small things, but you can put in it a made out Arduino program.
The emulino proyect don´t goes on. It´s very green yet.

I need to create a program that uses Ethernet (server and client) measured values, analog and digital read and write files on the MicroSD.
I use a lot of data matrices and recharge for data via the web.
All that I want is to create and debug on any PC, without a Real Arduino connected.

Ok, going back to this:
"I have read: emulare - Arduino Emulator
that can be done with an emulator, but I do not know how to get the .elf files."

The emulare screen shot shows an .elf file being created when the IDE compiles.
If you hold the Shift key while clicking the Verify button, you will get that big list of stuff that happens:

C:\Arduino-0022\hardware\tools\avr\bin\avr-g++ -c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega1284p -DF_CPU=16000000L -DARDUINO=22 -IC:\Arduino-0022\hardware\arduino-extras\cores\arduino C:\Users\Owner\AppData\Local\Temp\build4104084131042086672.tmp\Serial_ports_test_1284.cpp -oC:\Users\Owner\AppData\Local\Temp\build4104084131042086672.tmp\Serial_ports_test_1284.cpp.o
:
:
:
C:\Arduino-0022\hardware\tools\avr\bin\avr-objcopy -O ihex -R .eeprom C:\Users\Owner\AppData\Local\Temp\build4104084131042086672.tmp\Serial_ports_test_1284.cpp.elf <<< this is apparently the file you want C:\Users\Owner\AppData\Local\Temp\build4104084131042086672.tmp\Serial_ports_test_1284.cpp.hex
Binary sketch size: 2776 bytes (of a 129024 byte maximum)

I browsed my hard drive to get down to that folder, and the .elf file is there, along with a bunch of others.

thanks, I'm going on it.
When I have something available, i will make it available to everyone.