-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Diff. between Flipper Zero and LA104 #115
Comments
This comment was marked as outdated.
This comment was marked as outdated.
Clearly the application has chosen wrong decoder, the bitstream is received correctly but wrongly interpreted. I have only implemented a few of decoders into the application since I did not have other devices at home to test. Please try to capture the waveform: If you open "developer console" in chrome, it should print the timing in microseconds (e.g. [200, 400, 400, 200, 200, 400...]) |
I get this: But none of the received signals gives a known name like GT-WT02 37b And helas, I am a former programmer...of Cobol, Pl1 and a very little bit of assembler ans also ages ago. Thank you for such a clever bunch of applications! |
But its strange I guess, that the RF_analyser_synthesizer gives some kind of result....shouldn't it do nothing...? |
This is what RTL-433 says about your packet: [
{
"protocol": 117,
"description": "Biltema rain gauge",
"model": "Biltema-Rain",
"id": 187,
"channel": 1,
"battery": "OK",
"transmit": "AUTO",
"temperature_C": 24.2,
"rainrate": 1495.052
}
] I had to clean the waveform a bit to remove the noise: var sequence = [520,8900,480,4060,500,2000,500,4040,500,4040,480,4060,500,2020,480,4040,500,4020,520,2040,480,2040,480,2040,480,2060,500,2020,480,2040,480,2100,500,2020,480,4060,480,4020,500,4060,480,4020,500,2060,480,2020,520,4020,520,2020,480,2060,480,4020,520,2000,500,2040,500,4020,480,4040,500,4020,520,4100,500,4040,480,4040,500,2020,520,2020,480,4040,480,8900,500,2120,480,8900,500,4040,520,2020,500,4040,480,4020,500,4100,500,2040,480,4060,480,4040,500,2020,500,2060,480,2040,500,2040,500,2020,480,2060,480,2020,500,2040,500,4040,460,4060,500,4080,520,4020,500,2020,480,2040,500,4100,500,2020,500,2040,480,4040,520,2040,480,2060,480,4020,500,4020,520,4040,500,4020,480,4040,500,4040,480,2040,480,2040,480,4060,500,8920,500,2120,500,8880,520,4040,500,2020,480,4040,520,4020,480,4060,480,2060,460,4060,480,4060,480,2060,480,2040,500,2040,480,2040,500,2020,500,2000,520,2080,500,2060,460,4060,500,4020,480,4040,520,4020,520,2040,500,2040,480,4060,480,2040,500,2020,500,4040,500,2020,500,2040,500,4020,480,4040,500,4040,520,4080,480,4060,480,4060,500,2000,500,2040,500,4040,460,8900,480,2140,520,8880,480,4100,500,2040,500,4040,480,4060,480,4100,480,2040,500,4060,460,4040,500,2040,480,2040,500,2020,480,2040,500,2040,460,2040,520,2020,520,2000,500,4020,520,4020,520,4020,480,4060,500,2020,500,2000,520,4120,480,2040,500,2000,520,4020,500,2020,500,2040,480,4020,520,4040,480,4040,520,4020,480,4060,480,4040,520,2040,460,2040,500,4020,500,8920,520,2140,460,8920,480,4060,480,2040,500,4040,500,4000,500,4060,500,2040,480,4040,500,4040,480,2060,500,2040,460,2060,500,2040,480,2060,500,2020,500,2040,480,2040,480,4080,480,4020,500,4020,500,4040,480,2060,500,2040,500,4020,480,2040,500,2040,500,4020,500,2040,480,2040,480,4060,480,4060,460,4060,480,4040,500,4040,500,4060,500,2020,500,2000,500,4060,500,8860,520,2120,480,8880,500,4040,500,2040,500,4020,500,4040,500,4120,480,2040,480,4020,520,4040,500,2040,480,2020,520,2000,480,2040,500,2040,520,2040,500,2020,500,2000,500,4040,500,4020,500,4020,520,4040,500,2020,480,2040,500,4060,460,2040,520,2000,480,4080,480,2060,480,2020,500,4060,480,4060,480,4020,520,4020,500,4060,480,4060,480,2040,480,2040,480,4040,500,8960,480]
for (var i=0; i<sequence.length; i++)
{
var x = sequence[i];
x = Math.floor(x/380)*380;
sequence[i] = x;
} LA104 has too little memory to implement all the encoders that rtl-433 package offers. So I ported only a few of them and in comparison to flipper, my application was more focused on "hacking". So when you capture any weather station packet, it will decode it and you can change any of the recognised attributes - e.g. to fool to weather station to show that it is -30 C instead of 24 C. But since this is a non-profit project (ok, I got 300 euros once as a support from miniware), I simply do not have the resources to continue this development. The USB rf analyser is still extremely powerful tool for analysing unknown protocols, but the "rf tool" application was just to demonstrate the power of LA104 and only used to record the youtube video :) |
Thank you Gabriel for elaborating on this interesting subject. |
Patreon sounds like begging to me. The LA104 community is not that big to make this profitable. I consider this project more sort of presentation of my skills for future employer - as tons of other projects I publish on github. Everything I did here was done for fun and to learn how to make simple operating system (or application loader with rich C++ API) and to see how much can I get from STM32F103. And by this project I also fulfilled my dream from highschool - to make an electronic device which can talk to any component/sensor/TV over infrared. Simple and cheap universal tool to replace expensive lab equipment. |
It is indeed impressive what you developed. |
I know about that issue. The problem is when the device is connected to a PC and both - the device itself and PC - write some data to flash disk. The PC initially scans the drive and keeps the FAT table cached in memory. When you are browsing the icons in GUI for the first time, the device saves a "screenshot" (file suffixes tm0, tm1, tm2, tm3) of each icon you highlight to speed up rendering. But later the computer decides to write something unaware that the FAT table was changed... and this breaks the filesystem. I have prepared a solution for this, instead of placing BMP icons on the drive, I generate the "screenshots", so the device itself should not write anything to the disk. But I did not release this fix yet. My suggestion is, that after copying all the files from PC to LA104, disconnect the device, turn off and on for the GUI to start up and go through all icons in every folder (just highlight every icon, no need to run any app). This should help If you are running linux or OSX, there are scripts |
Thanks again Gabriel. |
Hi again, |
Hi Gabriel, |
connection guide: https://github.com/gabonator/LA104/tree/master/system/apps_featured/80_rftool |
Hello, for rtl_433 protocols I guess I could contribute as I already did with HCS200 and EV1527 implementation. |
Hello Gabriel,
Why do I get those strange values from my LA104?
See picture.
Regards!
The text was updated successfully, but these errors were encountered: