Yes I have already found this Pins. I also soldered pins there. Unfortunately, I can not connect. No Propeller chip found on Serial Port
The Prop Plug does not provide the LRF with power. You need to power the LRF from the other header. The ground from both the power connection and the Prop Plug have to be connected at some point (common ground).
I had hoped our video would be up today. But our A/V guy isn't in today. I am unclear why you're using two Prop Plugs. In order to update firmware you need one connected to the top header, but you also need to provide power to the lower power pins.
If you're just trying to communicate with the serial interface for calibration or measurements you can connect the Prop Plug to the lower 4-pin header via jumper wires but again, you must provide power and a common ground.
I have only 1 PropPlug ;-) Now i use my Mega2560 for serial connection. Its working. i use this code:
#include <SoftwareSerial.h>
SoftwareSerial LRFSerial(10, 11); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(115200);
Serial.println("Serial2LRFSerial");
// set the data rate for the SoftwareSerial port
LRFSerial.begin(9600);
}
void loop() // run over and over
{
if (LRFSerial.available())
Serial.write(LRFSerial.read());
if (Serial.available())
LRFSerial.write(Serial.read());
}
now i can use the terminal app and the imageviewer.
I have only 1 PropPlug ;-) Now i use my Mega2560 for serial connection. Its working. i use this code:
#include <SoftwareSerial.h>
SoftwareSerial LRFSerial(10, 11); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(115200);
Serial.println("Serial2LRFSerial");
// set the data rate for the SoftwareSerial port
LRFSerial.begin(9600);
}
void loop() // run over and over
{
if (LRFSerial.available())
Serial.write(LRFSerial.read());
if (Serial.available())
LRFSerial.write(Serial.read());
}
now i can use the terminal app and the imageviewer.
That wiring diagram for the Prop Plug looks like a recipe for magic smoke. There is no +5V input on the Prop Plug and the power leads look reversed to me. At least, the ground is in the wrong place.
Comments
The Prop Plug does not provide the LRF with power. You need to power the LRF from the other header. The ground from both the power connection and the Prop Plug have to be connected at some point (common ground).
I have for programming use the jp2 with the PropPlug and VCC with 5v and GND on jp1 from the nano exp.board.
for serial use i have 5V on VCC and GND on jp1 and tx rx to PropPlug
I do not understand how connect the propplug to the lfr for serial use.
LFR JP1
VCC 5V Nano > PropPlug RES
GND GND NANO > PropPlug VCC
SOUT RX PropPlug
SN TX PropPlug
LFR JP1
VCC 5V Nano > PropPlug VCC
GND GND NANO > PropPlug RES
SOUT TX PropPlug
SN RX PropPlug
I use the Parallax Serial Terminal and the Image Viewer i can't connecting
the new firmware 2 could i flashing.. only i must new calibrating
If you're just trying to communicate with the serial interface for calibration or measurements you can connect the Prop Plug to the lower 4-pin header via jumper wires but again, you must provide power and a common ground.
now i can use the terminal app and the imageviewer.
thanks for help..
So long
Square
So is this thread solved?
Is there still a problem? Programing the Propeller via P2 or serial interface via P1?
Your last post did not indicate yes or no.