Hi,
i have two card raspberry
it's possible to use a variable (programm python) in the first card raspberry in onother (program python) in the second card
hwo can i communicate two card raspberry ?
Re: communication between two raspberry
Communicating over the network is the obvious hoice. Take at look at simple chat client/server examples. Here's one:
http://blog.whaleygeek.co.uk/raspberry- ... in-python/
Another option is to connect the serial ports between two Pis. Search for serial communication.
Another option is to use a network share to host a file that one Pi will write values to and the other will read values out. That's just network share configuration (search NFS or Samba share) and basic file I/O.
http://blog.whaleygeek.co.uk/raspberry- ... in-python/
Another option is to connect the serial ports between two Pis. Search for serial communication.
Another option is to use a network share to host a file that one Pi will write values to and the other will read values out. That's just network share configuration (search NFS or Samba share) and basic file I/O.