Search found 6 matches

by mtsinc
Monday 05 November 2018 17:16
Forum: Python
Topic: Creating a general gateway
Replies: 4
Views: 520

Re: Creating a general gateway

Actually, there are all sorts of cases in the wider world where there are generic gateways dealing with multiple peripherals. Probably one of the best knows is the "Windows Printer Device Driver". What people call the "Driver" here is actually a translator. Its primary purpose is to convert generic ...
by mtsinc
Friday 02 November 2018 19:48
Forum: Python
Topic: Creating a general gateway
Replies: 4
Views: 520

Re: Creating a general gateway

Thanks!

Every little bit helps.

I notice that an AWFUL lot of postings in this forum have the word "gateway" in them. Really seems like there should be a standard interface for them.
by mtsinc
Tuesday 30 October 2018 13:53
Forum: Python
Topic: Made a newbie mess with Python
Replies: 2
Views: 367

Re: Made a newbie mess with Python

I'm not a Python guru, but my understanding is that Python is a lot like Java, and in Java, having a dozen or so different VMs of various different release levels and flavors installed is just fine. The only thing is that you have to tell the application which one of those installed VMs you want ...
by mtsinc
Tuesday 30 October 2018 13:48
Forum: Temperature and Weather
Topic: temp/humidity sensor advise
Replies: 5
Views: 2063

Re: temp/humidity sensor advise

One of your biggest problems is that the 433 MHz band is actually the property of the Amateur Radio Service in the USA and "shouldn't" be used by unlicensed transmitters. However, obviously it is and quite freely. So how? As it turns out there's a loophole. As long as your transmitter power level is ...
by mtsinc
Tuesday 30 October 2018 13:36
Forum: Temperature and Weather
Topic: DS18B20 Directly connected to a RPI
Replies: 16
Views: 6057

Re: DS18B20 Directly connected to a RPI

I don't see why not. Adafruit has an example of the DS18B20 connected to a Pi GPIO port and the Pi is a multi-tasking OS. https://learn.adafruit.com/adafruits-raspberry-pi-lesson-11-ds18b20-temperature-sensing/hardware The tricky part is in figuring out what channel to feed the measurements into ...
by mtsinc
Monday 29 October 2018 17:57
Forum: Python
Topic: Creating a general gateway
Replies: 4
Views: 520

Creating a general gateway

This seems like a common enough need, but I haven't seen anything to address it. Basically, I've got a gateway device (connects as a tty) which concentrates and formats data from a variable number of remote sensors with varying capabilities. For best results, then, I'd like to define each remote via ...