Die Suche ergab 14 Treffer

von Klub_Robotik_G-COM
21 Aug 2013, 12:13
Forum: Tipps & Tricks
Thema: Encoder motor with ROBO Interface ?
Antworten: 2
Zugriffe: 3486

Re: Encoder motor with ROBO Interface ?

Thanks for such a quick reply !
We have tried slowing down the motor speed but it still does not work.
As soon as the RED(9V) cable is connected, the digital input shows "1" and stays that way.
von Klub_Robotik_G-COM
21 Aug 2013, 09:58
Forum: Tipps & Tricks
Thema: Encoder motor with ROBO Interface ?
Antworten: 2
Zugriffe: 3486

Encoder motor with ROBO Interface ?

Hello all, We were wondering if it is at all possible to use the Encoder motor with the ROBO Interface ? Specifically with the encoder cable as a digital input. Can one simply connect the cables to the interface like so; RED(data) to I1, GREEN(ground) to I1 and RED (power) to 9V+ ? Or is the encoder...
von Klub_Robotik_G-COM
17 Aug 2013, 05:50
Forum: Robo Pro / Computing / Software
Thema: Distance sensor with I2C
Antworten: 6
Zugriffe: 5756

Re: Distance sensor with I2C

Drugovi hat geschrieben:Could you help me with the code on the Arduino side ?
hello Drugovi, we are trying a similar connection but haven't been able to succeed with a servo function.

have a look at this thread and maybe you could expand further for your requirements.
http://forum.ftcommunity.de/viewtopic.php?t=1448
von Klub_Robotik_G-COM
04 Apr 2013, 15:51
Forum: Robo Pro / Computing / Software
Thema: Problem mit Variablen
Antworten: 16
Zugriffe: 8423

Re: Problem mit Variablen

Hello all This was a good exercise to generate code to handle numbers more than 32767. Below is our attempt where we split the score into tens of thousands 10^4 Score1 = nominal value Score2 = above 10,000 (less than 10,000,000) Main Program http://i47.tinypic.com/2f07l8k.jpg Subprogram 1 http://i47...
von Klub_Robotik_G-COM
01 Mär 2013, 14:34
Forum: Robo Pro / Computing / Software
Thema: Neue ft-Android-App
Antworten: 25
Zugriffe: 13790

Re: Neue ft-Android-App

hello all.

has anybody been able to use this app successfully for more than a few times ?

the connection seems to be quite unstable and we get 'failed connection' more times than successful ones.

does anybody have any tips on how to get a successful connection ?

Thanks
von Klub_Robotik_G-COM
17 Nov 2012, 14:33
Forum: Robo Pro / Computing / Software
Thema: How to compile C++ source code for download to TX-C ?
Antworten: 2
Zugriffe: 2171

Re: How to compile C++ source code for download to TX-C ?

13-Nov ?!

that's less than a week ago !!

okay then, will have to download that now - thanks !
von Klub_Robotik_G-COM
17 Nov 2012, 05:08
Forum: Robo Pro / Computing / Software
Thema: How to compile C++ source code for download to TX-C ?
Antworten: 2
Zugriffe: 2171

How to compile C++ source code for download to TX-C ?

Hello all, Firstly, we are wondering if anybody has a link to an english version of the documentation found in C_Compiler_RoboTXC\ftMscCDemo_V1.2\Doc , namely the C_Compiler_RoboTXC.pdf file (The download package from the link on the fischertechnik.de page (English version) is also in German) Also, ...
von Klub_Robotik_G-COM
29 Aug 2012, 08:10
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Re: Arduino as slave to TX-Controller

Sorry I forgot... maybe something like this: int cmd_1_received; //your global flag int timer_1; //this variable increments each ms void cmd_received() //your event handler { if (command == command_1) { cmd_1_received = 1; timer_1 = 0; } } void loop() { if (cmd_1_received) { if (timer_1 > 5000) { ....
von Klub_Robotik_G-COM
23 Aug 2012, 12:03
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Re: Arduino as slave to TX-Controller

Hello Rei Vilo,

have you been able to look at the problem ?

regarding Ad2's comment;
"it is better to set a global flag on interrupt and poll that flag in the main loop."
that would mean triggering the ReceiveEvent (based on a flag) in the loop(), which is not possible, is it ?
von Klub_Robotik_G-COM
15 Aug 2012, 11:09
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Re: Arduino as slave to TX-Controller

Hello Ad, Thank you for your reply but we didn't understand too much as our experience is even less! Our aim is to connect the TX-Controller to a servo microcontroller to handle more than 4 servo motors. (In our case, we are using a Spider (Arduino-compatible) Servo microcontroller.) We then pre-loa...
von Klub_Robotik_G-COM
13 Aug 2012, 11:36
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Re: Arduino as slave to TX-Controller

Hello all, we're back. After studying the Arduino forums we have succeeded in making a connection between the TX-C and an Arduino-compatible Spider micro-controller. With a simple LED code; #include "Wire.h" int led = 13; // on-board LED void setup() { // initialize the digital pin as an output. pin...
von Klub_Robotik_G-COM
27 Jul 2012, 12:20
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Re: Arduino as slave to TX-Controller

thanks for the correct syntax. one question about the (variable?/keyword?) ' howMany ', in the above case it would be just '1', right ? if (for example) it were '2', then the event would be waiting for a second byte to be sent from the TX-C; your informative website has shown us how to do this :) bu...
von Klub_Robotik_G-COM
26 Jul 2012, 13:57
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Re: Arduino as slave to TX-Controller

thank you very much for your clear reply. i'm now wondering if it's actually less complicated than i'm making it out to be ! for the case of " RoboPro just to send data to the I2C device "; on the Arduino side, we have to prepare the functions beforehand for each case of byte that will be sent. woul...
von Klub_Robotik_G-COM
25 Jul 2012, 13:12
Forum: Robo Pro / Computing / Software
Thema: Arduino as slave to TX-Controller
Antworten: 9
Zugriffe: 14434

Arduino as slave to TX-Controller

Hello all, We are trying to learn how to connect non-FT components; sensors, servos, etc to the TX-Controller, now that the I2C connection has finally arrived. Our background in electronics is not very good but we know a bit of basic programming from dealing with HTML & PHP. We have assembled the va...