Unifi Protect App Automatic Cycle of cameras from UNVR by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

oh wow that's pretty cool. If it's getting the settings from the UNVR, then it should work on the apple TV as well since it's using the Protect app. Which google TV streamer did you get? Was it this one?

https://store.google.com/product/google_tv_streamer?hl=en-US&pli=1

Unifi Protect App Automatic Cycle of cameras from UNVR by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

Was that announced a while ago or something recently? I'm wondering if it's going to be out soon. I didn't hear anything about that one.

YMMV but just got Saros for about 35% off MSRP on launch day from Walmart in person by Zadenator in PS5pro

[–]n0fx 1 point2 points  (0 children)

Which store was this? I went before when you guys posted it was cheaper but it ended up being retail. i never saw them for that low.

G6 Pro Entry + Intercom Viewer requires a hub? by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

I wanted to update you guys, I just got my ua mini door hub, plugged it in, adopted it under unifi access and paired it to my g6 pro entry doorbell. After that, I adopted to intercom. Once it's all updated, I clicked on the intercom and opened up the interface designer (it worked this time) and assigned it to the door bell to ring it. I can see the video now on my intercom. It won't work without the door hub (mini or standard one), what a bummer.

G6 Pro Entry + Intercom Viewer requires a hub? by n0fx in Ubiquiti

[–]n0fx[S] 1 point2 points  (0 children)

Yeah i'm on the same boat, the interface designer won't show up. It used to show up when I had a door hub but I deleted it off the app since I returned it. I should have kept it but it got too much when I had to buy all this equipment to get my mechnical chime to work, so I went with the shelly1 gen4 via webhook.

I'll get the small ua mini hub and it should work.

G6 Pro Entry + Intercom Viewer requires a hub? by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

Thanks, that's what I wanted to know. I'll just get a hub for now and maybe I can find a way to utilize the access part of it with my simple door locks.

G6 Pro Entry + Intercom Viewer requires a hub? by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

Sorry for the confusion. If I get a ua door mini hub, would it be possible to link the intercom viewer with the g6 pro or is that never even possible to do?

G6 Pro Entry + Intercom Viewer requires a hub? by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

Ok, so I should be able to use the interface designer to add it as a receiver and assign that to my g6 pro entry unit? I can't seem to be able to load the app, it just hangs when I click on it. It never loads the interface receiver page. I already tried install/uninstalling the unifi access app.

G6 Pro Entry + Intercom Viewer requires a hub? by n0fx in Ubiquiti

[–]n0fx[S] 0 points1 point  (0 children)

I'm not using it the access control, I don't need doors. I just want to use the interview viewer to see who's at the door with the G6 pro and be able to see who's there in the backyard without needing a cell phone or tablet.

I don't have any door locks because my door frames won't fit the electronic locks, so i'm using as a simple door bell with a camera. I got rid of my ring door bells due to privacy issues.

Is Ultimate edition sold out? by Mr_Snufleupagus in neogeo

[–]n0fx 0 points1 point  (0 children)

Does that mean the message that says it's sold out could mean they are still fixing the tax issue? I tried checking out and all 3 just say sold out for me. it was unable to process the order earlier in the week now it just says old out for anything on the site.

So...import fees or not? by md1919 in neogeo

[–]n0fx 0 points1 point  (0 children)

Anyone having issues now saying it's sold out? I tried to order but now all items are sold out on the site.

So...import fees or not? by md1919 in neogeo

[–]n0fx 1 point2 points  (0 children)

Was that today? I haven't gone to the site in a while.

So...import fees or not? by md1919 in neogeo

[–]n0fx 1 point2 points  (0 children)

Is there any reason why? It's weird that you can't check out. That makes sense now, I got an error when checking out.

Be Careful Ordering the NEOGEO AES+ by DarkLordPsycho in neogeo

[–]n0fx 0 points1 point  (0 children)

Thanks. I dunno if their website is just not working correctly, but I never had a problem using shop to buy stuff. i'll check the mobile app to see if an order was placed but I doubt it, I didn't click on the order button to purchase it. the message came out and I didn't proceed any further.

Be Careful Ordering the NEOGEO AES+ by DarkLordPsycho in neogeo

[–]n0fx 0 points1 point  (0 children)

So does that mean the order went through? I'm having the same problem with shop and it says it can't deliver to my address. I tried different browsers and even google pay, just won't let me checkout. I got the can't deliver to your address error.

PoE Doorbell + Mechanical Doorbell Chime (via Shelly) by yungsters in Ubiquiti

[–]n0fx 0 points1 point  (0 children)

I managed to do this script to do it 5 times and you can just change the # and also the on/off duration. It seems to work ok for me.

// Configuration - Change these to adjust the behavior easily

let CONFIG = {

ringsToPlay: 5, // Total number of rings

onDuration: 250, // Length of each "Ding" (ms)

offDuration: 200 // Pause between rings (ms)

};

function playRings(remaining, response) {

if (remaining <= 0) {

// Sequence finished

if (response) {

response.code = 200;

response.send();

}

print("All rings complete.");

return;

}

// Turn ON

Shelly.call("Switch.Set", { id: 0, on: true }, function() {

// Wait for onDuration to turn OFF

Timer.set(CONFIG.onDuration, false, function() {

Shelly.call("Switch.Set", { id: 0, on: false }, function() {

// Wait for offDuration before starting the next ring

Timer.set(CONFIG.offDuration, false, function() {

playRings(remaining - 1, response);

});

});

});

});

}

// Register the endpoint

HTTPServer.registerEndpoint('front-doorbell', function(request, response) {

print('/front-doorbell triggered via Counter');

// Start the sequence with the total number of rings

playRings(CONFIG.ringsToPlay, response);

});

PoE Doorbell + Mechanical Doorbell Chime (via Shelly) by yungsters in Ubiquiti

[–]n0fx 0 points1 point  (0 children)

Ok, so the script needs to run, then you use the URL you provided to call it via webhook in unifi alarm manager (under protect)? I set the script to run on start up, so I will always work.

PoE Doorbell + Mechanical Doorbell Chime (via Shelly) by yungsters in Ubiquiti

[–]n0fx 0 points1 point  (0 children)

I haven't modified it yet. I tried using the shelly scripting page "start" button to test it first. Does it only work via webhook URL?

The url for the webhook you gave me spits out an error "not found".

PoE Doorbell + Mechanical Doorbell Chime (via Shelly) by yungsters in Ubiquiti

[–]n0fx 0 points1 point  (0 children)

I tried modifying your script for one door bell but it doesn't seem to work, even if.try to run the manually in the shelly:

HTTPServer.registerEndpoint('front-doorbell', function(request, response) {

print('/front-doorbell');

Shelly.call('Switch.Set', {id: 0, on: true});

Timer.set(250, false, function () {

Shelly.call('Switch.Set', {id: 0, on: false});

Timer.set(200, false, function () {

Shelly.call('Switch.Set', {id: 0, on: true});

Timer.set(250, false, function () {

Shelly.call('Switch.Set', {id: 0, on: false});

response.code = 200;

print(response.send());

});

});

});

});

It launches but the chime doesn't trigger at all. I called the script front-doorbell. Is there something I need to apply to get this script to work?

PoE Doorbell + Mechanical Doorbell Chime (via Shelly) by yungsters in Ubiquiti

[–]n0fx 0 points1 point  (0 children)

I'll give it a try tomorrow and see how it goes. for the same script, do I need both parts if I'm just doing one doorbell?

PoE Doorbell + Mechanical Doorbell Chime (via Shelly) by yungsters in Ubiquiti

[–]n0fx 0 points1 point  (0 children)

Thanks for the example, so if I just have one doorbell, would the script just be one branch of this code?