Plugwise Stretch – Hardware van Circle modules
Hieronder enkele foto’s van de binnenkant van een Plugwise Circle
Hieronder enkele foto’s van de binnenkant van een Plugwise Circle
Firmware bestanden van de Stretch 2.0, gedownload vanaf de PlugWise server.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
Firmware 2.3.9 NL: Met deze update zal de Stretch voortaan gebruik maken de verbeterde PlugwiseCloud-diensten. Let op: Na de update werkt alleen de nieuwste Plugwise Mobile app met de Stretch en het kan een dag duren voordat u uw historische gegevens weer kunt inzien. ENG: With this update the Stretch will start using the improved Plugwise Cloud services. Note: After this update only the newest version of the Plugwise Mobile app will work with this Stretch and it can take up to a day before you can view your historic data again. Firmware van 2.2.3 > 2.2.15 NL: Stretch schakelt sneller en werkt beter met grote netwerken. Tijdzone instellen en modules uit netwerk verwijderen werkt beter. ENG: Stretch switches faster and works better with big networks. Setting timezone and removing modules from network has been improved. Firmware van 2.1.8 > 2.2.3 NL: Stretch schakelt sneller en werkt beter met grote netwerken. Tijdzone instellen en modules uit netwerk verwijderen werkt beter ENG: Stretch switches faster and works better with big networks. Setting timezone and removing modules from network has been improved. v2.1.8 NL: - Stretch reageert sneller en zal grafieken beter updaten. - Oplossing voor gestopte grafieken - Supportverbinding (3x kort op de resetknop drukken geeft 24 uur toegang) is verbeterd. ENG: Stretch reacts faster and will update its charts better. Solution for charts that do not update anymore. The support connection (which is opened or prolonged for 24h each time the reset button is thrice pressed) has been improved. v2.0.16 NL: - Grafiekdata wordt beter opgehaald. - Sneller opstarten bij grote netwerken. - Zondag-bug in schakelschema opgelost. - Stretch reageert sneller bij gebruik van meerdere apps. - Modules worden niet meer onterecht off-line getoond. - Schakelt geen apparaten uit na een reset. ENG: - Chart data fetching from modules improved. - Faster startup for big networks. Sunday bug in schedules fixed. - Stretch is more responsive in case of usage with multiple apps. - Modules are not being faulty displayed as off-line. - Does not switch appliances off after reset. v1.0.46 NL: - Deze versie bevat een oplossing voor Stretches waarvan Sommige apparaten ineens geen grafieken meer hadden. - Let op: het kan meerdere dagen duren voordat de grafieken weer beschikbaar zijn. - Tevens lost deze update de gevallen op waarin de Stretch in huis soms ineens niet bereikbaar was via het WiFi netwerk. ENG: - This version contains a fix for Stretches from which the charts of some appliances stopped suddenly. - Warning: it can take several days before the charts are up-to-date again. - Moreover will this update fix the issue of a lost WiFi connection in your home network. v1.0.41 Changes since 1.0.38: - Removed automatic reboot at night- - Added web interface for Backup and Restore ---------- Sprongen bij updates firmware door plugwise: 1.0.38 --> 1.0.41 1.0.41 --> 1.0.46 1.0.46 --> no upgrade 1.0.46 --> 2.0.16 (handmatig geforceerd) 2.0.16 --> 2.1.8 2.2.15 --> 2.3.9 |
[#/plugwise/stretch20/firmware” ]
Website / Bron Download @ CPAN.org Download @ GitHub Informatie (ENG)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
NAME Device::Plugwise - Perl module to communicate with Plugwise hardware VERSION version 0.5 SYNOPSIS my $plugwise = Device::Plugwise->new(device => '/dev/cu.usbserial01'); $plugwise->command('on', 'ABCDEF'); # Enable Circle#ABCDEF while (1) { my $message = $plugwise->read(); print $message, "\n"; } $plugwise = Device::Plugwise->new(device => 'hostname:port'); $plugwise->command('on', 'ABCDEF'); # Enable Circle#ABCDEF DESCRIPTION Module for interfacing to Plugwise hardware. Current implemented functions are Switching ON/OFF of circles Query circles for their status Query the Circles+ for known circles Retrieve the live power consumption of a Circle Readout the historic power consumption of a Circle (1-hour average) IMPORTANT: This module required Plugwise firmware v2.37 or higher. METHODS "new(%parameters)" This constructor returns a new Device::Plugwise object. Supported parameters are listed below device The name of the device to connect to, The value can be a tty device name of "hostname:port" for a TCP connection. This parameter is required. filehandle The name of an existing filehandle to be used instead of the 'device' parameter. baud The baud rate for the tty device. The default is 9600. port The port for a TCP device. There is no default port. "device()" Returns the device used to connect to the equipment. If a filehandle was provided this method will return undef. "baud()" Returns the baud rate. Only makes sense when connected over a serial connection. "port()" Returns the TCP port for the device. Only makes sense when using this type of connection of course. "filehandle()" This method returns the file handle for the device. "list_circles_count()" This method returns the number of Circles that will be interrogated with the list_circles command. If you have more than 16 Circles in your network, increase the setting to a higher value. "read([$timeout])" This method blocks until a new message has been received by the device. When a message is received the message string is returned. An optional timeout (in seconds) may be provided. "read_one(\$buffer, [$do_not_write])" This method attempts to remove a single message from the buffer passed in via the scalar reference. When a message is removed a data structure is returned that represents the data received. If insufficient data is available then undef is returned. By default, a received message triggers sending of the next queued message if the $do_no_write parameter is set then writes are not triggered. "write($command, $callback)" This method queues a command for sending to the connected device. The first write will be written immediately, subsequent writes are queued until a response to the previous message is received. "queue_size()" This method reports the number of commands that are in the queue to be sent to the stick. "status()" This method returns the status of the internal _plugwise hash. This can be used to extract network information and for debugging. Hash entries include connected : is the software connected to the USB stick stick_MAC : Zigbee MAC address of the stick network_key : Full zigbee network ID short_key : Short version of the network ID circles : List of IDs of Circles that have responded to a calibration request and that hence are known to be active on the wireless network "command($command, $target)" This method sends a command to the stick. Supported $commands with a target id are: on : switch a circle on off : switch a circle off status : request the current switch state, internal clock, live power consumption livepower : request the current power measured by the Circle history : request the energy consumption for a specific logaddress $target can either be a single short hardware MAC address or a comma-separated list of devices if multiple devices need to receive the same command. ACKNOWLEDGEMENTS The code of this module is heavily based the code by Mark Hindess (Device::Onkyo), thanks Mark! The initial Perl Plugwise interface code for firmware v1 was written by Jfn. AUTHOR Lieven Hollevoet <hollie@cpan.org> COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Lieven Hollevoet. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. |
[#/plugwise/overig/plugwise_perl_communicatie_module” ]
Website / Bron Informatie (ENG) How to install: 1. Unzip the zip file 2. Copy the database file data/Plugwise/plugwise.mdb to <your homeseer dir>/data/Plugwsie/plugwise.mdb 3. Copy the images from html/images/hspi_Plugwise to <your homeseer dir>/html/images/hspi_Plugwise 4. Copy hspi_Plugwise.dll to your homeseer dir …
Na wat met de smile te experimenteren en wat testwerk, gaan we nu proberen om ook op de PlugWise Stretch 2.0 nieuwe firmware te plaatsen via een tftp server. Leeswerk: 1) Wat is TFTP. 2) PlugWise Firmware downloaden. 3) UART stick …
Plugwise Stretch 2.0 – Firmware uploaden (bootloader) Lees meer »
Plugwise Source Source is de software waarmee u het Plugwise-systeem bedient en uw elektriciteitsverbruik bekijkt via handige grafieken. Source rekent ook voor u uit hoeveel energie en kosten u bespaart. Source is het brein achter uw Plugwise-systeem – een programma …
Ik kreeg onlangs een mailtje dat mijn PWScli programma niet meer werkt, er bleken gebruikers van de stretch te zijn die al op firmware 2.0.x zaten terwijl ik nog op 1.0.41 zat, ik vind het dan vreemd waarom wij niet …
Plugwise Stretch 2.0 – Firmware update (handmatig) Lees meer »
Ter info: Het uitproberen en experimenteren op je eigen hardware is op eigen risico!, de auteur is niet verantwoordelijk voor eventuele schade aan je hardware! Let op: Het wachtwoord voor de SSH sessie is tot op heden onbekend, als je …
Ik was al een tijdje op zoek om overige interne servers via 1 webadres te benaderen, ik kwam een website tegen dat uitleg geeft over de Apache Proxy instellingen. En dat werkt perfect! Je kan hiermee je Smile P1 en Stretch …
Plugwise – Apparaten benaderen van buitenaf (icm Webserver) Lees meer »
Ik heb altijd zoiets van “ik moet een backup hebben als iets misgaat”, vooral met het experimenteren op een Linux systeempje is dit handig!, zo kun je weer een backup terugzetten als je iets verprutst hebt, dus ik heb even …