These instructions have moved to https://github.com/emporia-vue-local/esphome
Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)
- If you want to add a link, comment or send it to me
- Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak
- Royce Williams list sorted by vendors responses Royce List
- Very detailed list NCSC-NL
- The list maintained by U.S. Cybersecurity and Infrastructure Security Agency: CISA List
  
    
      This file contains hidden or 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
    
  
  
    
  | package frc.robot.util; | |
| public class Deadband { | |
| private double minValue; | |
| private double m; | |
| private double deadband; | |
| public Deadband(double minValue, double deadband) { | |
| this.minValue = minValue; | |
| m = calcM(minValue, deadband); |