Search found 16 matches

by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

help with homeeasy on MIPS linux

Hi all, I've attached my tellstick to my DD-WRT router which is a MIPS architecture. I've installed the kernel modules and acquired a rfcmd binary from here http://www.hemkoll.nu/tellstick/. I'm able to control my domia lite switches using NEXA as the protocol, so i know its all working. However, i'...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Thanks, but i'm afraid i can't get any sort of response from the homeeasy devices using nexa. I tried many different combinations of house codes and device numbers. I've got a keyfob domia lite (nexa) remote that is also unable to control my homeeasy devices (the devices just won't learn from it). T...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Sorry, they are self-learning ones.

I've never seen code-wheel homeeasy stuff, and can't see any mention of it on the homeeasy website, so just assume they didn't exist.


Sorry for the confusion :oops:
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Cheers.

Are you saying i can't use it on linux as i need the windows software?


Thanks.
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Hmmm, ok. Are there no pre-compiled binaries for anything other than ubuntu? The problem i have with compiling myself is that i am unable to install cmake on the mips machine. So the compile instructions don't work. I googled "cross-compile cmake" and got to the cmake tutorials page. Its h...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Ok, I've tried my best at compiling without success. I've isntalled the g++ and gcc compilers for mips. I've read and re-read about cmake config files and i've got the following: # this one is important SET(CMAKE_SYSTEM_NAME Linux) #this one not so much SET(CMAKE_SYSTEM_VERSION 1) # specify the cros...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Note, that i get exactly the same errors if i run the commands from the wiki, without the toolchain file.

Eg, just :
cmake .
make
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Hi Micke,
thanks very much for your help. Appreciate it.

I've started another thread as i'm having troubles with vanilla compile from source. I'll come back to this one with cross-compile success/failures once i'm actually on to that.

Cheers.
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: [Solved] Compiling from source problems
Replies: 1
Views: 4340

[Solved] Compiling from source problems

On my road to trying to cross-compile i've started by trying a vanilla compile from source. Without much luck! Using these instructions: http://developer.telldus.se/wiki/TellStickInstallationSource I'm on ubuntu 10.10 on x86. Pretty standard stuff. I've run: apt-get install build-essential apt-get i...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: [Solved] Compiling from source problems
Replies: 1
Views: 4340

Re: Compiling from source problems

Success! Thanks to Micke's reply in my other thread.

I can compile 2.0.4 after install libconfuse:

apt-get install libconfuse-dev


I don't see this on the install instructions, so hopefully putting it here might help someone. Or just help me the next time :D
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: Voice/Clap Control on linux
Replies: 2
Views: 7215

Re: Voice/Clap Control on linux

if you come up with a solution for this i'd be interested too!

The only things i know of that work are voxcommando+eventghost for Windows. Boo.
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Right, i'm back again! This is my toolchain config file: # this one is important SET(CMAKE_SYSTEM_NAME Linux) #this one not so much SET(CMAKE_SYSTEM_VERSION 1) # specify the cross compiler SET(CMAKE_C_COMPILER /usr/bin/mips-linux-gnu-gcc) SET(CMAKE_CXX_COMPILER /usr/bin/mips-linux-gnu-g++) # where i...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Good morning! I installed libconfuse using: apt-get install libconfuse-dev on the box i'm cross compiling on (not for). The confuse.h file is present in /usr/include. I can successfully compile for x86 (local machine) now. And the executables work. I'm now only getting the confuse errors when i try ...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

Ok, thanks. I have absolutely no idea how to install anything into the target. So i changed the toolchain file to: SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM BOTH) SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY BOTH) SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH) I get the same error. I'm on the verge of giving up a...
by bryanchicken
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: help with homeeasy on MIPS linux
Replies: 23
Views: 21338

Re: help with homeeasy on MIPS linux

How important is SettingsConfuse.cpp? I've found that if i comment out most of the method bodies and also remove references to confuse from a couple of CMakeFiles.txt that i can actually compile succesfully and get a mips tdtool executable (can't test it until tonight). Will i still be able to issue...