Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


nickarsow

Member
  • Posts

    16
  • Joined

  • Last visited

About nickarsow

Profile information

  • Country
    Bulgaria
  • Gateway/s
    Home Center Lite

Recent Profile Visitors

104 profile views

nickarsow's Achievements

Newbie

Newbie (1/8)

3

Reputation

  1. Thank you very much Nick, I had the same problem with my HCL, and with your help I have fixed it. I Have change the crystal, and the HCL works again. 

     

    Thank you very much.

     

    Kinda regards,

     

    Javier

  2. Hi Oarman, There is just one crystal with cylindrical form on the board. It must have a 32768 mark on it.....this is the one - marked in red. BR Nick
  3. Hi Ace02, This way worked for me....I think your problem is the same. DIY, because it is hard to send forw/back for replacement. It is very easy to replace....just buy a 32768 Hz 10-30ppm crystal and solder it. BR Nick
  4. Hi Tinman, Thanks for the advice about hardware check. I investigated the hardware and found out that the crystal is dead. I replaced the 32768 crystal with a new one and the RTC is working in both manual or NTP mode. To all with frozen RTC:.....If your battery is OK ( > 2.5V ), please replace the crystal with 32768 Hz +/-30ppm SMD one. BR Nick
  5. Sorry guys, Wrong info. The HCL has not been fixed...sorry, my mistake. It now shows 1.1.1970 without any blackouts. I think the Fibaro support team hasn't fixed it although I gave them a free access to the HCL via the TeamViewer. This is not fair and I think the Fibaro support team must pay serious attention tho their "support" !!! Either they don't know how to fix it or there is a big mess in the firmware. I got angry and I feel really sorry I have given my money for that device and the peripheral modules. Nick
  6. Hi guys, The Fibaro support team ( [email protected] ) fixed the issue via TeamViewer. For users, who still have that problem....just ask the support team to fix it remotely. I really hope the bug will be fixed in the next firmware release, as it is not a hardware problem. BR Nick
  7. Hi guys, I'm from Bulgaria and have the same problem with HCL RTC ( real time clock ). I measured the battery voltage and it was 0.62V. Then I replaced it with fresh one, but the RTC is still frozen.....2.1.1970 and doesn't work with either manual or via Internet. Then I removed the battery , it start working.....it can be manually set or via Internet, but when I insert the battery, it freezes again. I also replaced the PCF8523 chip on my SMT rework station with a new one, but the problem with the new one is absolutely the same. That means the problem is in the firmware. I wish the Fibaro support/software team pay attention to this issue and will fix it in the next firmware release candidate. BR Nick
  8. Hi guys, Thanks to Maciej from Fibaro team, the problem has been solved. Now I have access to my HCL via Fibaro cloud. The topic can be closed as solved. BR Nick
  9. Hi guys, Thanks. I just e-mailed a photo to Fibaro team and will wait for a solution. BR Nick
  10. Hi guys, I have the following issue when I try to obtain Fibaro ID: 1. After registering for Fibaro ID, I don't see my HCL in the list. When I try to register my HCL, the system says it has been already registered; 2. Maybe some time ago I had registered my HCL, but I neither find the e-mail and the password or delete my previous HCL registration. The system offers to use my old pass, but it is a stupid loop!!!!!!! 3. I sent an e-mail to the Fibaro support but have no reply. Please advice how to proceed? Best regards Nick
  11. Hi PeterG, Can you please guide me with a link or some explanations about using/writing the authorization string? Thanks in advance Nick
  12. Here are the dropbox links: https://www.dropbox.com/s/rqdzwxdh81wuzxy/HCL-NodeMCU-01.png?dl=0 https://www.dropbox.com/s/ftu0uojbyq3lnv6/HCL-NodeMCU-02.png?dl=0 Also you have to set static IP for your NodeMCU in your router. ....the only thing I have to find out is how to read NodeMCU data with Fibaro HCL ???????......anybody to help with??????????????
  13. Hi, Hare is the info required: 1. NodeMCU settings: { "id": 67, "name": "NodeMCU", "roomID": 1, "type": "virtual_device", "visible": true, "enabled": true, "properties": { "deviceIcon": 1002, "ip": "10.168.142.102", "port": 80, "log": "", "logTemp": "", "currentIcon": "1002", "mainLoop": "", "visible": "true", "rows": [ { "type": "button", "elements": [ { "id": 1, "lua": false, "waitForResponse": false, "caption": "ON", "name": "Button11", "empty": false, "msg": "/LED=ON", "buttonIcon": 1001, "favourite": false, "main": false }, { "id": 2, "lua": false, "waitForResponse": false, "caption": "OFF", "name": "Button12", "empty": false, "msg": "/LED=OFF", "buttonIcon": 1002, "favourite": false, "main": true } ] } ] }, "actions": { "pressButton": 1, "setSlider": 2, "setProperty": 2 }, "created": 1471776013, "modified": 1471776013, "sortOrder": 20 } ] 2. NodeMCU arduino code: #include <ESP8266WiFi.h> const char* ssid = "your SSID"; const char* password = "your PASSWORD"; int ledPin = 13; // GPIO13 WiFiServer server(80); void setup() { Serial.begin(115200); delay(10); pinMode(ledPin, OUTPUT); digitalWrite(ledPin, LOW); // Connect to WiFi network Serial.println(); Serial.println(); Serial.print("Connecting to "); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println(""); Serial.println("WiFi connected"); // Start the server server.begin(); Serial.println("Server started"); // Print the IP address Serial.print("Use this URL to connect: "); Serial.print("http://"); Serial.print(WiFi.localIP()); Serial.println("/"); } void loop() { // Check if a client has connected WiFiClient client = server.available(); if (!client) { return; } // Wait until the client sends some data Serial.println("new client"); while(!client.available()){ delay(1); } // Read the first line of the request String request = client.readStringUntil('\r'); Serial.println(request); client.flush(); // Match the request int value = LOW; if (request.indexOf("/LED=ON") != -1) { digitalWrite(ledPin, HIGH); value = HIGH; } if (request.indexOf("/LED=OFF") != -1) { digitalWrite(ledPin, LOW); value = LOW; } // Set ledPin according to the request //digitalWrite(ledPin, value); // Return the response client.println("HTTP/1.1 200 OK"); client.println("Content-Type: text/html"); client.println(""); // do not forget this one client.println("<!DOCTYPE HTML>"); client.println("<html>"); client.print("Led pin is now: "); if(value == HIGH) { client.print("On"); } else { client.print("Off"); } client.println("<br><br>"); client.println("<a href=\"/LED=ON\"\"><button>Turn On </button></a>"); client.println("<a href=\"/LED=OFF\"\"><button>Turn Off </button></a><br />"); client.println("</html>"); delay(1); Serial.println("Client disonnected"); Serial.println(""); } BR Nick
  14. ! PROBLEM SOLVED ! A simple power disconnect for 10 seconds and then powering again the HCL fixed the issue. It seems that a simple HCL warm reset is not enough ....... any explanations?
×
×
  • Create New...