Die Suche ergab 306 Treffer

von Ad2
06 Dez 2014, 13:55
Forum: Tipps & Tricks
Thema: Encoder
Antworten: 12
Zugriffe: 15493

Re: Encoder

Or program it into an attiny which costs less than €2.
von Ad2
22 Okt 2014, 13:18
Forum: Tipps & Tricks
Thema: Robocup soccer
Antworten: 1
Zugriffe: 3119

Re: Robocup soccer

No, but it is an interesting subject. We are talking about the RCJ-05 ball right? You van use TSOP1740 sensors or similar, these will give pulses between 200 and 500us (depending on distance), repeated at 1200Hz. The TX cannot process such frequencies so you will need to do some preprocessing. Perso...
von Ad2
19 Okt 2014, 13:26
Forum: Robo Pro / Computing / Software
Thema: "4 auf 16"-Adapter
Antworten: 6
Zugriffe: 6036

Re: "4 auf 16"-Adapter

I have given it some thought too: My idea was to use one motor output(say M1) as control for the motor and the remaining 3 motor outputs to control a relay decoder. Up to 3 bits (M2L, M3L, M4L) this gives 8 combinations 2x2x2. For 4 bit (M2L, M2R, M3L, M4L) this gives 12 combinations instead of 16 (...
von Ad2
30 Aug 2014, 11:37
Forum: Robo Pro / Computing / Software
Thema: Interne Anschlüsse Robo Interface benutzen?
Antworten: 5
Zugriffe: 4145

Re: Interne Anschlüsse Robo Interface benutzen?

There was someone who connected a btm222 module to the rs232 interface, effectively replacing the serial cable with a bluetooth connection. You should be able to find this in the forum or on ftcommunity. From a hardware point of view, using the internal connectors for further modules (eg an ethernet...
von Ad2
29 Aug 2014, 11:59
Forum: Robo Pro / Computing / Software
Thema: Arduino mit Ultraschallsensor koppeln
Antworten: 5
Zugriffe: 4552

Re: Arduino mit Ultraschallsensor koppeln

Nice! You can upload the code to the ftcommunity download section, a description of the protocol and interface can be oploaded to the wiki on the ftcommunity site. I think the inverse is potentially even more interesting, connecting another sensor to the TX as a distance sensor. Sensors could be any...
von Ad2
23 Aug 2014, 11:28
Forum: Robo Pro / Computing / Software
Thema: Interne Anschlüsse Robo Interface benutzen?
Antworten: 5
Zugriffe: 4145

Re: Interne Anschlüsse Robo Interface benutzen?

The circuit diagram of the robointerface was reverse engineered by hobelbrecht. And yes the RF datalink uses a UART of the microcontroller for communication plus a 2-bit port. The protocol is afaik still unknown but a disassembly of the firmware exists. Do you want to replace the RF unit with a modu...
von Ad2
10 Aug 2014, 17:08
Forum: Robo Pro / Computing / Software
Thema: Arduino mit Ultraschallsensor koppeln
Antworten: 5
Zugriffe: 4552

Re: Arduino mit Ultraschallsensor koppeln

Ganz einfach ist das nicht. Erstens braucht mann spannungswandler in zwei richtungen. Zweitens braucht mann ein seriele eingang. Es ist einfacher und VIEL VIEL VIEL billiger sich ein chinesische ultraschall detektor zu zulegen. Fuer 1 ft sensor kauft mann 10 chinesische und die einbindung ist viel e...
von Ad2
24 Jul 2014, 09:27
Forum: Modellideen & -vorstellung
Thema: Drehscheiben für 6DOF Roboterarm gesucht
Antworten: 4
Zugriffe: 5219

Re: Drehscheiben für 6DOF Roboterarm gesucht

Apparently it weighs 77kg, so suitable for the somewhat larger models.
von Ad2
20 Jul 2014, 10:29
Forum: Robo Pro / Computing / Software
Thema: Motoren mit Rotationsencodern für ft per Arduino
Antworten: 5
Zugriffe: 4899

Re: Motoren mit Rotationsencodern für ft per Arduino

Regarding the fehlimpulse, the only things that can be checked are: Was it really a change or just a glitch, and Has more than one bit changed. The first is important in the pcint method but the proposed program takes care of it by testing for change and not assuming a change, the timer method does ...
von Ad2
20 Jul 2014, 10:09
Forum: Robo Pro / Computing / Software
Thema: Motoren mit Rotationsencodern für ft per Arduino
Antworten: 5
Zugriffe: 4899

Re: Motoren mit Rotationsencodern für ft per Arduino

No, the pcint need not be extremely fast. The change condition itself is latched in the flag. You can process multiple changes in the same interrupt invocation. The main difference with the timer interrupt method is that the interrupt is not invoked when there is no change and that you don't need to...
von Ad2
19 Jul 2014, 14:53
Forum: Robo Pro / Computing / Software
Thema: Motoren mit Rotationsencodern für ft per Arduino
Antworten: 5
Zugriffe: 4899

Re: Motoren mit Rotationsencodern für ft per Arduino

Hallo, eine Menge Fragen. Ja jede Flanke lösst ein Interrupt aus. Ich hatte mir das zuerst für nur ein Encoder gedacht, dann ist jede Interrupt ein +1 oder -1 für den Zähler. Mit mehr als eins geht es natürlich auch, muss mann aber im betracht nehmen das es für eine oder mehrere Encoder keine änderu...
von Ad2
17 Jul 2014, 16:18
Forum: Robo Pro / Computing / Software
Thema: Motoren mit Rotationsencodern für ft per Arduino
Antworten: 5
Zugriffe: 4899

Re: Motoren mit Rotationsencodern für ft per Arduino

Natürlich, wenn's funktioniert, funktioniert's. Die Vorrang von PCINT ist aber höher als der TimerInterrupts und wird nur ausgelösst wenn sich tatsächlich etwas ändert. Und mann spart ein Timer.
von Ad2
17 Jul 2014, 13:54
Forum: Robo Pro / Computing / Software
Thema: Motoren mit Rotationsencodern für ft per Arduino
Antworten: 5
Zugriffe: 4899

Re: Motoren mit Rotationsencodern für ft per Arduino

Statt TimerInterrupt hätte ich den PinChangeInterrupt genommen. Mit jeder Interrupt wird ein Zähler um eins erhöht oder verringert (abhängig der Zustand der Eingänge).
von Ad2
15 Jul 2014, 18:47
Forum: Robo Pro / Computing / Software
Thema: Robo Connect Box
Antworten: 6
Zugriffe: 3673

Re: Robo Connect Box

But the extension modules already have USB...
von Ad2
15 Jul 2014, 11:34
Forum: Robo Pro / Computing / Software
Thema: Robo Connect Box
Antworten: 6
Zugriffe: 3673

Re: Robo Connect Box

As far as I know these interfaces had no variable speeds, just on/off.
von Ad2
14 Jul 2014, 00:10
Forum: Off topic
Thema: Heute Abend
Antworten: 3
Zugriffe: 7484

Heute Abend

Gratuliere leute!
von Ad2
05 Jul 2014, 20:39
Forum: Robo Pro / Computing / Software
Thema: Robo TX und altes Extension
Antworten: 51
Zugriffe: 35052

Re: Robo TX und altes Extension

Was ist WIMRE? Und welche Anschluss ist nicht moeglich?
von Ad2
05 Jul 2014, 18:03
Forum: Robo Pro / Computing / Software
Thema: Robo TX und altes Extension
Antworten: 51
Zugriffe: 35052

Re: Robo TX und altes Extension

All items are on the way