Search found 31 matches

by pjpankhurst
11 Jun 2018 11:03
Forum: Z-Uno
Topic: Dead Z-Uno
Replies: 5
Views: 4606

Re: Dead Z-Uno

I suspect it is dead too..but wondered if their was any other suggestions from the developers before I go through the process of raising an RMA and shipping it half way across Europe
by pjpankhurst
09 Jun 2018 19:38
Forum: Z-Uno
Topic: Dead Z-Uno
Replies: 5
Views: 4606

Re: Dead Z-Uno

Hi,
Yes tried the factory reset..haven't seen any LED at all
Paul
by pjpankhurst
09 Jun 2018 15:35
Forum: Z-Uno
Topic: Dead Z-Uno
Replies: 5
Views: 4606

Dead Z-Uno

Hi, I have a brand new z-uno that was returned by a customer who said it was dead on arrival. Have the device back and sure enough the device has no leds showing and is not recognised as a device on the PC when the USB is plugged in. Checked the voltage on the 5V pin and it looks good, and board app...
by pjpankhurst
09 Nov 2017 00:41
Forum: RaZberry
Topic: What does Climate Control App actually control?
Replies: 0
Views: 1979

What does Climate Control App actually control?

I am probably being really stupid here...but I cant see how the Climate Control App actually controls anything.

I get to specify a schedule of times and heat setting for lots of rooms which is great..but where is the linkage to a device to set a setpoint on a radiator or activate the boiler
by pjpankhurst
08 Nov 2017 12:17
Forum: Z-Uno
Topic: Libraries in sketch folder
Replies: 7
Views: 6088

Re: Libraries in sketch folder

As an example, I placed the LCD library I generated here:

C:\Users\Paul\AppData\Local\Arduino15\packages\Z-Uno\hardware\zw8051\2.1.1\libraries\ZUNO_LCD_I2C>

Obviously the username will be different to 'Paul' on your system, and Appdata is of course a hidden directory by default
by pjpankhurst
07 Nov 2017 15:01
Forum: Z-Uno
Topic: Libraries in sketch folder
Replies: 7
Views: 6088

Re: Libraries in sketch folder

I raised this issue some time back and was told to copy the files in to the appropriate place manually, which I have been doing, and it then works..
by pjpankhurst
07 Nov 2017 13:38
Forum: Z-Uno
Topic: Z-Uno and Zipato
Replies: 11
Views: 13364

Re: Z-Uno and Zipato

You can access the entire API through a web interface here: https://my.zipato.com/zipato-web/api/ I've just checked and it appears you can read the values ok this way, so a workaround seems possible. If you look at GET /attributes/{uuid}/value and enter the uuid into the appropriate field you should...
by pjpankhurst
05 Nov 2017 03:03
Forum: Z-Uno
Topic: Z-Uno and Zipato
Replies: 11
Views: 13364

Re: Z-Uno and Zipato

@sega66 - I wonder if the values can be read from the Zipato REST interface..if they can it may be possible to copy them into a virtual device that can then be used by the zipato rules as a temporary workaround..havent had a chance to test this yet myself
by pjpankhurst
02 Nov 2017 12:27
Forum: Z-Uno
Topic: ZUNO_SETUP_DEBUG_MODE() missing ?
Replies: 2
Views: 3208

Re: ZUNO_SETUP_DEBUG_MODE() missing ?

I just tried adding the exact same line of code today and it compile fine - weird !
by pjpankhurst
31 Oct 2017 15:47
Forum: Z-Uno
Topic: Compiler Bug? local arrays not initialised correctly
Replies: 19
Views: 15349

Re: Compiler Bug? local arrays not initialised correctly

Thanks for that Peter..most useful :-) The macro versus function, I could easily see how that saved stack by not having to push any params or return addresses. It was the private versus global that I didn't get, it seems that it is the 2 bytes for v_this that are the difference. I seem to recollect ...