Show Posts
|
|
Pages: [1] 2 3 ... 7
|
|
4
|
Development / Other Software Development / Re: Modify IDE just for compiling
|
on: May 14, 2013, 10:26:27 am
|
|
Well... I have discovered that with new arduino ide I can compile just one time, and if I don't change libraries, I can delete them... It keeps compiled version. Where does it get saved? Can I cut the arduino folder and take it away?
Which java file has the buttons? I am interested in delete some of them...
|
|
|
|
|
5
|
Development / Other Software Development / Modify IDE just for compiling
|
on: May 14, 2013, 03:19:09 am
|
|
I am using other arduino based board (waspmote) but I guess this is not important for my target right now.
I want to modify arduino ide to make it able just for compiling a program. I mean, I want to delete upload button and some others too (like serial port, etc)
Also, I want to compile just pde. I have some libraries developed (also downloaded from internet or libraries from arduino) and I don't want to be able to modify them.
With this, I mean I want to have them already compiled, it is no need to recompile anytime and I don't want that anybody see the code. So I would just to write my sketch in arduino ide and be able to compile it to see if there are any compiling mistake, anything else.
I found there is a file called Compiling.java in Source code but I don't know which part I should delete to be able to have my files compiled or where to specify the directory of my libraries...
|
|
|
|
|
6
|
Using Arduino / Sensors / Re: UV AB measurement
|
on: May 08, 2013, 09:23:45 am
|
|
Yeah, I already do that. But I don't know if they meassure UVA or UVB since I don't know anything about their difference... I was looking for a sensor which just meassure A or B if it exists
|
|
|
|
|
7
|
Using Arduino / Sensors / UV AB measurement
|
on: May 08, 2013, 03:56:01 am
|
|
I am trying to get the value of my sun lights (For reptils). I read I have to change them each 6 months because A or B rays get wasted and lose properties (or something like that).
Which sensors do you know for doing that? (cheap, better).
|
|
|
|
|
9
|
Using Arduino / Interfacing w/ Software on the Computer / Re: Python + Arduino
|
on: April 30, 2013, 03:53:07 am
|
In python just have to do this: 1 - Import library: import serial 2 - Open port: ser = serial.Serial('/dev/ttyUSB0', 38400, timeout=1) Setting the correct port and baudrate. 3 - Read data: read = ser.read(X) Where X is the number of bytes you want to read together. If you just write read = ser.read(), you read 1 byte. I recommend you to read just one byte at a time because if you read more than one, it will kept as string and you cannot modify it. For avoiding it and be able to modify you have to save it as list but I haven't the code here right now. And, the rest is treat that data in functions or whatever you want.
|
|
|
|
|
12
|
Using Arduino / Networking, Protocols, and Devices / Re: Mesh + xbee serie 1
|
on: April 26, 2013, 05:19:21 am
|
|
I have that version in my X-CTU and I have't press "download new versions" button I think. So maybe you arleady have it.
If you press in version list, what versions do you have? You have to select XBEE DIGIMESH 2.4 in Function set combolist.
|
|
|
|
|
14
|
Using Arduino / Sensors / Re: 1 wire temp sensor
|
on: April 25, 2013, 09:05:38 am
|
|
You can test them before plug them in final version so you have all addresses and can set: X addr is kitchen, Y is bathroom.... Save that values in eeprom and check them any time arduino reset or power off-on
I guess, address are always the same, aren't them?
|
|
|
|
|
15
|
Using Arduino / Networking, Protocols, and Devices / Re: Mesh + xbee serie 1
|
on: April 24, 2013, 09:49:19 am
|
|
You can, but you have to upload a new firmware to xbee modules. You have to use digimesh instead 802.15.4 firmware installed in your modules.
XBee modules use to have antennas. Maybe if you have rpsma version, you have to buy but if not, you don't need external ones.
|
|
|
|
|