Start Probleme

Richtel

Well-known member
Hallo,
ich habe von Sascha das aktuelle Board Set. Ach habe alles fertig zusammen gelötet und geflasht mit Teensy (Azurit) und esp32 (Parselle).
Leider bekomme ich keine Verbindung über die pfod app oder Arduremote. Sie verbindet sich über Bluetooth mit dem esp32 aber nicht mit der Pfod app.
Konsole für esp32 meldet Server gestartet.

Konsole von Teensy meldet auch sehr viele Fehler das einzigste was wohl funktioniert ist, der Gyro Sensor.

Motortreiber installiert und funktionieren auch über den Poti der auf dem Treiber ist
 

Attachments

  • 20230428_055255.jpg
    20230428_055255.jpg
    982.1 KB · Views: 25
  • 20230428_055355.jpg
    20230428_055355.jpg
    711 KB · Views: 21
  • 20230428_055404.jpg
    20230428_055404.jpg
    1,020.2 KB · Views: 25
  • 20230428_055454.jpg
    20230428_055454.jpg
    903.4 KB · Views: 23
  • 20230427_215030.jpg
    20230427_215030.jpg
    2 MB · Views: 22
Als Erstes würde ich sagen, der I2C Bus zur PowerPCB ist nicht in Ordnung.
Wenn ich das auf dem Foto richtig sehe, haben deine INA vertauschte SDA SCL Pins.
Hast du das bei den Kabel von der PowerPCB zur MainPCB berücksichtigt?
Hast du die Adressen der INAS angepasst?
 
Als Erstes würde ich sagen, der I2C Bus zur PowerPCB ist nicht in Ordnung.
Wenn ich das auf dem Foto richtig sehe, haben deine INA vertauschte SDA SCL Pins.
Hast du das bei den Kabel von der PowerPCB zur MainPCB berücksichtigt?
Hast du die Adressen der INAS angepasst?
Hmm ok das stimmt, aber müssen die nicht ehh gekreuzt werden ähnlich wie rx zu tx pin.
Aber nein dem ist nicht so habs grad nachgeschaut. Ok werd ich ändern, danke erstmal...
 
Last edited:
Hallo, so also zumindest schon mal voller Erfolg beim Signal pins tauschen sehr gut! Er erkennt alle inas und bietet mir auch das Menü an in der Konsole. Vielen Dank.

Nun zu meinem nächsten Problem. Starte ich den motortest passiert nichts, dann macht jetzt immer ein neustart. Es funktionierte beim ersten Mal das er Motortest startete aber jetzt nur noch Neustart.. Ich glaube der Watchdog veranlasst das aber die meldung ist immer sehr schnell weg.
Vg
 
Motortest in der seriellen Konsole oder über App?
Ersteres ist bei mir auch so.
 
Motortest in der seriellen Konsole oder über App?
Ersteres ist bei mir auch so.
Ah ok, ja Über Konsole.

Die App Verbindung konnte ich bis dato leider noch nicht herstellen weder über die pfod app noch mit arduremote!?
 
Bluetooth am Handy aktiviert und unter Einstellungen den Mower hinzugefügt hast du aber?
 
Bluetooth am Handy aktiviert und unter Einstellungen den Mower hinzugefügt hast du aber?
Ja naklar, er sagt ja bei arduremote das ich verbunden sei, aber das wars dann auch!?
 

Attachments

  • Screenshot_20230429_113353_ArduRemote.jpg
    Screenshot_20230429_113353_ArduRemote.jpg
    391.4 KB · Views: 18
  • Screenshot_20230429_113611_pfodApp V3.jpg
    Screenshot_20230429_113611_pfodApp V3.jpg
    360.7 KB · Views: 15
  • Screenshot_20230429_113741_pfodApp V3.jpg
    Screenshot_20230429_113741_pfodApp V3.jpg
    268.5 KB · Views: 14
Why the cover open in the console ?
Into mower.h
Code:
//**************************************************************
// ------- select one platform type -------------------
//**************************************************************
#define MI632
//#define YARDFORCE
//#define RL2000
//#define MOW800
did you select the correct platform ?
 
Why the cover open in the console ?
Into mower.h
Code:
//**************************************************************
// ------- select one platform type -------------------
//**************************************************************
#define MI632
//#define YARDFORCE
//#define RL2000
//#define MOW800
did you select the correct platform ?
Hi Bernard, yes I chose the right one. I hope so. I'll attach a log file, maybe you'll see a little more.
 

Attachments

  • 2304291502.txt
    2.7 KB · Views: 4
  • 2304291503.txt
    1.3 KB · Views: 1
  • 20230429_144828.jpg
    20230429_144828.jpg
    1.7 MB · Views: 17
The start button is pressed ????

Try to use code from my github :

Set the mow800 as defaut platform into mower.h

Connect the mower at your PC using USB cable and start the ide Serial monitor to see the starting process.
Share a screen copy of the monitor .

I hope have access to arduremote and do :

//On the first start if beep on error you need to do:
//command/off
//factory setting and DO NOT save setting.
//reboot
//command/off
// clear error counter
//setting save user setting.
//redo the motor calibration.
 
Into arduino serial monitor send a d and enter and 9 and enter to save the setting
Do this quickly to avoid watchdog reset
 
into robot.cpp line 3198 and 3199 Set the watchdog delay to 120 to avoid reset while first initialisation of eeprom
 
into robot.cpp line 3198 and 3199 Set the watchdog delay to 120 to avoid reset while first initialisation of eeprom
This is in line 3212 for me and is 200ms there, should I change that to 120ms?
 

Attachments

  • Screenshot 2023-04-29 155605.jpg
    Screenshot 2023-04-29 155605.jpg
    293.2 KB · Views: 19
No it's the correct line 3198 and 3199
Replace
config.trigger = 2; /* in seconds, 0->128 */
config.timeout = 10; /* in seconds, 0->128 */

by

config.trigger = 120; /* in seconds, 0->128 */
config.timeout = 120; /* in seconds, 0->128 */
 
No it's the correct line 3198 and 3199
Replace
config.trigger = 2; /* in seconds, 0->128 */
config.timeout = 10; /* in seconds, 0->128 */

by

config.trigger = 120; /* in seconds, 0->128 */
config.timeout = 120; /* in seconds, 0->128 */
yes sir ;-)
 

Attachments

  • Screenshot 2023-04-29 160348.jpg
    Screenshot 2023-04-29 160348.jpg
    330.3 KB · Views: 20
Back
Top