Search found 1005 matches

by chipfryer27
Sat Mar 23, 2024 10:29 pm
Forum: Projects - Embedded
Topic: RS485 example
Replies: 41
Views: 388

Re: RS485 example

Hi Prácticamente cualquier valor que desees. Si crea una matriz de bytes, entonces se puede almacenar cualquier valor de byte, si es una matriz de enteros, entonces cualquier valor entero, etc. Capture el valor del teclado y asígnelo a cualquier posición en la matriz que desee (por ejemplo, matriz [...
by chipfryer27
Sat Mar 23, 2024 10:15 pm
Forum: Feature Requests
Topic: Visual-Only Flowcharter
Replies: 9
Views: 161

Re: Visual-Only Flowcharter

Hi

I've used it a few times when presenting to those unfamiliar with technicalities as it's easier to "explain" without the rest of the Flowcode icons present.

Regards
by chipfryer27
Sat Mar 23, 2024 10:06 pm
Forum: Projects - Embedded
Topic: RS485 example
Replies: 41
Views: 388

Re: RS485 example

Hi From memory (as no access at present) so forgive any error. Create a variable called (for example) Send and when you create it add in a dimension e.g for three bytes Send[3]. You now have an array in which you can store and retrieve three separate bytes. You can assign values using a calculation....
by chipfryer27
Sat Mar 23, 2024 8:14 pm
Forum: Projects - Embedded
Topic: RS485 example
Replies: 41
Views: 388

Re: RS485 example

I already carried out my first experience sending only numerical data and I was able to verify that the transceiver sends the data (numeric) correctly and that the receiver also receives it correctly. Now I would like to send a frame of 3-4 bytes consecutively so that the receiving pic receives the...
by chipfryer27
Sat Mar 23, 2024 7:43 am
Forum: Feature Requests
Topic: Visual-Only Flowcharter
Replies: 9
Views: 161

Re: Visual-Only Flowcharter

Hi Use the Browse button to navigate /select your usual flowcode file (.fcfx) and Upload button to view it. It's a tool Ben kindly created and shared independent to Flowcode / Matrix TSL that displays your Flowcharts / variables etc. Below is an extract from the viewer and the target file used. View...
by chipfryer27
Wed Mar 20, 2024 7:17 pm
Forum: Feature Requests
Topic: Suggestions for new microcontroller support
Replies: 48
Views: 98121

Re: Suggestions for new microcontroller support

Hi With regards to controlling via an android app this is doable, to an extent. You can create an interactive environment using Web Developer which creates a HTML page that runs in most browsers including those found on android phones.The page allows you to send instructions and receive results etc....
by chipfryer27
Mon Mar 18, 2024 7:16 pm
Forum: App Developer
Topic: Web Developer browsers
Replies: 7
Views: 151

Re: Web Developer browsers

Hi Further info. Firefox 115 on a W8.1 machine doesn't work due to CORS restrictions. Microsoft Edge and Google Chrome do work. Firefox 123 on W10 / 11 does work as do Microsoft Edge and Google Chrome. On a Samsung running android 13, Firefox, Chrome and DuckDuckGo do work, however default app Web V...
by chipfryer27
Mon Mar 18, 2024 2:51 pm
Forum: App Developer
Topic: Web Developer browsers
Replies: 7
Views: 151

Re: Web Developer browsers

Hi

I tried disabling all extensions, didn't work, then compared my 115 settings to 123 and all my FF instances are set the same.

It's not going to be much of a issue for me, as Edge works. I might try with some other browsers just to see which if any are troublesome..

Regards
by chipfryer27
Mon Mar 18, 2024 11:48 am
Forum: App Developer
Topic: Web Developer browsers
Replies: 7
Views: 151

Re: Web Developer browsers

Hi Steve

Exactly that. On my W8.1 FF throws a CORS wobbly but Edge is fine.

On my android, not found a way to get FF to "see" the file yet, but Chrome does work.

Regards
by chipfryer27
Mon Mar 18, 2024 3:31 am
Forum: General
Topic: Math help wanted: Zeller congruence
Replies: 4
Views: 108

Re: Math help wanted: Zeller congruence

Hi Sorry to be brief, it's stupid O' clock and I'm heading out soon. Very interesting little project. I would break the calculation down into individual steps containing one action (calculation) and then step through your chart checking each result is as expected. This would hopefully allow you to s...