Re: [Owfs-developers] OWFS 3.2P4 will build on Raspberry Pi

2020-10-24 Thread Nico Bouthoorn via Owfs-developers

I'm using a raspberry zero with a ds2482-100 board.  OWFS software is the one 
from the debian repo it's self 3.1p5. (debian 9)

I's running stable for a couple of months now. Pi zero is in a greenhouse who 
has a ethernet connection (usb to ethernet) with ds2408 and ds2438 (humidity)

https://fstab.nl/Raspberry-Pi-zero

Nico


hansolofal...@att.net wrote:

Hello!
I've just downloaded and built the latest release of OWFS on the Raspberry
Pi device that I normally use for first tries of the OWFS system. All I saw
while doing so were the usual wonky warnings from the Debian based build
tools on the device. I haven't tried building this release on Slackware as I
do not have a 64 bit 14.2 system available so we can take this report as
factual for the Pi device.

Hardware is a DS9097U device using an FTDI FT232 and MAX232A based adapter,
they are talking to a pair of DS2406 devices.

Further studies will be on a Pi3 and a Pi Zero W Or a PI Zero in gadget zero
Ethernet mode talking to a regular Pi Zero.

Right now I'm working with Maxim to make arrangements to send a pair of
DS2484 devices, and then a pair of DS28E17 devices as well. (I might have
those.)

We know from earlier discussions that the Pi will work to talk to a device
that uses the I2C methods. But what about those two?
-
Gregg Levine hansolofal...@att.net
"They were in the wrong place at the wrong time. Naturally they became
heroes." Princess Leia Organa of Alderann Senator




___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] Non related OWFS help with 1-Wire devices.

2020-10-08 Thread Nico Bouthoorn via Owfs-developers
Also comment on what Mick mentioned about power supply  problems.  I 've 
made a kind of ups.   5V 3A regulator IC, driven by a normal switched PS 
12V and  a 12V battery, divided bij Schottky diodes.
But i'm using  a BeageBone Black, a uptime in this way of 2 years is not 
a problem.
i'm using also a watchdog circuit behind the DS2408 for temperature 
runaways.


I did just a refresh/rework of my 1-wire project website: https://fstab.nl
I'm controlling my greenhouse(s) in this way

Nico

Henrik Östman wrote:

Hi!
I have been following the OWFS project for 20+ years and I really 
think it's a marvelous piece of software. It's been run on a Raspberry 
Pi for many years now to control the heating in our house.
However lately my Raspberry Pi has been more and more unstable, 
overheating problems, diskfailure, hanging, owserver unexpectedly 
going down and soo forth. It really got me thinking if my setup is the 
best approche, my wife and kids should not have to be Unix admins and 
be able to SSH to my server and restart the Docker container with 
Owserver just to not freeze when I'm out on a business trip! So in a 
true Unix spirit I'm splitting my Home automation system appart into 
well defined pieces that "do one thing and do it well".
My house is heated by water-based floor heating, and there are three 
floor heating control centers, with relays opening and closing the 
water-valves. Each control center has a DS2408 controlling the relayes 
of 3-5 valves. A made a small circuit board with a commonly used 
Arduino compatible microcontroller that reads the temperature in the 
rooms using DS1820 sensors, then instructs the DS2408 to open/close 
the right valve. There is one circuit board for each control center, 
so if one goes down only a few rooms get affected. There is a 
reset-button on each circuit board that could be used to restart it 
for whatever reason, and since there are no filesystems mounted there 
is no problem with corruption in case of power loss, and restarting 
only takes a second. The Raspberry Pi is now only used for plotting 
graphs, MQTT and other home automation tasks.


Since I no longer use Owserver in my setup, I understand that it may 
be inappropriate to ask for help within this forum. But I know that 
there are some 10+ years skilled developers here with deep knowledge 
of 1-Wire systems so I'm still going to pop the questions, maybe you 
could direct me to a more suitable forum where we could continue the 
discussion?


 The problem I'm having is with the DS2408 devices, I only seem to be 
able to communicate with them using the SKIP-ROM command, if I try to 
address them individually then I only get garbage and errors back. The 
same code works great when addressing DS2423 and DS18(B/S)20 devices, 
so I think the code itself should work. Maybe I have missed something 
when communicating or initializing the DS2408? I tried to read all the 
Maxim specs, and it feels like I'm doing everything right. During 
startup I begin with initializing the DS2408 and set the pins to 
output and to a known state.


void ds2408_reset(DS2480B , onewireNode ) {
ESP_LOGD(TAG, "Reset DS2408, id: %s.", node.idStr.c_str());
if (existTestMode(ds, node)) {
// Configure RSTZ as STRB output.
//ds.select(node.id ); // reselect last selected device.
ds.write(SKIP_ROM);// HACK, this select all devices on the bus, but we 
should select only this single device. Though I get CRC-errors using 
above line.

ds.write(0xCC);// Issue Write Conditional Search Register command
ds.write(0x8D);// TA1, target address = 8Dh
ds.write(0x00);// TA2, target address = 008Dh
ds.write(0x04);// Write byte to Control/Status Register, RSTZ as STRB 
output

// Verify configuration setting
if (!ds.reset()) {
ESP_LOGW(TAG, "Reset DS2408 failed after non-success configure RSTZ as 
STRB.");

node.errors++;
return;
}
ds.write(RESUME);// reselect last selected device.
ds.write(0xF0);// Issue Read PIO Registers command
ds.write(0x8D);// TA1, target address = 8Dh
ds.write(0x00);// TA2, target address = 008Dh
auto status = ds.read();// Read Control/Status Register and verify
ESP_LOGD(TAG, "DS2408 verify configuration setting: %s.", 
String(status, HEX));

// Set all relays off.
setState(ds, node, B);
} else {
ESP_LOGW(TAG, "Reset DS2408 failed for id: %s.", node.idStr.c_str());
}
}

/**
* Exit test-mode.
* "The DS2408 is sensitive to the power-on slew rate and can 
inadvertently power up with a test mode
* feature enabled. When this occurs, the P0 port does not respond to 
the Channel Access Write command."

* @return0=failed, 1=success
*/
bool existTestMode(DS2480B , onewireNode ) {
// RST PD 96h <64-bit DS2408 ROM Code> 3Ch RST PD
if (ds.reset()) {// onewire initialization sequence, to be followed by 
other commands

ds.write(0x96);
for (uint8_t i = 0; i < 8; i++) {
ds.write(node.id[i]);
}
ds.write(0x3C);
if (ds.reset()) {
return 1;
}
}
return 0;
}

int16_t setState(DS2480B , onewireNode , uint8_t state) {
if 

Re: [Owfs-developers] owfs on Raspberry Buster

2019-09-18 Thread Nico Bouthoorn via Owfs-developers

Can you see the ds2482 device on the i2c bus like?:

i2cdetect -r 1 ( 2 or 3)
WARNING! This program can confuse your I2C bus, cause data loss and worse!
I will probe file /dev/i2c-1 using read byte commands.
I will probe address range 0x03-0x77.
Continue? [Y/n]
 0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:  -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- 18 -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --


You have to see the 18 for i2c device 0   etc


Nico

Mick Sulley wrote:

I am having trouble getting owfs to work on Raspbian Buster.  I have posted on 
the Pi forum

https://www.raspberrypi.org/forums/viewtopic.php?f=28=251702=1536228#p1536228

Someone said they had the same problem but no suggestions to fix it, so I 
wonder if anyone here can give me a clue.

I have just done a fresh install of Buster and updated. I ran raspi-config and 
enabled 1-wire and i2c.
I have installed owserver ow-shell
At first it worked, I could see devices with owdir, but it has stopped working, 
owdir returns nothing
I have run "sudo systemctl enable owserver.service"
but I see -

|pi@pi-solar-old:~ $ sudo systemctl status owserver.service ● owserver.service 
- Backend server for 1-wire control Loaded: loaded 
(/lib/systemd/system/owserver.service; enabled; vendor preset: enabled) Active: 
failed (Result: protocol) since Fri 2019-09-13 21:47:16 BST; 48s ago Docs: 
man:owserver(1) Main PID: 493 (code=exited, status=0/SUCCESS) Sep 13 21:47:16 
pi-solar-old systemd[1]: owserver.service: Service RestartSec=100ms expired, 
scheduling Sep 13 21:47:16 pi-solar-old systemd[1]: owserver.service: Scheduled 
restart job, restart counter is at Sep 13 21:47:16 pi-solar-old systemd[1]: 
Stopped Backend server for 1-wire control. Sep 13 21:47:16 pi-solar-old 
systemd[1]: owserver.service: Start request repeated too quickly. Sep 13 
21:47:16 pi-solar-old systemd[1]: owserver.service: Failed with result 
'protocol'. Sep 13 21:47:16 pi-solar-old systemd[1]: Failed to start Backend 
server for 1-wire control. pi@pi-solar-old:~ $ |||

|I have tried disable, enable, restart for the service, I have removed and 
reinstalled owserver and ow-shell but nothing helps.|

|Any ideas?
|





___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


[Owfs-developers] owfs python project

2019-08-28 Thread Nico Bouthoorn via Owfs-developers

Hi all,

I've rewritten  my perl script to control my greenhouse with python.  It is was 
for me a learning project for the python language.
It can measure and control temperatures and other sensors via ADC, timers with 
sensor dependencies etc. It has also a php frontend to configure.  It's still 
work in progress:

https://gitlab.com/ulterius/owcontrol

If you any remarks etc let me know.


Nico




--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


[Owfs-developers] Hurray! owfs.org is back!

2019-07-16 Thread Nico Bouthoorn via Owfs-developers



Maybe allready noticed is website is back...

My question is now, leave it like this or shall i make a fresh start?

Nico


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org expired?

2019-06-08 Thread Nico Bouthoorn via Owfs-developers

I still don't onderstand:  Registry Expiry Date: 2020-05-13T17:52:22Z
This Domain Name Has Expired - Renewal Instructions.


whois owfs.org
[Querying whois.pir.org]
[whois.pir.org]
Domain Name: OWFS.ORG
Registry Domain ID: D122312630-LROR
Registrar WHOIS Server: whois.enom.com
Registrar URL: http://www.enom.com
Updated Date: 2019-05-14T09:32:19Z
Creation Date: 2006-05-13T17:52:22Z
Registry Expiry Date: 2020-05-13T17:52:22Z
Registrar Registration Expiration Date:
Registrar: eNom, Inc.
Registrar IANA ID: 48
Registrar Abuse Contact Email: ab...@enom.com
Registrar Abuse Contact Phone: +1.4252982646
Reseller:
Domain Status: clientTransferProhibited 
https://icann.org/epp#clientTransferProhibited
Domain Status: autoRenewPeriod https://icann.org/epp#autoRenewPeriod
Registrant Organization:
Registrant State/Province: SK
Registrant Country: CA
Name Server: DNS1.NAME-SERVICES.COM
Name Server: DNS2.NAME-SERVICES.COM
Name Server: DNS3.NAME-SERVICES.COM
Name Server: DNS4.NAME-SERVICES.COM
Name Server: DNS5.NAME-SERVICES.COM


Johan Ström wrote:

FYI, I have not received any update on this yet.

On 2019-05-17 10:41, Johan Ström wrote:

I have received a screenshot from Mike showing that he had the possibility to 
renew the expired domain. According to enom's FAQ it should be possible to 
perform a transfer of expired domain, but it must go through their support who 
can provide the transfer code.
So, I have asked Mike if he could do that. Waiting for reply.

Johan
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.

On May 17, 2019 9:03:41 AM GMT+02:00, Nico Bouthoorn via Owfs-developers 
 wrote:

I don't want to push it, but has someone (Mike) look into it about the 
expiring of the owfs.org domain?
I wil take care of it if somen give me the domain transfer code.   If you 
don't trust me, we can store it in a common  place/safe.

Nico

--
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers





___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101

___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org expired?

2019-05-25 Thread Nico Bouthoorn via Owfs-developers

Meanwhile i've updated https://onewirefilesystem.org/ a little bit, as an copy 
of owfs.org.  Work in progress.

I've bought the Rasberry with the 1-wire interface (couldn't resist) . I've 
made  documentation, it works very, i've placed the R. pi in garden in a 
greenhouse the measure temperature via wifi: 
https://onewirefilesystem.org/raspberry-pi

Nico

Johan Ström wrote:

FYI, I have not received any update on this yet.

On 2019-05-17 10:41, Johan Ström wrote:

I have received a screenshot from Mike showing that he had the possibility to 
renew the expired domain. According to enom's FAQ it should be possible to 
perform a transfer of expired domain, but it must go through their support who 
can provide the transfer code.
So, I have asked Mike if he could do that. Waiting for reply.

Johan
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.

On May 17, 2019 9:03:41 AM GMT+02:00, Nico Bouthoorn via Owfs-developers 
 wrote:

I don't want to push it, but has someone (Mike) look into it about the 
expiring of the owfs.org domain?
I wil take care of it if somen give me the domain transfer code.   If you 
don't trust me, we can store it in a common  place/safe.

Nico

--
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers





___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101

___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] python ow

2019-05-25 Thread Nico Bouthoorn via Owfs-developers

Yes that's working. i will let you know what i've made.I've programmed a 
greenhouse control program in perl.   Professionally wise i take this project 
to learn python.   Python is hot these days.

Nico  


Stefano Miccoli via Owfs-developers wrote:

Some time ago I wrote pyownet 
https://pyownet.readthedocs.io/en/latest/index.html to overcome some 
limitations of the official packages.

The code is quite “stable” now, and does not have some of the fancy new 
features of trio-owfs (namely async i/o); however I think pyownet should be 
quite straightforward to use.

Some simple suggestion to getting started.

1) Forget python2 (which is pretty dead now): learn and use only python3.
2) Install owserver and owshell
3) First test your setup from a command window with the simple owshell commands 
(owdir, owread, owwrite…)
4) Install and activate a python virtual environment 
<https://docs.python.org/3/library/venv.html>
5) `pip install pyownet`
6) start the python shell and do some experiments from the command prompt:


import pyownet.protocol
proxy = pyownet.protocol.proxy()
proxy.dir()

['/26.x001/', '/26.y001/']

proxy.read('/26.x001/temperature')

b'     28.3438'

float(proxy.read('/26.x001/temperature'))

28.4062

proxy.dir('/26.x001/‘)



help(proxy.dir)
proxy.dir(bus=True)

['/26.x001/', '/26.y001/', '/bus.0/', '/uncached/', 
'/settings/', '/system/', '/statistics/', '/structure/', '/simultaneous/']

It should be quite simple to replicate the owshell commands using the methods 
of the proxy object.
Once you are familiar with the owfs structure and the pyownet commands you can 
start writing your first script.

Stefano



On 20 May 2019, at 16:52, Nico Bouthoorn via Owfs-developers 
mailto:owfs-developers@lists.sourceforge.net>> wrote:

Are there any python programmers?
I can read a device with the python-ow pkg, but have any of you an example 
python script  how to write to a ds2408 forexample?
I'm a really a novice with python, perl is not a problem...

Thanks,

Nico



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net 
<mailto:Owfs-developers@lists.sourceforge.net>
https://lists.sourceforge.net/lists/listinfo/owfs-developers






___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


[Owfs-developers] python ow

2019-05-20 Thread Nico Bouthoorn via Owfs-developers

Are there any python programmers?
I can read a device with the python-ow pkg, but have any of you an example 
python script  how to write to a ds2408 forexample?
I'm a really a novice with python, perl is not a problem...

Thanks,

Nico



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


[Owfs-developers] owfs.org expired?

2019-05-17 Thread Nico Bouthoorn via Owfs-developers




I don't want to push it, but has someone (Mike) look into it about the expiring 
of the owfs.org domain?
I wil take care of it if somen give me the domain transfer code.   If you don't 
trust me, we can store it in a common  place/safe.

Nico  




___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] website -> owfs.org expired?

2019-05-14 Thread Nico Bouthoorn via Owfs-developers

Thanks, there is a link on the github site, at the bottom.  This the readme 
page of owfs?

Open owfs.org now, you see that the domain has been expired?

Nico


Johan Ström wrote:

Hi,

nice work! Yes, too bad owfs.org is lost.. we'll see if people can find their 
way to this new site. Any thoughts on making it a Github page, is it possible 
to dump contents to some format suitable for that?

Perhaps add a link to github site? I couldn't find any

Johan

On 2019-05-09 20:52, Nico Bouthoorn via Owfs-developers wrote:


Hi all,

I've managed to get most important  of the content in 
https://onewirefilesystem.org  (i think)  The rest is still search able.
 It is a pity we lost owfs.org.  I've found a lot of sites referencing to this 
url.


For example, 
https://www.kiwi-electronics.nl/index.php?route=product/isearch=1-wire=true
The the raspberry  zero with a  1 Wire Pi Zero board.  a complete system for 25 
euro!


Nico



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org is down

2019-05-06 Thread Nico Bouthoorn via Owfs-developers

Because the owfs.org is gone, instead of the short one i did go for the long 
version:
https://onewirefilesystem.org/   I'm hosting it on my own server, it only cost 
me 10 euro a year.

I managed with wayback-machine-downloader at github and some conversion scripts 
to import the archived orginal side.

I'm using Drupal for years, this is a Drupal 8 CMS. All content is allready  
imported. The look and feel can be changed by changing the theme of the website:
https://www.drupal.org/project/project_theme  If you  don't like this 
appearance , free to look for an other.

There is some work still to be done to hook the rest of the pages in the menu 
etc.  Il will work on it so now then later.

I hope it can approve you, if you like you can have a login.

Regard,

Nico  


Nico Bouthoorn via Owfs-developers wrote:

i'm working on it to import the content in a different cms.

Nico

Ekkehard Pofahl wrote:

Hello,
I benefitted a lot of OWFS over the last years.

Of course it would be very nice to get owfs.org back.

If owfs.org is too complicated, take owfs.info for 12 $/year.

Or, do some housekeeping, and use the github Web presence.

I do see many contributors on github, and 5 open pull requests on github.

BUT : Who is in charge ? Who could "pull" something and clean up ?

Best regards
Ekkehard


--
Ekkehard Pofahl
Finkenweg 12, 51515 Kuerten
mailto:ekkeh...@pofahl.de
tel:+49-151-54860909


Am Do., 2. Mai 2019 um 09:20 Uhr schrieb Johan Ström :


Mike (CCed) has offered to send over EEP transfer codes for the domain
in off-list email before, so he is the authorative source on the status
of the domain I guess, and can assist (if not too late) whoever wants to
pick the domain up.

As for the dropbox link, I downloaded the file so I got it offline.  It
is a couple of hundered of Mbs of random stuff, among other things a
MySQL db dump + php files for the site. I would personally guess that it
is easier to pick up the interesting textual pieces from archive.org (if
everything is there?) and put it into a new site, rather than bringing
that back alive and pick up info from there. That said, let me know if
you want the file anyway and I'll put it up somewhere.

Johan

On 2019-05-02 09:12, Colin Reese wrote:

Who has the login info for the registrar account? I’d guess it can be 
reactivated.

C


On May 2, 2019, at 00:02, Nico Bouthoorn  wrote:

The dropbox link is not valid anymore.

Nico

Johan Ström schreef:

The old whois information:
https://github.com/owfs/owfs/issues/35#issuecomment-480738656
Interestingly enough it seems to be the same if I do a whois right now,
and Registry expiration date is May 13th?
As for the contents, Mike has previously posted a dropbox link with a
full raw dump (mysql db + php files + alot of other things) of the site.
Perhaps it held some secret passwords which have now been used to "take
over" the site, in case the domain isn't actually expired yet?
Johan

On 2019-05-02 08:41, Nico Bouthoorn via Owfs-developers wrote:
owfs.info and owfs.it forexample  is still free, owfs.io also but
expensive.  i can registrar a domain.   If someone still has the
content of the old webiste?

Nico

Colin Reese schreef:

Who was the registrar?


On May 1, 2019, at 23:19, Nico Bouthoorn via Owfs-developers
 wrote:

Thats a pitty... i volunteered

Matthias Urlichs via Owfs-developers schreef:

On 01.05.19 10:38, Nico Bouthoorn via Owfs-developers wrote:
Who owns the domains now?, it looks like it has nothing todo with
owfs
anymore.

Owch. Typical domain grabbing idiocy. We should have transferred it
before it expired. :-(
Reasonable registrars block new registrations for a time to allow the
domain to be transferred by the legit owner …
I can look into contesting that registration, though "owfs" isn't a
registered trademark or anything AFAIK, thus chances are slim.

--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers

--
0623391101



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers





--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org is down

2019-05-04 Thread Nico Bouthoorn via Owfs-developers

i'm working on it to import the content in a different cms.

Nico

Ekkehard Pofahl wrote:

Hello,
I benefitted a lot of OWFS over the last years.

Of course it would be very nice to get owfs.org back.

If owfs.org is too complicated, take owfs.info for 12 $/year.

Or, do some housekeeping, and use the github Web presence.

I do see many contributors on github, and 5 open pull requests on github.

BUT : Who is in charge ? Who could "pull" something and clean up ?

Best regards
Ekkehard


--
Ekkehard Pofahl
Finkenweg 12, 51515 Kuerten
mailto:ekkeh...@pofahl.de
tel:+49-151-54860909


Am Do., 2. Mai 2019 um 09:20 Uhr schrieb Johan Ström :


Mike (CCed) has offered to send over EEP transfer codes for the domain
in off-list email before, so he is the authorative source on the status
of the domain I guess, and can assist (if not too late) whoever wants to
pick the domain up.

As for the dropbox link, I downloaded the file so I got it offline.  It
is a couple of hundered of Mbs of random stuff, among other things a
MySQL db dump + php files for the site. I would personally guess that it
is easier to pick up the interesting textual pieces from archive.org (if
everything is there?) and put it into a new site, rather than bringing
that back alive and pick up info from there. That said, let me know if
you want the file anyway and I'll put it up somewhere.

Johan

On 2019-05-02 09:12, Colin Reese wrote:

Who has the login info for the registrar account? I’d guess it can be 
reactivated.

C


On May 2, 2019, at 00:02, Nico Bouthoorn  wrote:

The dropbox link is not valid anymore.

Nico

Johan Ström schreef:

The old whois information:
https://github.com/owfs/owfs/issues/35#issuecomment-480738656
Interestingly enough it seems to be the same if I do a whois right now,
and Registry expiration date is May 13th?
As for the contents, Mike has previously posted a dropbox link with a
full raw dump (mysql db + php files + alot of other things) of the site.
Perhaps it held some secret passwords which have now been used to "take
over" the site, in case the domain isn't actually expired yet?
Johan

On 2019-05-02 08:41, Nico Bouthoorn via Owfs-developers wrote:
owfs.info and owfs.it forexample  is still free, owfs.io also but
expensive.  i can registrar a domain.   If someone still has the
content of the old webiste?

Nico

Colin Reese schreef:

Who was the registrar?


On May 1, 2019, at 23:19, Nico Bouthoorn via Owfs-developers
 wrote:

Thats a pitty... i volunteered

Matthias Urlichs via Owfs-developers schreef:

On 01.05.19 10:38, Nico Bouthoorn via Owfs-developers wrote:
Who owns the domains now?, it looks like it has nothing todo with
owfs
anymore.

Owch. Typical domain grabbing idiocy. We should have transferred it
before it expired. :-(
Reasonable registrars block new registrations for a time to allow the
domain to be transferred by the legit owner …
I can look into contesting that registration, though "owfs" isn't a
registered trademark or anything AFAIK, thus chances are slim.

--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers

--
0623391101



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org is down

2019-05-02 Thread Nico Bouthoorn via Owfs-developers

The dropbox link is not valid anymore.

Nico

Johan Ström schreef:

The old whois information:
https://github.com/owfs/owfs/issues/35#issuecomment-480738656

Interestingly enough it seems to be the same if I do a whois right now,
and Registry expiration date is May 13th?

As for the contents, Mike has previously posted a dropbox link with a
full raw dump (mysql db + php files + alot of other things) of the site.
Perhaps it held some secret passwords which have now been used to "take
over" the site, in case the domain isn't actually expired yet?

Johan

On 2019-05-02 08:41, Nico Bouthoorn via Owfs-developers wrote:

owfs.info and owfs.it forexample  is still free, owfs.io also but
expensive.  i can registrar a domain.   If someone still has the
content of the old webiste?

Nico

Colin Reese schreef:

Who was the registrar?


On May 1, 2019, at 23:19, Nico Bouthoorn via Owfs-developers
 wrote:

Thats a pitty... i volunteered

Matthias Urlichs via Owfs-developers schreef:

On 01.05.19 10:38, Nico Bouthoorn via Owfs-developers wrote:
Who owns the domains now?, it looks like it has nothing todo with
owfs
anymore.

Owch. Typical domain grabbing idiocy. We should have transferred it
before it expired. :-(
Reasonable registrars block new registrations for a time to allow the
domain to be transferred by the legit owner …
I can look into contesting that registration, though "owfs" isn't a
registered trademark or anything AFAIK, thus chances are slim.


--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers




--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org is down

2019-05-02 Thread Nico Bouthoorn via Owfs-developers

owfs.info and owfs.it forexample  is still free, owfs.io also but expensive.  i 
can registrar a domain.   If someone still has the content of the old webiste?

Nico

Colin Reese schreef:

Who was the registrar?


On May 1, 2019, at 23:19, Nico Bouthoorn via Owfs-developers 
 wrote:

Thats a pitty... i volunteered

Matthias Urlichs via Owfs-developers schreef:

On 01.05.19 10:38, Nico Bouthoorn via Owfs-developers wrote:
Who owns the domains now?, it looks like it has nothing todo with owfs
anymore.

Owch. Typical domain grabbing idiocy. We should have transferred it
before it expired. :-(
Reasonable registrars block new registrations for a time to allow the
domain to be transferred by the legit owner …
I can look into contesting that registration, though "owfs" isn't a
registered trademark or anything AFAIK, thus chances are slim.


--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org is down

2019-05-02 Thread Nico Bouthoorn via Owfs-developers

Thats a pitty... i volunteered

Matthias Urlichs via Owfs-developers schreef:

On 01.05.19 10:38, Nico Bouthoorn via Owfs-developers wrote:

Who owns the domains now?, it looks like it has nothing todo with owfs
anymore.


Owch. Typical domain grabbing idiocy. We should have transferred it
before it expired. :-(

Reasonable registrars block new registrations for a time to allow the
domain to be transferred by the legit owner …

I can look into contesting that registration, though "owfs" isn't a
registered trademark or anything AFAIK, thus chances are slim.



--
0623391101


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] owfs.org is down

2019-05-01 Thread Nico Bouthoorn via Owfs-developers

Who owns the domains now?, it looks like it has nothing todo with owfs anymore.

Nico

Johan Ström schreef:

At least we have a number of volunteers to take on the domain: Matthias 
Urlichs, Alastair D'Silva, and Nico Bouthoorn, unless I've missed someone?
I suggest that anyone who has any opinion or preference on who to take over,  
should make their voice heard now. Personally I don't have one :)

For me, the most important thing is that the source code is available in a 
public repo on Github, a webpage is secondary. So, until there is a proper owfs 
github page, I suggest keeping a redirect to the github repo as Mike have done 
right now (or, if we want to avoid a redirect host, just setup domains towards 
owfs.github.io as per 
https://help.github.com/en/articles/using-a-custom-domain-with-github-pages, 
and clean up the current mock page a bit).

Not sure if there is any need for MX records, the only contact point that I'm 
aware of is the mailing list.

Johan

On 2019-04-15 17:50, Mike Kalist wrote:

Do we have a plan on who will take over ownership of owfs.org  and 
owfs.net  ?
I did a redirect from .org and .net  to https://github.com/owfs/owfs/

Mike


On Thu, Apr 11, 2019 at 8:27 PM Gregg Levine mailto:gregg.drw...@gmail.com>> wrote:

Hello!
Currently that's living on Source Forge. And wonder of wonders, it is
still working.
-
Gregg C Levine gregg.drw...@gmail.com 
"This signature fought the Time Wars, time and again."

On Thu, Apr 11, 2019 at 8:11 PM Alastair D'Silva mailto:alast...@d-silva.org>> wrote:
>
> I'm happy to chip in to keep the domain. I can also secondary dns & email.
>
> Where is the mailing list hosted? That probably needs to live somewhere 
too...
>
> On 12 April 2019 3:45:49 am AEST, "Johan Ström" mailto:jo...@stromnet.se>> wrote:
>>
>> Personally I'm voting for a technical solution such as described in
>> https://github.com/owfs/owfs/issues/35#issuecomment-481157327
>>
>> i.e. just keep the domain, and point it to owfs.github.io 
 (or use the
>> custom domain model mentioned).
>> Then no-one needs to keep up with having some random PHP site maintained
>> and secure, but rather we can just focus on the information presented. A
>> big additional plus is that the community does not have to rely on a
>> single person (whoever it might be) for keeping the site working.
>> While it's nice to see that we have people stepping forward to do it,
>> it's natural that interest and possibility can/will change with years
>> (as we've seen here), and from that point of view it would be nice to
>> use an open platform to host it (while there is no guarantee github is
>> there forever..).
>>
>> The "only" two things which needs solving then is
>> * migration of existing content to new site format
>> * keeping up with paying for owfs.org , if we want to 
keep the domain.
>>
>>
>> Johan
>>
>>
>> On 2019-04-11 18:56, Nico Bouthoorn wrote:
>>>
>>>  I can take over  the domains if no one objects, my background and job
>>>  is linux administration.   I'm using owfs for over 10 years now, i'm
>>>  glad doing something back. It only will be hosted outside the US in
>>>  the Netherlands...
>>>
>>>  Nico
>>>
>>>  Nico
>>>
>>>  Mike Kalist wrote:

  HI All   sorry for the hassle,  whoever can take over the domains and
  hosting  please email me and i will forward EEP keys  as well  as
  send  log in and password for the site.

  The amount of work it is taking  to keep up with spam is getting to
  be a full time job. over the last year i have been asking clients to
  go to another hosting provider.

  Please let me know.

  Have a great day and  again sorry for the inconvenience.

  Email is m...@kalist.ca  >


  On Wed, Apr 10, 2019 at 3:54 AM Nico Bouthoorn mailto:n...@cuora.nl>
  >> wrote:

      I can host the website if it is a problem,  i host more
  websites.  The number of hits and storage will not that big, i guess?

      Nico

      Johan Ström schreef:
       > Hi,
       >
       >
       > thanks for replying, good to hear from you Paul!
       >
       >
       > Based on previous discussions and current Github ticket, my
  guess is that the general consensus it that create a new site on
 github.io   would do just fine.
       >
       >
       > The 

Re: [Owfs-developers] owfs.org is down

2019-04-11 Thread Nico Bouthoorn via Owfs-developers

I can take over  the domains if no one objects, my background and job is linux 
administration.   I'm using owfs for over 10 years now, i'm glad doing 
something back. It only will be hosted outside the US in the Netherlands...

Nico

Nico

Mike Kalist wrote:

HI All   sorry for the hassle,  whoever  can take over the domains and hosting  
please email me and i will forward  EEP keys  as well  as send  log in and 
password for the site.

The amount of work it is taking  to keep up with spam is getting to be a full 
time job. over the last year i have been asking clients to go to another 
hosting provider.

Please let me know.

Have a great day and  again sorry for the inconvenience.

Email is m...@kalist.ca 


On Wed, Apr 10, 2019 at 3:54 AM Nico Bouthoorn mailto:n...@cuora.nl>> wrote:

I can host the website if it is a problem,  i host more websites.  The 
number of hits and storage will not that big, i  guess?

Nico

Johan Ström schreef:
 > Hi,
 >
 >
 > thanks for replying, good to hear from you Paul!
 >
 >
 > Based on previous discussions and current Github ticket, my guess is that the 
general consensus it that create a new site on github.io  would 
do just fine.
 >
 >
 > The two big question, I guess, is how to deal with the economical parts of the 
domain (owfs.org ), and who has the time & interest to create a 
new page.
 >
 >
 > Regards
 > Johan
 >
 >
 > On 2019-04-09 13:23, Alfille, Paul H.,M.D. wrote:
 >>
 >> Mike Kalist has generously hosted the site for years, but would like 
out.
 >>
 >>
 >> Is there any interest in picking it up or changing to full github 
format?
 >>
 >>
 >> Paul Alfille
 >>
 >>

--
 >> *From:* Johan Ström mailto:jo...@stromnet.se>>
 >> *Sent:* Tuesday, April 9, 2019 6:37:59 AM
 >> *To:* OWFS (One-wire file system) discussion and help; mike.kal...@gmail.com 

 >> *Subject:* Re: [Owfs-developers] owfs.org  is down
 >>     External Email - Use Caution
 >>
 >> Not sure if we have any contact details to anyone who is/was in charge
 >> of the site/domain/servers. Unfortunately
 >> https://sourceforge.net/p/owfs/mailman/message/35247513/ &
 >> https://sourceforge.net/p/owfs/mailman/message/35353958/ kind of ran
 >> into the sand, when it comes to the homepage. The GIT move was
 >> successful though!
 >>
 >> In the SOA record in the DNS for owfs.org  there is a
 >> mike.kalist.gmail.com  listed, also in 
"To" in this mail!
 >> Mike, if this reaches you, please let us know if you have any input :)
 >>
 >>
 >> Note ongoing discussion both on mailing list and in ticket listed below.
 >>
 >> Regards
 >> Johan
 >>
 >> On 2019-04-09 09:43, Colin Law wrote:
 >> > On Mon, 8 Apr 2019 at 22:12, Stefano Miccoli via Owfs-developers
 >> > mailto:owfs-developers@lists.sourceforge.net>> wrote:
 >> >> Hi all:
 >> >>
 >> >> owfs.org  is down, as reported in 
https://github.com/owfs/owfs/issues/35 
 >> > I hope that is not all going to be lost as it appears the domain is
 >> > about to expire.
 >> >
 >> > Colin
 >> >
 >> >
 >> > ___
 >> > Owfs-developers mailing list
 >> > Owfs-developers@lists.sourceforge.net 

 >> > https://lists.sourceforge.net/lists/listinfo/owfs-developers
 >>
 >>
 >> ___
 >> Owfs-developers mailing list
 >> Owfs-developers@lists.sourceforge.net 

 >> https://lists.sourceforge.net/lists/listinfo/owfs-developers
 >>
 

Re: [Owfs-developers] owfs.org is down

2019-04-10 Thread Nico Bouthoorn via Owfs-developers

I can host the website if it is a problem,  i host more websites.  The number 
of hits and storage will not that big, i  guess?

Nico

Johan Ström schreef:

Hi,


thanks for replying, good to hear from you Paul!


Based on previous discussions and current Github ticket, my guess is that the 
general consensus it that create a new site on github.io would do just fine.


The two big question, I guess, is how to deal with the economical parts of the 
domain (owfs.org), and who has the time & interest to create a new page.


Regards
Johan


On 2019-04-09 13:23, Alfille, Paul H.,M.D. wrote:


Mike Kalist has generously hosted the site for years, but would like out.


Is there any interest in picking it up or changing to full github format?


Paul Alfille

--
*From:* Johan Ström 
*Sent:* Tuesday, April 9, 2019 6:37:59 AM
*To:* OWFS (One-wire file system) discussion and help; mike.kal...@gmail.com
*Subject:* Re: [Owfs-developers] owfs.org is down
    External Email - Use Caution

Not sure if we have any contact details to anyone who is/was in charge
of the site/domain/servers. Unfortunately
https://sourceforge.net/p/owfs/mailman/message/35247513/ &
https://sourceforge.net/p/owfs/mailman/message/35353958/ kind of ran
into the sand, when it comes to the homepage. The GIT move was
successful though!

In the SOA record in the DNS for owfs.org there is a
mike.kalist.gmail.com listed, also in "To" in this mail!
Mike, if this reaches you, please let us know if you have any input :)


Note ongoing discussion both on mailing list and in ticket listed below.

Regards
Johan

On 2019-04-09 09:43, Colin Law wrote:
> On Mon, 8 Apr 2019 at 22:12, Stefano Miccoli via Owfs-developers
>  wrote:
>> Hi all:
>>
>> owfs.org is down, as reported in https://github.com/owfs/owfs/issues/35 

> I hope that is not all going to be lost as it appears the domain is
> about to expire.
>
> Colin
>
>
> ___
> Owfs-developers mailing list
> Owfs-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/owfs-developers


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers

The information in this e-mail is intended only for the person to whom it is
addressed. If you believe this e-mail was sent to you in error and the e-mail
contains patient information, please contact the Partners Compliance HelpLine at
http://www.partners.org/complianceline . If the e-mail was sent to you in error
but does not contain patient information, please contact the sender and properly
dispose of the e-mail.






___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101

___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


[Owfs-developers] aag weather station

2019-02-10 Thread Nico Bouthoorn via Owfs-developers

I don't know if i spam now, but i'm still using the aag weather station.  It's 
still runnning fine, but now and then de wind direction is stuck. i suspect the 
ball bearing.  Anyone experience has with that or do know the ball bearing 
specifications or size?
Or do some have a good alternative for this weatherstation, the windspeed and 
direction?

Thanks,

Nico



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


[Owfs-developers] uptime

2019-01-18 Thread Nico Bouthoorn via Owfs-developers

Just good news:
root@bb02:~# w
 15:40:06 up 518 days, 21 min,  1 user,  load average: 1.45, 1.37, 1.38

root@bb02:~# ps -eo pid,lstart,cmd |grep owserver
 1862 Fri Aug 18 16:19:30 2017 /usr/bin/owserver --i2c=/dev/i2c-1:ALL 
--error_print=1 --error_level=1 --pid-file=/var/run/owfs/owserver.pid

root@bb02:~# dpkg -l |grep owserver
ii  ow-shell 2.8p15-1  
armhfshell utilities to talk to an 1-Wire owserver
ii  owserver 2.8p15-1  
armhfBackend server for 1-Wire control


It is beaglebone black on a ups with ds2482-800 interfaces, running without any 
problems.

some allready knows it, but this my setup: https://fstab.nl/en/beaglebone

It is for controlling my greenhouse:  https://kas.cuora.nl/


thanks to all for the good work.

Nico




___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers


Re: [Owfs-developers] DS2482-800 reset ?

2018-07-27 Thread Nico Bouthoorn via Owfs-developers

I've never these kind of problems. I'm using just very kind random 5v supplies 
what i can find.  But the power is indirect driven by a beaglebone black. On 
this moment i'm using a 12v lead battery and a LM 5v chip as an kind of ups:
root@bb02:~# uptime
 10:58:22 up 342 days, 18:39,  1 user,  load average: 0.79, 1.11, 1.19

:)

Nico
 


Mick Sulley wrote:

Hi Laurent,

I suffered for several years with a similar issue, I have an 8 bus system and I 
would loose 1 or more of the busses, the only way to recover was to power 
cycle.  From what I have read I don't believe that there is any other way to 
reset a DS2482.

Over that time I tried all sorts of things to fix the problem, it was random, 
could be a month or more between failures, could be less than a day.

The good news is that I have finally tracked it down and fixed it (fingers 
crossed as I type this!).  It is a long story, I will post the details when I 
have more time, but the basic problem was mains noise caused by a soft start 
unit on a pump.  I would recommend using good quality power supplies, I used 
Meanwell MDR-20-5 units, not cheap but worthwhile if it fixes the problem.

You say it happens from time to time, can you identify anything that may have 
switched on or off at the same time?  Can you put an oscilloscope on the mains 
to check for noise?

Hope this helps, I know how frustrating it can be.

Mick


On 26/07/18 09:07, Laurent FAILLIE via Owfs-developers wrote:

Hello,

Is it a way to issue a reset command to a DS2482-800 ?
I'm driving my home automation using this chips and time to time, I'm loosing 
all my probe.
The chip is still detected by
# i2cdetect -y 2
 0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:  -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- 18 -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --

The only solution is a power cycle on the chip :(

Thanks


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org!http://sdm.link/slashdot


___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers




--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot



___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers



--
0623391101

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Owfs-developers mailing list
Owfs-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/owfs-developers