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
import machine | |
from machine import ADC, Pin | |
import time | |
# Адрес регистра VREG | |
VREG_ADDR = 0x40064000 | |
# Таблица соответствия VSEL значений и напряжений | |
VSEL_MAP = { |
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
<?php | |
use php\io\Stream; | |
use php\lib\fs; | |
use php\util\Scanner; | |
class Propper | |
{ | |
protected $_path; | |
protected $_properties; |
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
<?php | |
namespace mafujo\Marshal; | |
class BatchObfuscator | |
{ | |
private $code; | |
public function setCode($code) | |
{ | |
$this->code = $code; | |
} |