This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Heater/sensor verification code | |
# | |
# Copyright (C) 2023 Lachlan van der Velden <[email protected]> | |
# | |
# This file may be distributed under the terms of the GNU GPLv3 license. | |
import logging | |
PIN_MIN_TIME = 0.100 | |
RESEND_HOST_TIME = 0.300 + PIN_MIN_TIME | |
MAX_SCHEDULE_TIME = 5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<link href="styles.css" rel="stylesheet"> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
@immutable | |
class ClipShadowPath extends StatelessWidget { | |
final Shadow shadow; | |
final CustomClipper<Path> clipper; | |
final Widget child; | |
ClipShadowPath({ | |
@required this.shadow, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
class AppScaffold extends StatefulWidget { | |
final double offsetSize; | |
const AppScaffold({ | |
@required this.offsetSize, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using CommandLine; | |
using CommandLine.Text; | |
using Microsoft.Azure.Management.Dns.Fluent; | |
using Microsoft.Azure.Management.Dns.Fluent.Models; | |
using Microsoft.Azure.Management.Fluent; | |
using Microsoft.Azure.Management.ResourceManager.Fluent; | |
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using EloBuddy; | |
using EloBuddy.SDK; | |
using EloBuddy.SDK.Menu.Values; | |
using EloBuddy.SDK.Rendering; | |
using SharpDX; | |
using SharpDX.Direct3D9; | |
using Color = System.Drawing.Color; | |
using Line = EloBuddy.SDK.Rendering.Line; |