A-OK tubular motor

Moderator: Telldus

Post Reply
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

A-OK tubular motor

Post by artefact »

Hello,

I have 2 remote control A-OK http://www.aoksz.com/

1 to control a motorized screen : http://stores.ebay.fr/Sinelux
1 to control a "blind windows" http://www.motorisationplus.com/motoris ... ronic.html

What I need to use the tellstick for control them (frame, signal wave ... ?) I can collect this information with electronic material at my work and send it here.

Thank for your reply.
micke.prag
Site Admin
Posts: 2243
Joined: Fri Mar 17, 2023 9:45 am
Location: Lund
Contact:

Re: A-OK tubular motor

Post by micke.prag »

Try decoding the signal and send it with TellStick. The format is described here:
http://developer.telldus.com/doxygen/TellStick.html
Micke Prag
Software
Telldus Technologies
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

Re: A-OK tubular motor

Post by artefact »

Thank for reply, I try to register signal at my job monday and try this.
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

Re: A-OK tubular motor

Post by artefact »

Well,

I register signal of remote :

Image

I know evry timming :

First big impulse : 5.615 ms - 543.4µs
Long impulse : 590.1 µs - 252.9 µs
Short impulse : 205.7 µs - 638.6 µs

But I don't understand the command line :oops:

Have you an example of the beginning of my signal please, I could understand the rest.

Best regards
micke.prag
Site Admin
Posts: 2243
Joined: Fri Mar 17, 2023 9:45 am
Location: Lund
Contact:

Re: A-OK tubular motor

Post by micke.prag »

What language?

This is C/C++

Code: Select all

char *code = {'S', 250, 59, 20, 59, 20, '+', 0};
tdSendRawCommand(code, 0);
This sends the pulses 5100 us, 590 us, 200 us, 590 us, and 200 us.

Your signal seems hard to reproduce. It seems long, without repetition and pauses. What kind of chip is generating it?
Micke Prag
Software
Telldus Technologies
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

Re: A-OK tubular motor

Post by artefact »

Hi,

OK thank I look this. The remote have a microcontroller chip with standard 433.92 Mhz transmitter for generate this signal.
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

Re: A-OK tubular motor

Post by artefact »

:(

I make this :

Code: Select all

char *code = {'S', 5615, 54, 59, 20, 25, 64, 59, 20, 25, 64, 20, 64, 20, 64, 59, 25, 59, 25, 20, 64, 20, 64, 20, 64, 59, 25, 20, 64, 59, 25, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 59, 25, 20, 64, 20, 64, 20, 64, 59, 25, 59, 25, 59, 25, 59, 25, 20, 64, 59, 25, 59, 25, 59, 25, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 59, 25, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 20, 64, 59, 25, 20, 64, 20, 64, 20, 64, 20, 64, 59, 25, 59, 25, 20, 64, 59, 25, 20, 64, 59, 25, 20, 64, 59, 25, 59, 25, 59, 25, 59, 25  '+', 0};
tdSendRawCommand(code, 0);
But how send this to telldus (I try with tdtool) ?
micke.prag
Site Admin
Posts: 2243
Joined: Fri Mar 17, 2023 9:45 am
Location: Lund
Contact:

Re: A-OK tubular motor

Post by micke.prag »

The example is C/C++ code. You need to compile it!

Btw, a char is 0-255, 5615 is not a valid value. Also, the 'S' command is limited to 80 characters in TellStick.
Micke Prag
Software
Telldus Technologies
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

Re: A-OK tubular motor

Post by artefact »

Ok, well I less this, I don't have tools or mind for this.

Thank for your help.

BR,
artefact
Posts: 7
Joined: Fri Mar 17, 2023 9:45 am

Re: A-OK tubular motor

Post by artefact »

I resolve the problem with a Rfxcom !
Post Reply