14 lines
368 B
PHP
14 lines
368 B
PHP
<?php
|
|
|
|
class Arduino extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('Arduino AG', 'Arduino IDE', 'https://www.arduino.cc/en/Main/Software');
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
|
|
?>
|