GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 1611_0007_prime_oven
  • app
  • gui
  • oven_control
  • system.h
  • 0603c0b43   rtc 설정을 시스템에서 하도록 수정 ... Browse Code »
     - system.h, system.c 수정
    고영탁
    2017-05-19 12:30:22 +0900  
system.h 326 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#ifndef SYSTEM_H
#define SYSTEM_H


#include <QtCore>
#include <QDateTime>

namespace System {
struct IPData
{
    QString address;
    QString netmask;
    QString gateway;
};

void setIP(IPData &data);

void setBacklight(int level);

void setVolume(int percentage);

bool setRtcTime(QDateTime dt_tm);

}

#endif // SYSTEM_H