Home→Forums→MonoBrick EV3 Firmware→Latest version?
Tagged: version
- This topic has 27 replies, 6 voices, and was last updated 10 years, 2 months ago by Anders Søborg.
-
AuthorPosts
-
July 30, 2014 at 06:26 #4585
Henrik KurkaParticipantHi
If I download the DLL and image from this page: http://www.monobrick.dk/software/ev3firmware/, will I allways get the latest verison? Is there an update log with a good overview somewhere for each version and what is the latest version?
Thanks
July 30, 2014 at 08:43 #4586
Tcm0ParticipantThe DLL on that page will probably usually be the latest one. In addition to that, there will probably a forum entry when a new DLL comes out.
The firmware checks automatically for updates on boot. I think that there will be a new DLL when there is a new firmware for the EV3.August 3, 2014 at 21:03 #4587
Henrik KurkaParticipantThanks Max.I started to use MB a little while ago and ran into some issues with the motor controls and was told that there was a new version coming, but I haven’t seen any news about it on the forum, so I am still not quite sure if issues has been fixed or not.
August 4, 2014 at 07:11 #4588
Tcm0ParticipantYou can get the latest version which is probably fixed from the github repository: https://github.com/Larsjep/monoev3/tree/master/MonoBrickFirmware/Movement
You can either compile the full DLL again or you can include the classes you need without compiling it again.August 4, 2014 at 12:16 #4589
Henrik KurkaParticipantThanks. Yes, I have read that this is an alternative, but I do not know anything about github and how to compile it, and I have limited time to figure that out, and to be honest I am not that interested in it either. I just want the latest version and an update log so I know when I can continue with my little project 🙂
August 4, 2014 at 14:39 #4590
Tcm0ParticipantJust download the *.cs files and include them as normal classes into your project. You don’t need to compile it.
August 10, 2014 at 18:51 #4600
Henrik KurkaParticipantThanks Max – I wasn’t aware of that I might give it a try. Though posts like this still makes me want the latest version as a DLL instead: http://www.monobrick.dk/forums/topic/error-when-building-with-xamarin/
August 12, 2014 at 11:44 #4603August 12, 2014 at 19:27 #4606
Vlad RuzovParticipantHi Max,
If I use DLL you provided OR build DLL from GitHub sources and use it then the brick LCD does not work properly – only random points shown instead of text.
May be it is required to do something else than DLL replacement ?Thank You. Vlad.
August 13, 2014 at 10:30 #4608
Tcm0ParticipantWhich method of writing text do you use? Can you post your sourcecode? (or at least a part of it)
LcdConsole.WriteLine(); works.August 13, 2014 at 17:56 #4609
Vlad RuzovParticipantIf I replace MonoBrickFirmware.dll in EV3 apps folder by dll that you provided then all standard examples ( LcdExample etc.) do not work properly. They put random pixels on the screen.
August 13, 2014 at 18:48 #4610
Tcm0ParticipantDo you use LcdConsole.WriteLine()?
August 14, 2014 at 19:09 #4618
Vlad RuzovParticipantThe example below works with old dll (from sd image) and does not work with dll that you provided.
using System; using System.Threading; using MonoBrickFirmware.Display; namespace HelloWorld { public static class Program { public static void Main( string[] args) { LcdConsole.WriteLine ("Hello World!"); Thread.Sleep (2000); } } }
August 15, 2014 at 13:25 #4619
Tcm0ParticipantThat’s really strange since it works for me.
August 16, 2014 at 12:34 #4620
Martin WagnerParticipantHi Max,
I have the same problems like Vlad. Old DLL works fine, new DLL just random pixel.
Keep using with the old one and waiting …
Martin -
AuthorPosts
You must be logged in to reply to this topic.
Follow