![]() The Raspberry Pi (approx €30) is a credit-card-sized single-board computer developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching of basic computer science in schools. The Raspberry Pi has a Broadcom BCM2835 system on a chip (SoC), which includes an ARM1176JZF-S 700 MHz processor. The Foundation provides Debian and Arch Linux ARM distributions for download.[17] It has tools for supporting Python as the main programming language. Since 2011 I've been quite excited about the development of the Raspberry Pi, mainly as an alternative solution to Arduino and other Microcontroller solutions for my CIM projects. Although the original use of the Raspberry Pi was for promotion of computer science, technology, engineering and math eduction within schools, and colleges (STEM), it has a now become a sort of revolution amount hobby technologist and has a much bigger following in many other areas such as within HTPC Tinkerers (Home Theatre Personal Computer), Autonomous Robots and Robotics, Kinetic Arts, etc. Gladly to say, the development has now reached a mature stage where I believe it has a place within some Business and Industrial applications - brining significant total cost of ownership costs savings compared to typical industrial PC solutions (I would guess > 50%) . With an I2C and other interlaces you can connect external sensors and control external production systems. I bought the Release B early in 2012 - as soon it became available, and have been testing it since. As the foundation are promoting Python as the main development language, I also see many embedded application interfaces to OpenERP ! It comes with a Raspbian veriosn of Linux but there are also various other Linux versions that will run on the Pi. Some people have even managed to a get a version of Android running on it. With the browsers supplied with Raspbian, there are problems connecting as a thin client to an OpenERP server as it's missing various libraries, but I know some developers are working to fix this. As soon as it's working then I'll update this article. A Simple Interface to OpenERP Eventhough the pi comes with USB for KeyBoard and mouse, I suggest the first thing to do is to install Tight-VNC, for remote connection and place the credit card device anywhere on your network. The installation of Tight VNC on a Raspberry Pi is described very well -> here . Install the GUI as it's quite nice to test too. Python comes already pre-installed on the Pi but you may need to install some XML-RPC libraries to enable the connection to OpenERP. To get the demo code working correctly you need to create new OpenERP database. Keep default values of admin / admin for username / password of the administrator role. Name the database demo (or change the code below accordingly) Ensure to select demo data when creating the database. Install the sales, warehouse and manufacturing modules. You should see many BoM's already created. Now you're ready to connect from the Raspberry Pi. Start the Idle Python GUI and copy the code below. Make necessary changes to the IP address and name of databsase, etc. Then run. Here is the Python code: (you can also test it from a PC first) Links |