Import source
This commit is contained in:
parent
50b489784d
commit
32b8c4cb56
34 changed files with 890 additions and 0 deletions
14
modules/Arduino.php
Normal file
14
modules/Arduino.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class Arduino extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Arduino AG', 'Arduino IDE', 'https://www.arduino.cc/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch('https://www.arduino.cc/en/Main/Software'))
|
||||
return $this->parse('_<div class="blue-title">[\s]*ARDUINO ([\d\.]+)[\s]*</div>_');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue