Skip to content

Instantly share code, notes, and snippets.

@mbrrg
mbrrg / heatitzdim.xml
Created December 1, 2019 15:11
Heatit Z-Dim OpenZWave device configuration (OZW v1.4)
<?xml version="1.0" encoding="utf-8"?>
<Product xmlns='http://code.google.com/p/open-zwave/'>
<!--
Heatit Z-Dim
config based on https://www.thermo-floor.no/media/multicase/documents/_tfasdokumentasjon/heatit%20controls/heatit%20z-dim/manual_heatit_z-dim_fw%201.0_ver2019-a_eng.pdf
-->
<!-- Configuration -->
<CommandClass id="112">
<Value type="byte" genre="config" instance="1" index="1" label="Connected load" min="0" max="200" units="W" value="0">
@mbrrg
mbrrg / Install-DockerOnWS2016ByDSC.ps1
Last active September 6, 2017 17:23 — forked from PlagueHO/Install-DockerOnWS2016ByDSC.ps1
Install Docker on Windows Server 2016 RTM using DSC
Configuration ContainerHostDsc
{
# Set up general parameters used to determine paths where Docker will
# be installed to and downloaded from.
$ProgramFiles = $ENV:ProgramFiles
$DockerPath = Join-Path -Path $ProgramFiles -ChildPath 'Docker\docker'
$DockerZipFileName = 'docker.zip'
$DockerZipPath = Join-Path -Path $ProgramFiles -ChildPath $DockerZipFilename
$DockerUri = 'https://download.docker.com/components/engine/windows-server/cs-1.12/docker.zip'