Does it work? If it does, I would like to know.
Thank you
-foxxyman
DougieLawson wrote: ↑Thu Feb 15, 2018 8:04 amWhy not get your mate to run a demo for you.
Arduinos, esp8266 and wemoses are brilliant for simple IoT tasks. The raspberry is ideal as a command & control server for that stuff. It isn't adding extra power to the pi it's offloading tedious workload to the microcontroller.
so how does one connect the arduino to the RPi as said above (my classmate can’t run a demo for me)mlepage wrote: The Raspberry Pi is very much more powerful than the Arduino in many respects. So you are not going to add much "power" to the Raspberry Pi.
Think of it as, the Raspberry Pi is like the computer in a tablet, while the Arduino is like the computer in a smart thermostat.
You can certainly do projects where they are used together. The main thing to be careful of, is the Arduino is 5V while the Raspberry Pi is 3.3V.
Probably the most common thing an Arduino could do, is the sort of thing you use the Raspberry Pi GPIO (pins) for. The Arduino can do that more consistently and using lower power. If you run out of GPIO pins on the Raspberry Pi, it's common to use something like an Arduino to do more, and send the results of its sensing/processing to the Raspberry Pi (e.g. over USB or serial).
oh simpleDougieLawson wrote: ↑Thu Feb 15, 2018 8:11 pmYou connect it with a USB-A to USB-B printer cable for a regular Uno. You connect it with a USB-A to microUSB for a Nano.
It will appear as /dev/ttyACM0 or /dev/ttyUSB0 depending on the serial interface controller on the Arduino.