Thank you thank you!
you are the best!
@jkandasa Gosh, so.. I was doing some research over the forum... and I found this http://forum.mycontroller.org/topic/139/hour-meter wich I've been trying to use with no sucess...
let me put some good info here!
I've made those simple custom widgets, here is the script for them
var myImports = new JavaImporter(java.io, java.lang, java.util);
var Custo = 0;
with(myImports) {
var amp1 = mcApi.uidTag().getByUid("AmpRaw1").getResource()
var volt = mcApi.uidTag().getByUid("VoltRaw1").getResource();
var taxa = mcApi.variable().get("Taxa");
var Custo_aux = mcApi.variable().get("CustoT");
// custom value
var finalData = (amp1.value * volt.value)/ 1000;
Custo_aux.value = finalData * taxa.value;
}
I just need a way to acumulate(a.k.a SUM) the values os the last line like Custo_aux.value += the rest...
I've been trying to use the .save() without success too..
Plz master J, help me out!!
@jkandasa J, my saivior!! the project is working just fine, i only have one question to make!! plz save me!!
i've been trying to acumulate values (anyvar += anyvar) without sucess...
I tried loops, timers, no sucess...
I need to sum all the values I gather since the first reading.. any tip?
@jkandasa Thaaaats IIIITTT ^^
Thank you thank you thanks aloooot jkandasa, you beatiful man!!
I was expecting this for days, and I'm really excited with the outcome of this project
@jkandasa I forgot the reply you didn't I?
Sorry, but I'm still hoping you can help me with this.
Thank you very much
In other words , how can I display a variable, not a input or a tag, just a variable
Sure, I want to multiply an input by a variable , put the result in a variable and show it at my dashboard !
Example : I'm reading a light sensor, I wanna have both the raw value and the valia of the light multiplied by certain number in my dash board!
So I create a "sensor viewer " and a "custom viewer " right?
Well, for the custom viewer I need a script to do the job for me... taking both utags and variables and doing a simple multiplication , then show me the valeu ... right?
Well I need help finishing the script because, I can make the simple code but can't make it show the valeu at the "custom viewer " . I guess I'm missing both the template and the script binding
Guys, I need to create a Custom Widget wich can work with a few inputs and variables I create!
So... I already made the logic work, created the tags and etc.. but I'm stuck at the template part!
How can I make the connection btw the script and the template and what the heck is script binding?
Here is the code I came up with :
var myImports = new JavaImporter(java.io, java.lang, java.util);
Amp1= mcApi.variable().get("Amp1");
Consumo1 = mcApi.variable().get("Consumo1");
var sensorVariable = mcApi.uidTag().getByUid("VoltRaw1");
var dispItems = [];
with(myImports)
{
Consumo1 = Amp1.value * sensorVariable.sensorVariable.value;
}
oh, I will.. don't worry!! i really pass thru difficult times while programming this god forsaken chip!! but now it works like a charm, and its 8 times better than any arduino!!
Can I alterate the Mycontroller program to my will? I like the interface and all but I'm Brazilian and there is are a few things I need to translate besides what is already translated! And maybe put another functions at the software!
I got it working already! Just need to replicate de output data to de gateway! (1;0;8;38;25) something like this !
It's working know! I'm gonna let my work about mesh networks with the arm Mcu at the mbed site!
Thank you very much, wonderful work at the controller !
Hello guys, sorry if I'm posting it on the wrong place!
I manage to configure the rf24mesh lib for arduino to run on a STM32 MCU, STM32F401RET6 Núcleo 64 to be more specific!
Now that the mesh network is finally working, I want to use it on a controller and the best one so far was the MyController!
Unfortunately, I'm not having much luck...
Well the mesh network works similar with the MySensors lib, with nodeID and Network Address, and I was able to connect the Gateway with the Mycontroller with no problem.
Wthe thing is, I cant connect the nodes or the sensors!!
Any help would be apreciated
Thank you!!