Compare commits
No commits in common. "sender" and "main" have entirely different histories.
|
@ -1,3 +1,3 @@
|
|||
[submodule "source/RCSwitch/rc-switch"]
|
||||
path = source/RCSwitch/rc-switch
|
||||
[submodule "source/rc-switch"]
|
||||
path = source/rc-switch
|
||||
url = git@github.com:sui77/rc-switch.git
|
||||
|
|
|
@ -1,9 +1,37 @@
|
|||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
add_subdirectory(RCSwitch)
|
||||
add_subdirectory(sniffer)
|
||||
add_subdirectory(qsniff)
|
||||
add_subdirectory(sniff)
|
||||
add_subdirectory(sender)
|
||||
add_subdirectory(send)
|
||||
find_package(Qt5Widgets)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
|
||||
add_definitions(-DRPI)
|
||||
|
||||
add_library(rc-switch
|
||||
rc-switch/RCSwitch.cpp
|
||||
rc-switch/RCSwitch.h
|
||||
)
|
||||
|
||||
add_executable(qSniff
|
||||
qsniff.cpp
|
||||
mainwindow.cpp
|
||||
mainwindow.h
|
||||
mainwindow.ui
|
||||
sniffthread.cpp
|
||||
sniffthread.h
|
||||
sniffer.cpp
|
||||
sniffer.h
|
||||
)
|
||||
|
||||
target_link_libraries(qSniff rc-switch wiringPi Qt5::Widgets)
|
||||
|
||||
add_executable(Sniff
|
||||
sniff.cpp
|
||||
sniffer.cpp
|
||||
sniffer.h
|
||||
)
|
||||
|
||||
target_link_libraries(Sniff rc-switch wiringPi)
|
||||
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
project(rc-switch)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
add_library(${PROJECT_NAME}
|
||||
rc-switch/RCSwitch.cpp
|
||||
rc-switch/RCSwitch.h
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
wiringPi
|
||||
)
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
PUBLIC rc-switch
|
||||
)
|
||||
|
||||
target_compile_definitions(${PROJECT_NAME}
|
||||
PUBLIC RPI
|
||||
)
|
||||
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
project(qSniff)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
find_package(Qt5Widgets)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
qsniff.cpp
|
||||
mainwindow.cpp
|
||||
mainwindow.h
|
||||
mainwindow.ui
|
||||
sniffthread.cpp
|
||||
sniffthread.h
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
sniffer
|
||||
Qt5::Widgets
|
||||
)
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
project(Send)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
send.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
sender
|
||||
)
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
#include "sender.h"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
std::cout << "Send" << std::endl;
|
||||
|
||||
Sender sender(27);
|
||||
|
||||
unsigned int data = 1;
|
||||
|
||||
|
||||
while (true)
|
||||
{
|
||||
|
||||
std::cout << "Sending: " << data << std::endl;
|
||||
|
||||
sender.send(data++);
|
||||
|
||||
delay(1000);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
project(sender)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
add_library(${PROJECT_NAME}
|
||||
sender.cpp
|
||||
sender.h
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
rc-switch
|
||||
)
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
PUBLIC .
|
||||
)
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
#include "sender.h"
|
||||
|
||||
Sender::Sender(unsigned int pin)
|
||||
{
|
||||
wiringPiSetup();
|
||||
|
||||
m_switch.enableTransmit(pin);
|
||||
}
|
||||
|
||||
void Sender::send(unsigned int data)
|
||||
{
|
||||
m_switch.send(data, 32);
|
||||
}
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
#include "RCSwitch.h"
|
||||
|
||||
class Sender
|
||||
{
|
||||
private:
|
||||
RCSwitch m_switch;
|
||||
|
||||
public:
|
||||
Sender() = delete;
|
||||
Sender(unsigned int pin);
|
||||
|
||||
void send(unsigned int data);
|
||||
};
|
|
@ -1,13 +0,0 @@
|
|||
project(Sniff)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
sniff.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
sniffer
|
||||
)
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "RCSwitch.h"
|
||||
#include "rc-switch/RCSwitch.h"
|
||||
|
||||
class Sniffer
|
||||
{
|
|
@ -1,18 +0,0 @@
|
|||
project(sniffer)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
add_library(${PROJECT_NAME}
|
||||
sniffer.cpp
|
||||
sniffer.h
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
rc-switch
|
||||
)
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
PUBLIC .
|
||||
)
|
||||
|
Loading…
Reference in New Issue