initial clean commit

This commit is contained in:
Ben Menking
2026-05-07 09:48:36 -04:00
commit d59f61d764
29 changed files with 1333 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace Menking\Meshcore\Model;
class BatteryStorageResponse extends Response {
public int $code;
/**
*
* @var int $battery_millivolt
*/
public int $battery_millivolt; // two bytes
/**
*
* @var int
*/
public int $storage_used; // 4 bytes
/**
*
* @var int
*/
public int $storage_total; // 4 bytes
}