CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_BattMonitor/AP_BattMonitor_SMBus_Rotoye.h
Views: 1798
1
#pragma once
2
3
#include "AP_BattMonitor_SMBus_Generic.h"
4
5
#if AP_BATTERY_SMBUS_ROTOYE_ENABLED
6
7
class AP_BattMonitor_SMBus_Rotoye : public AP_BattMonitor_SMBus_Generic
8
{
9
using AP_BattMonitor_SMBus_Generic::AP_BattMonitor_SMBus_Generic;
10
11
private:
12
13
// Rotoye Batmon has two temperature readings
14
void read_temp(void) override;
15
16
};
17
18
#endif // AP_BATTERY_SMBUS_ROTOYE_ENABLED
19
20