From 8f1844febcd87487e979435469645132da4e09c5 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 16 Oct 2021 14:57:26 +0200 Subject: Library updated to use newly added gpio --- daemon/src/daemon.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'daemon') diff --git a/daemon/src/daemon.cpp b/daemon/src/daemon.cpp index 99da92c..449292d 100644 --- a/daemon/src/daemon.cpp +++ b/daemon/src/daemon.cpp @@ -10,18 +10,8 @@ int main(int, char **) { rpc::server server(hwd::internal::default_port); - Assembly assembly {server}; Gpio gpio; + Assembly assembly {server}; assembly.add("gpio", gpio); - server.bind("stop_server", []{ - rpc::this_server().stop(); - }); - int value = 0; - server.bind("set_value", [&value](int a){ - value = a; - }); - server.bind("get_value", [&value](){ - return value; - }); server.run(); } -- cgit v1.1