Search found 15 matches
- 07 Apr 2021 11:47
- Forum: Z-Uno
- Topic: Z-uno firmware
- Replies: 4
- Views: 4430
Re: Z-uno firmware
@tjansteman - could you please share you config file?
- 27 Oct 2020 13:53
- Forum: Z-Uno
- Topic: Fingerprint reader FPC1020 + Garage Door
- Replies: 4
- Views: 4994
Re: Fingerprint reader FPC1020 + Garage Door
Latest code. Don't know if changed since last post. //======================================================================================================================= //=====ATT GÖRA===== //Statusrapport till HC2 vid enroll/delete/läsning fungerar ej. Skickar fel värden? //===================...
- 20 Oct 2020 12:11
- Forum: Z-Uno
- Topic: Fingerprint reader FPC1020 + Garage Door
- Replies: 4
- Views: 4994
Re: Fingerprint reader FPC1020 + Garage Door
Hello!
Long time since I checked in here last time. I will post the code as soon as I can
Long time since I checked in here last time. I will post the code as soon as I can
- 24 Oct 2019 16:53
- Forum: Z-Uno
- Topic: delay() issues with digitalWrite
- Replies: 4
- Views: 5984
Re: delay() issues with digitalWrite
Just set a variable in the setter then in main() do
if (Var1){
relay1
delay
relay2
.
.
.
Var1 = false;
}
if (Var1){
relay1
delay
relay2
.
.
.
Var1 = false;
}
- 29 Mar 2019 00:17
- Forum: Z-Uno
- Topic: Z-Uno and HC2 loses communication
- Replies: 3
- Views: 3545
Re: Z-Uno and HC2 loses communication
I haven't changed any settings regarding sleep so default should be never sleeping.
Unsolicited reports; how do I do that? Where can I read about it?
Thanks
Edit: I noticed I shouldn't have multi command enabled with HC2, but I do. Would this give that symptom though?
Unsolicited reports; how do I do that? Where can I read about it?
Thanks
Edit: I noticed I shouldn't have multi command enabled with HC2, but I do. Would this give that symptom though?
- 27 Mar 2019 13:22
- Forum: Z-Uno
- Topic: Z-Uno and HC2 loses communication
- Replies: 3
- Views: 3545
Z-Uno and HC2 loses communication
Hello! I'm sure this is easy when you know how, but i can't figure it out so... :roll: Everything works fine for a few hours. Then the connection is lost. Anteckning 2019-03-27 111847.jpg If I do something externally (like trigger a pin with a button) OR force communication with the 'X' i get comms ...
- 18 Mar 2019 12:20
- Forum: Z-Uno
- Topic: Fingerprint reader FPC1020 + Garage Door
- Replies: 4
- Views: 4994
Fingerprint reader FPC1020 + Garage Door
Hello! I've been working for a (too) long time to get this project ashore and yesterday i finally got it working! My garage door opener have a terminal that when closed, cycles through forward and backwards (and stop) of the openers motor. I've used a Z-Uno with a FPC1020 to open the garage door. Th...
- 22 Aug 2018 10:32
- Forum: Z-Uno
- Topic: Fingerprintreader FPC1020
- Replies: 3
- Views: 4308
Re: Fingerprintreader FPC1020
Since I didn't get any help here in this matter I also posted at the arduino forum and there some guys helped me find some differences in some Z-Uno implementations. I am now up and running my FPC1020 on the Z-Uno. I'm ironing out some other bugs and will later post my project..
- 22 Aug 2018 10:30
- Forum: Z-Uno
- Topic: while(Serial.available()<=0);
- Replies: 5
- Views: 6231
Re: while(Serial.available()<=0);
I'm sorry for being so slow This worked well and I am now up and running my FPC1020 on the Z-Uno. I'm ironing out some other bugs and will later post my project.. Thanks a lot
- 18 Aug 2018 23:45
- Forum: Z-Uno
- Topic: while(Serial.available()<=0);
- Replies: 5
- Views: 6231
Re: while(Serial.available()<=0);
I'm sorry, I was using Serial1, i failed to copy from the right Sketch :/ So this is the code: //Function:wait data packet send finish unsigned char WaitFpData(void) { int i; unsigned char rBuf_p = 0; while(Serial1.available()<= 0); for(i=200; i>0; i--)//wait response info { delay(20); rBuf[rBuf_p++...