Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
BEAM IR/RF Wifi transceiver / Re: BEAM documentation / news
« Last post by jitterjames on December 02, 2022, 06:10:37 PM »
I did not know those chips could go bad but they are pretty cheap so trying a new one is probably the easiest place to start.

You should also try to remove the chip, check that the contacts are clean and that the antenna is secure and put it back in.

Make sure when learning codes to avoid other RF signals if possible and put your remote close to the receiving chip. There can also be some technique involved in holding down the remote button for long enough. Varies by remote.

Good luck and let us know what happens.
62
BEAM IR/RF Wifi transceiver / Re: BEAM documentation / news
« Last post by Kalle on December 02, 2022, 05:22:29 AM »
Try first a new chip, if this doesn't help, let me know and I can assemble you a complete new PCB Board with all components.

Best wishes,
Kalle
63
BEAM IR/RF Wifi transceiver / Re: BEAM documentation / news
« Last post by PegLegTV on December 02, 2022, 03:20:18 AM »
Hey kalle, yeah I double checked that I was using the same settings as James does in his tutorial video. I tried adjusting the noise setting to see if that helped and it helped to block the phantom codes but still couldn't read the remote code.

I swapped my RF receiver chips incase I had the wrong one installed and still didn't see any codes.

Thank you! I'll get the one from Amazon ordered, and let you know how it goes.
64
BEAM IR/RF Wifi transceiver / Re: BEAM documentation / news
« Last post by Kalle on December 01, 2022, 04:39:53 PM »
Hi PegLeg,
the phantom code looks really bad - did you checked the BEAM plug-in RF settings if there is something wrong with the parameter?
If the Chip is damaged, the first one of your Amazon link is the best choice.


One other thing - are you sure you have only insert the 433MHz RF receiver in your BEAM? You can use only one receiver in the BEAM for learning RF codes (433MHz or 315MHz). So if you have both receiver installed, remove the 315MHz Chip first before start learning a code.


Kalle
65
BEAM IR/RF Wifi transceiver / Re: BEAM documentation / news
« Last post by PegLegTV on December 01, 2022, 03:40:57 PM »
hey guys I know this is a long shot. I believe that my RF (433Mhz) receiver has gone bad, and I have some new codes that I need to learn for some RGB led strip lights using RF.

I thought at first that I got a remote/controller that isn't using 433Mhz, however when I test a remote that I already learned the codes from, it doesn't detect any RF signals. Occasionally it will show phantom codes, but nothing in the right range to the original RF codes from my projector screen remote

Example:
projector screen remote (good code)
Code: [Select]
1103,104,36ABABBABAABB90,124BAB25ABAABABBAABBAABBAAB45CBABABAABF
phantom codes (bad code)
Code: [Select]
153,60,11B36,56B18,13B16G32,30,24,21BGBBBGKG51BHKCBBG
If the RF Receiver (433Mhz) has gone bad, will either of these work for the replacement?

Amazon 433MHz Superheterodyne

Ebay 433MHz Superheterodyne
 

Thank you
66
No Problem, I hope your move is going well.


looks like I had some issues with certifying SSL and TSL connections while using all scrape actions. took a few changes in my registry to get it sorted out. but had nothing to do with VC, seems like an issues with a windows update pushed a little while back, I just never noticed as I don't use VC on my laptop, I just use it to build commands.

Thanks for checking though.
67
Sorry.  I'm in the middle of moving to a new house in a new province and have been completely focused on that.  Did not notice your post.

Is everything sorted out now?
68
Did some more testing and decided to test it on my HTPC, and low and be hold it works on that pc.


So it looks like the error I'm Getting is local to my Laptop so I'll have to doo some more digging on that.

UPDATE: I was able to resolve the could no create ssl/tsl secure channel error,  :yay
69
I'm trying to intergrate ToDoist with VC, I've created an action to get my project names and add them to a map table. but I'm having problems with the scrape.post actions, I'm getting this error could no create ssl/tsl secure channel when I try to run the actions.

Todoist API

I can send you my current APIkey with a PM so you don't have to create an account.

or if you create an account, you can get the API key from Todoist.com > settings > integrations > Api token (bottom of the page).

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.3.0.3-->
<commandGroup open="True" name="ToDoist" enabled="True" prefix="" priority="0" requiredProcess="" description="">
  <command id="801" name="ToDoist - Get project names" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
    <action>
      <cmdType>Scrape.Get</cmdType>
      <params>
        <param>https://api.todoist.com/rest/v2/projects</param>
        <param />
        <param />
        <param />
        <param />
        <param>Authorization: Bearer {M:apiKeys.ToDoist}</param>
      </params>
      <cmdRepeat>1</cmdRepeat>
    </action>
    <if ifBlockDisabled="False" ifNot="False">
      <ifType>LastActionSuccess</ifType>
      <ifParams>&amp;&amp;</ifParams>
      <then>
        <action>
          <cmdType>Results.RegExSingle</cmdType>
          <params>
            <param>"id":\s"(.\d+)".*?"name":\s"(.*?)",</param>
          </params>
          <cmdRepeat>1</cmdRepeat>
        </action>
        <action>
          <cmdType>Map.Set</cmdType>
          <params>
            <param>ToDoist</param>
            <param>{Match.{i}.2}</param>
            <param>{Match.{i}.1}</param>
          </params>
          <cmdRepeat>{#M}</cmdRepeat>
        </action>
      </then>
      <else />
    </if>
  </command>
  <command id="802" name="ToDoist - Add project" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
    <action>
      <cmdType>Scrape.Post</cmdType>
      <params>
        <param>https://api.todoist.com/rest/v2/projects</param>
        <param>{"name": "ShoppingList"}</param>
        <param />
        <param />
        <param>application/json</param>
        <param>X-Request-Id: $(uuidgen)</param>
        <param>Authorization: Bearer {M:apiKeys.ToDoist}</param>
      </params>
      <cmdRepeat>1</cmdRepeat>
    </action>
  </command>
  <command id="897" name="ToDoist - Add Task" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
    <action>
      <cmdType>Scrape.Post</cmdType>
      <params>
        <param>https://api.todoist.com/rest/v2/tasks</param>
        <param>'{"content": "Cover pool", "project_id": "{M:ToDoist.Pool}"}'</param>
        <param />
        <param />
        <param>"Content-Type: application/json"</param>
        <param>X-Request-Id: $(uuidgen)</param>
        <param>Authorization: Bearer {M:apiKeys.ToDoist}</param>
      </params>
      <cmdRepeat>1</cmdRepeat>
    </action>
  </command>
</commandGroup>

hopefully it's something I'm doing wrong this could be used to replace ourgroceries and add a way to integrate mobile reminders with VC

thanks for any help
70
General Discussion / Re: Still VOXing after all this time!
« Last post by PegLegTV on September 13, 2022, 01:48:39 AM »
We use voxcommando daily in our home for home automation and media control. It's a great middle man for non voice actions as well. And it makes movie nights amazing, and hopefully next summer it will also be able to update me on my pool temperature. ;D

I'll be setting up home assistant soon and using that with VC

VC is truly an overlooked software
Pages: 1 ... 5 6 [7] 8 9 10