Propberry
HughWN
Posts: 8
Ages and ages ago there was a thread on combining a Prop 1 and a Raspberry Pi (related to this). Has anyone managed to do something similar, i.e., sending serial data from the P1 to Pi and might be able to give some pointers?
I'm happy on the Prop end and using FullDuplexSerial (presumably //ttyUSB0 on the Pi uses pins 31 and 30?)
ser[rPi].start(31, 30, 0, 9600) repeat ser[rPi].dec(10) ser[rPi].tx(13) ser[rPi].tx(10)
The other end using Python seems to be a nightmare!
Comments
Hi,
I have had a setup to control my little lathe with a combination of raspi and P1.
In this setup I used Tachyon Forth on the P1 side for programming and also as protocol. This I consider to be a very good approach.
Python on raspi.
Last year though I realised that you can reserve cores of raspi, so I now control the steppers directly with GForth on the raspi. This setup is a good deal less complex and works well too.
Christof
The other end needs to be something like this. Problem solved.