I'm trying to plan a architecture for a robot-controller application, which will be written in WPF. Since that MVVM is the de facto pattern for WPF, and in general is much more sexy I decided to use it as a base layout.
The application will have some controllers that access hardware, beyond the domainmodel that represents the database and utility classes. And for the database access I intend to use a Repository (coining Ayendes IRepository as the general idea), and then Linq2sql or EF4 for the actual access.
The application will also have it's own scripting engine, for custom scripts.
But what I'm unsure of, is if I should consider access to the hardware controllers and the scripting engine, to be part or below the domain model, or something that's directly accessed from the controller level.
I attempted to draw up what I think is the right way to do it. But I'm not at all sure it's the right way to go, so I would love some input and advice on this, and how I possible can do it better.

