Search found 22 matches

by sil
18 Feb 2019 22:26
Forum: Z-Uno
Topic: Can't pair Aotec Key Fob remote
Replies: 7
Views: 5220

Re: Can't pair Aotec Key Fob remote

I only found this:
https://aeotec.freshdesk.com/support/so ... fications-
I's definitely no multichannel!!

Unfortunately very few remote support this function :-(
by sil
17 Feb 2019 22:11
Forum: Z-Uno
Topic: Can't pair Aotec Key Fob remote
Replies: 7
Views: 5220

Re: Can't pair Aotec Key Fob remote

Pairing is ok but now I would like to know wish button was pressed. I tried with this sketch but it return for each button SW1. What device functionality should I use ? /* * ok for sending a command from the remote control * * 4 Relays controlled thouth resistors 220Omh and optocouplers 817С * Off -...
by sil
16 Feb 2019 20:33
Forum: Z-Uno
Topic: Detect Zuno board for compile
Replies: 1
Views: 2226

Detect Zuno board for compile

Hi

Using the same program for different board, is it possible to use #if defined(__zuno__) ?

Thanks
by sil
16 Feb 2019 18:18
Forum: Z-Uno
Topic: 19200bd with Softwareserial ?
Replies: 2
Views: 2682

Re: 19200bd with Softwareserial ?

Tx at 19200 is working fine. But strangely Rx at this speed is not working or my sketch is not correct ? #include "SoftwareSerial.h" SoftwareSerial swserial(11, 12); // duplex mode on pins 11 and 12 void setup() { swserial.begin(19200); Serial.begin(); } void loop() { while(swserial.availa...
by sil
12 Feb 2019 17:23
Forum: Z-Uno
Topic: 19200bd with Softwareserial ?
Replies: 2
Views: 2682

19200bd with Softwareserial ?

Hi,

I need 2 UARTs but no one is lower than 19200bd. Is there any hope to get 19200bd with Softwareserial ?

Thanks
by sil
11 Feb 2019 22:42
Forum: Z-Uno
Topic: expected ')'
Replies: 2
Views: 2674

expected ')'

Hi Got this error: expected ')' Passing char is the problem. How to solve that ?? Thanks void setup() { Serial.begin(9600); char toSend[8]; strcpy(toSend, "01234567"); sendMessagePacket(toSend); } void sendMessagePacket(char message[]) { Serial.print("\r\nmessage "); } void loop ...
by sil
11 Feb 2019 22:35
Forum: Z-Uno
Topic: itoa
Replies: 0
Views: 2696

itoa

Hi,

itoa is not working, despite with #include <stdlib.h>

How to replace this function ?

thanks
by sil
11 Feb 2019 22:34
Forum: Z-Uno
Topic: Can't pair Aotec Key Fob remote
Replies: 7
Views: 5220

Re: Can't pair Aotec Key Fob remote

Thanks.
But do you have an example ?
by sil
07 Feb 2019 12:36
Forum: Z-Uno
Topic: Can't pair Aotec Key Fob remote
Replies: 7
Views: 5220

Re: Can't pair Aotec Key Fob remote

Thanks Polto! I fell for the default frequency! Now it works but only once. But only from off to on. (I inverted HIGH and LOW) [ if (newValue > 0) { // if greater then zero digitalWrite(LED_BUILTIN, LOW); } else { // if equals zero digitalWrite(LED_BUILTIN, HIGH); // turn the LED off by making the v...
by sil
06 Feb 2019 20:16
Forum: Z-Uno
Topic: Can't pair Aotec Key Fob remote
Replies: 7
Views: 5220

Can't pair Aotec Key Fob remote

Hi, I want to use Keyfob as primary controller (this remote can be a primary controller) with ZUNO using ControlRelay example Unfortunately I can't pair the device. I reseted the remote (20s press on rear switch Mode) and ZUNO. During pairing the ZUNO led blinking red and green for 35seconds. After ...