I just want to ask on how to interface the z8 encore micro controller with PC using VB'08.
I will use a biometric device which has a bio plugin, the PC will served as the server and database.. Then the micro controller will control a robotic arm.
I have experience with the Z8 Encore!. Like mentioned though, your question is far too vague. Do you know anything about VB? Do you anything about microcontrollers at the moment? How are you planning on communicating between the two. RS232 is probably the most common now, with an RS232 -> USB converter.
simply means that i should write a code in both the z8 and PC in order for them to communicate? this means that I can load a VB code in z8? sorry for my ignorance..
as what i have read.. i suppose that VB'08 is much easy to use rather than VB 6.. what do you prefer to use?
simply means that i should write a code in both the z8 and PC in order for them to communicate? this means that I can load a VB code in z8? sorry for my ignorance..
as what i have read.. i suppose that VB'08 is much easy to use rather than VB 6.. what do you prefer to use?
VB only runs on the PC. I do not program in VB so I will let people who do comment on V6 or VB.NET.
You need to write code for the Z8 in assembly or a higher level language like C or BASIC. These languages/compilers need to generate Z8 machine code, They will compile on the PC, then you will have to move the code to the Z8.
There's really only one viable environment, which is the free ZDS C / Assembler development environement from Zilog.
I don't know what to say about this. Microelex, you say you know the Z8, but you are asking about putting VB programs on it? It sounds like you don't know either VB or the Z8. You need to start doing some basic research on both. Go through the beginner VB tutorials first.
If you are really starting from scratch, I would suggest trying out C# Express rather than VB Express.
I'm not certain what you are asking here specifically. You write the VB or C# code for the PC and you write the ZDS C code for the microcontroller.
Hardware wise you'll be connecting to the Z8E through the serial port, either direct RS232 with a level converter (like a MAX232) if your PC has a serial port or through a USB -> serial converter. There are plenty of PIC microcontroller examples of Serial to PC projects, just google them. The hardware will be exactly the same (just make sure the hardware is 3.3v compliant). I would suggest using and FTDI breakout from Sparkfun if you want to make the hardware interface between the PC and your Z8E easy.